@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Goldman:wght@700&display=swap');

/* =====================================================
   VARIABLES
===================================================== */
:root {
  --bg: #fef5f5;
  --primary: #1d15a2;
  --pink: #e32f9d;
  --white: #ffffff;
  --black: #000000;
}

/* =====================================================
   RESET
===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background-color: var(--bg);
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* =====================================================
   CONTAINER
===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* =====================================================
   LOGO
===================================================== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  background: linear-gradient(143.582deg, #e5309d 0%, #342388 50%, #231aa8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 40px;
  border-radius: 12.5px;
  border: 0.833px solid var(--primary);
  text-transform: capitalize;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn:hover { opacity: 0.85; }

/* =====================================================
   SECTION TITLE
===================================================== */
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}

/* =====================================================
   HEADER
===================================================== */
.site-header {
  background-color: var(--bg);
  position: relative;
  z-index: 200;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: var(--primary);
  transition: opacity 0.2s;
}

.nav-link:hover { opacity: 0.65; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger img { width: 32px; height: 20px; object-fit: contain; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 20px 60px 24px;
  background: var(--bg);
  border-top: 1px solid rgba(29, 21, 162, 0.1);
}

.mobile-nav.is-open { display: flex; }
.mobile-nav .nav-link { font-size: 18px; }

/* =====================================================
   HERO
===================================================== */
.hero {
  background-color: var(--bg);
  padding: 40px 0 60px;
  position: relative;
}

.hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.hero-content {
  flex: 0 0 542px;
  max-width: 542px;
  padding-top: 35px;
  position: relative;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.hero-line1 {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  text-transform: capitalize;
  line-height: 1.2;
}

.hero-line2 {
  display: block;
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  line-height: 1.1;
  -webkit-text-stroke: 3px var(--primary);
  -webkit-text-fill-color: transparent;
  color: var(--primary);
}

.hero-body {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.96px;
  line-height: 1.2;
  color: var(--primary);
  text-transform: lowercase;
  max-width: 506px;
  margin-bottom: 32px;
}

.star {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.star-hero-top {
  width: 56px;
  height: 56px;
  top: 30px;
  right: 60px;
}

.star-hero-btn {
  width: 130px;
  height: 130px;
  bottom: -10px;
  left: 230px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-img {
  width: 100%;
  max-width: 640px;
  height: 520px;
  object-fit: cover;
  border-radius: 50px;
}

/* =====================================================
   BANNER TICKER
===================================================== */
.banner-ticker {
  position: relative;
  height: 220px;
  z-index: 10;
  margin: -20px 0;
}

.banner-strip {
  position: absolute;
  left: -50%;
  width: 200%;
  white-space: nowrap;
  overflow: hidden;
  padding: 18px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.02em;
}

.banner-strip--1 {
  background: var(--pink);
  top: 20px;
  transform: rotate(5deg);
  z-index: 1;
}

.banner-strip--2 {
  background: var(--primary);
  top: 120px;
  transform: rotate(-5deg);
  z-index: 2;
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-ltr 28s linear infinite;
}

.ticker-track--rtl {
  animation: ticker-rtl 28s linear infinite;
}

@keyframes ticker-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

@keyframes ticker-rtl {
  from { transform: translateX(-33.333%); }
  to   { transform: translateX(0); }
}

/* =====================================================
   ABOUT
===================================================== */
.about {
  background-color: var(--bg);
  padding: 60px 0;
  position: relative;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-visual {
  flex: 0 0 393px;
}

.about-img {
  width: 393px;
  height: 480px;
  object-fit: cover;
  border-radius: 50px;
}

.about-content {
  flex: 1;
  max-width: 600px;
}

.about-content .section-title {
  margin-bottom: 30px;
}

.about-content p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.96px;
  line-height: 1.2;
  color: var(--primary);
  text-transform: lowercase;
  margin-bottom: 24px;
}

.about-content .btn { margin-top: 6px; }

.star-about {
  width: 45px;
  height: 45px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

/* =====================================================
   FEATURES (Built for Players)
===================================================== */
.features {
  background-color: var(--bg);
  padding: 60px 0;
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 40px;
}

.features-header .section-title {
  margin-bottom: 20px;
}

.features-header p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.96px;
  line-height: 1.2;
  color: var(--primary);
  text-transform: lowercase;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-card {
  background-color: var(--pink);
  border-radius: 12px;
  padding: 20px 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.4;
}

.star-features-right {
  width: 90px;
  height: 90px;
  top: 60px;
  right: 16px;
}

.star-features-left {
  width: 45px;
  height: 45px;
  top: 220px;
  left: 16px;
}

/* =====================================================
   COLLECTION (Step Into the Collection)
===================================================== */
.collection {
  background-color: var(--bg);
  padding: 60px 0;
  position: relative;
}

.collection-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.collection-header .section-title {
  margin-bottom: 20px;
}

.collection-header p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.96px;
  line-height: 1.2;
  color: var(--primary);
  text-transform: lowercase;
  margin-bottom: 16px;
}

.collection-header .btn { margin-top: 8px; }

.games-grid {
  display: flex;
  gap: 20px;
}

.game-card {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  min-width: 0;
}

.game-card img {
  width: 100%;
  height: 183px;
  object-fit: cover;
  display: block;
}

.star-coll-1 {
  width: 45px;
  height: 45px;
  top: 30px;
  left: 16px;
}

.star-coll-2 {
  width: 45px;
  height: 45px;
  bottom: 40px;
  right: 80px;
}

/* =====================================================
   NEVER MISS
===================================================== */
.never-miss {
  background-color: var(--bg);
  padding: 60px 0;
  position: relative;
}

.never-miss-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.never-miss-content {
  flex: 0 0 600px;
  max-width: 600px;
}

.never-miss-content .section-title {
  margin-bottom: 24px;
}

.never-miss-content p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.96px;
  line-height: 1.2;
  color: var(--primary);
  text-transform: lowercase;
  margin-bottom: 20px;
}

.never-miss-content .btn { margin-top: 8px; }

.never-miss-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.never-miss-img {
  width: 395px;
  height: 352px;
  object-fit: cover;
  border-radius: 50px;
}

.star-nm-1 {
  width: 72px;
  height: 72px;
  top: 50px;
  left: 16px;
}

.star-nm-2 {
  width: 40px;
  height: 40px;
  bottom: 50px;
  right: 40px;
}

/* =====================================================
   CONTACT
===================================================== */
.contact {
  background-color: var(--bg);
  padding: 60px 0;
  position: relative;
}

.contact .container {
  text-align: center;
}

.contact .section-title {
  margin-bottom: 24px;
}

.contact-body {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.96px;
  line-height: 1.2;
  color: var(--primary);
  text-transform: lowercase;
  margin-bottom: 16px;
}

.contact-pills {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.contact-pill {
  background-color: var(--pink);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 24px 50px;
  border-radius: 12px;
  display: inline-block;
}

.map-block {
  width: 100%;
  height: 400px;
  background-color: #d9d9d9;
  border-radius: 30px;
}

.star-contact-1 {
  width: 40px;
  height: 40px;
  top: 40px;
  right: 80px;
}

.star-contact-2 {
  width: 90px;
  height: 90px;
  bottom: 50px;
  left: 20px;
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background-color: var(--bg);
  padding: 40px 0 24px;
  position: relative;
  overflow: hidden;
  min-height: 236px;
}

.footer-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Goldman', sans-serif;
  font-size: 120px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(29, 21, 162, 0.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: 4px;
  line-height: 1;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  flex: 0 0 auto;
  align-self: flex-start;
}

.footer-contact {
  flex: 1;
  text-align: left;
}

.footer-contact p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
}

.footer-nav {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  align-self: flex-start;
}

.footer-nav a {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
  transition: opacity 0.2s;
}

.footer-nav a:hover { opacity: 0.65; }

.footer-mobile-character {
  display: none;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-mobile-character img {
  max-width: 180px;
  height: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-copy {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.social-link:hover { opacity: 0.7; }

.social-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-character-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
}

.footer-character-main {
  width: 220px;
  height: auto;
  display: block;
  pointer-events: none;
}

/* =====================================================
   GAME DETAIL PAGE
===================================================== */
.game-page {
  background: var(--bg);
  padding: 60px 0;
}

.game-page-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.game-desc {
  text-align: center;
  max-width: 1080px;
  width: 100%;
}

.game-desc p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.96px;
  line-height: 1.2;
  color: var(--primary);
  text-transform: lowercase;
  margin-bottom: 30.83px;
}

.game-desc p:last-child { margin-bottom: 0; }

.game-cards {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1080px;
}

/* Info cards (Mechanics / Result) */
.game-card-info {
  flex: 0 0 346px;
  width: 346px;
  min-height: 334px;
  background-color: var(--pink);
  backdrop-filter: blur(15.219px);
  -webkit-backdrop-filter: blur(15.219px);
  border-radius: 20px;
  padding: 27px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game-card-info h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.game-card-info p {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}

/* Center image card */
.game-card-image {
  flex: 0 0 346px;
  width: 346px;
  height: 334px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.game-card-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.game-card-top {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.game-card-arrow {
  width: 33.7px;
  height: 33.7px;
  flex-shrink: 0;
}

.game-card-bottom {
  position: relative;
  z-index: 2;
}

.game-card-name {
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
}

/* =====================================================
   CATALOG PAGE
===================================================== */
.catalog-hero {
  padding: 60px 0 30px;
  text-align: center;
}

.catalog-hero .section-title {
  margin-bottom: 20px;
}

.catalog-hero p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.96px;
  line-height: 1.2;
  color: var(--primary);
  text-transform: lowercase;
  max-width: 820px;
  margin: 0 auto 24px;
}

/* Desktop collage */
.catalog-collage {
  position: relative;
  width: 100%;
  height: 847px;
  overflow: hidden;
}

.collage-inner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1530px;
  height: 100%;
}

.collage-item {
  position: absolute;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  transform: rotate(-16.47deg);
  transform-origin: center center;
  transition: opacity 0.2s;
}

.collage-item:hover { opacity: 0.88; }

.collage-item img {
  width: 443px;
  height: 249px;
  object-fit: cover;
  display: block;
}

.collage-item--1 { left: 0px;      top: 272.27px; }
.collage-item--2 { left: 209px;    top: 482.68px; }
.collage-item--3 { left: 648px;    top: 353.74px; }
.collage-item--4 { left: 1087px;   top: 221.24px; }
.collage-item--5 { left: 436px;    top: 143.52px; }
.collage-item--6 { left: 871px;    top: 15px;     }

.collage-tagline {
  position: absolute;
  transform: rotate(-15.09deg);
  transform-origin: left top;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.75px;
  color: var(--pink);
  line-height: 44.167px;
  pointer-events: none;
  z-index: 2;
}

.collage-tagline--1 { left: 334px;  top: 84.84px; }
.collage-tagline--2 { left: 940px;  top: 586px;   width: 386px; }

.collage-tagline .t-sm { font-size: 15px;     }
.collage-tagline .t-md { font-size: 29.167px; }
.collage-tagline .t-lg { font-size: 42.5px;   }

/* Mobile stack — hidden on desktop */
.catalog-stack { display: none; }

/* =====================================================
   RESPONSIVE — 1100px
===================================================== */
@media (max-width: 1100px) {
  .hero-content { flex: 0 0 460px; max-width: 460px; }
  .hero-line1 { font-size: 34px; }
  .hero-line2 { font-size: 56px; }
  .hero-img { height: 440px; }
  .never-miss-content { flex: 0 0 500px; max-width: 500px; }
  .never-miss-img { width: 340px; height: 300px; }
}

/* =====================================================
   RESPONSIVE — MOBILE 768px
===================================================== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Header */
  .nav-desktop { display: none; }
  .hamburger { display: block; }
  .mobile-nav { padding: 20px 20px 24px; }

  /* Hero */
  .hero { padding: 24px 0 40px; }

  .hero-inner {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .hero-content {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }

  .hero-visual {
    width: 100%;
    justify-content: center;
  }

  .hero-img {
    max-width: 390px;
    height: 296px;
    margin: 0 auto;
  }

  .hero-line1 { font-size: 30px; }
  .hero-line2 { font-size: 42px; -webkit-text-stroke: 2px var(--primary); }
  .hero-body { max-width: 100%; }
  .star-hero-top { display: none; }

  /* Banner */
  .banner-ticker { height: 150px; margin: -10px 0; }
  .banner-strip { font-size: 14px; padding: 11px 0; }
  .banner-strip--1 { top: 14px; }
  .banner-strip--2 { top: 76px; }

  /* About */
  .about { padding: 40px 0; }

  .about-inner {
    flex-direction: column;
    gap: 28px;
  }

  .about-visual {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-img {
    width: 280px;
    height: 320px;
  }

  .about-content { max-width: 100%; }
  .star-about { display: none; }

  /* Features */
  .features { padding: 40px 0; }
  .features-header .section-title { font-size: 28px; }

  /* Collection */
  .collection { padding: 40px 0; }
  .collection-header .section-title { font-size: 28px; }
  .collection-header { max-width: 100%; }

  .games-grid {
    flex-wrap: wrap;
    gap: 16px;
  }

  .game-card {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }

  .game-card img { height: 176px; }
  .star-coll-1, .star-coll-2 { display: none; }

  /* Never Miss */
  .never-miss { padding: 40px 0; }

  .never-miss-inner {
    flex-direction: column-reverse;
    gap: 28px;
  }

  .never-miss-content {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .never-miss-visual {
    width: 100%;
    justify-content: center;
  }

  .never-miss-img {
    width: 100%;
    max-width: 390px;
    height: 300px;
    margin: 0 auto;
  }

  .never-miss-content .section-title { font-size: 28px; }
  .star-nm-1, .star-nm-2 { display: none; }

  /* Contact */
  .contact { padding: 40px 0; }
  .contact .section-title { font-size: 28px; }

  .contact-pills {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    margin: 28px 0;
  }

  .contact-pill {
    padding: 16px 20px;
    text-align: center;
  }

  .map-block { display: none; }
  .star-contact-1, .star-contact-2 { display: none; }

  /* Footer */
  .site-footer { padding: 32px 0 24px; min-height: auto; }

  .footer-watermark { font-size: 44px; }

  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    margin-bottom: 20px;
  }

  .footer-nav {
    text-align: center;
    align-items: center;
  }

  .footer-contact { text-align: center; }

  .footer-mobile-character { display: flex; }

  .footer-character-wrap { display: none; }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Game detail page */
  .game-page { padding: 40px 0; }

  .game-cards {
    flex-direction: column;
    gap: 16px;
  }

  .game-card-info,
  .game-card-image {
    flex: none;
    width: 100%;
    min-height: auto;
  }

  .game-card-image { height: 280px; }

  .game-card-name { font-size: 24px; }

  /* Catalog */
  .catalog-hero { padding: 40px 0 24px; }
  .catalog-hero .section-title { font-size: 28px; }

  .catalog-collage { display: none; }

  .catalog-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px 40px;
  }

  .stack-item {
    display: block;
    border-radius: 30px;
    overflow: hidden;
  }

  .stack-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .stack-tagline {
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.75px;
    color: var(--pink);
    padding: 4px 0;
  }

  .stack-tagline .t-sm { font-size: 15px;     line-height: 1.4; }
  .stack-tagline .t-md { font-size: 29.167px; line-height: 1.2; }
  .stack-tagline .t-lg { font-size: 42.5px;   line-height: 1.1; }
}

.privacy h2{
  color: #1D15A2;
text-align: center;
font-family: Inter;
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: 120%; /* 48px */
margin-top: 60px;
margin-bottom: 30px;
}
/* =====================================================
   COOKIE BANNER
===================================================== */
.cookie-overlay {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 760px;
  transition: opacity 0.3s, transform 0.3s;
}

.cookie-overlay--hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.cookie-banner {
  background: #1d15a2;
  border-radius: 24px;
  padding: 48px 56px 44px;
  width: 100%;
  text-align: center;
  color: #fff;
}

.cookie-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.2;
}

.cookie-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 20px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cookie-text:last-of-type {
  margin-bottom: 36px;
}

.cookie-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cookie-btn {
  background: #fff;
  color: #1d15a2;
  border: none;
  border-radius: 14px;
  padding: 18px 0;
  width: 220px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 32px 24px 28px;
    border-radius: 20px;
  }

  .cookie-title { font-size: 28px; margin-bottom: 20px; }
  .cookie-text { font-size: 14px; }

  .cookie-actions {
    flex-direction: column;
    align-items: center;
  }

  .cookie-btn { width: 100%; max-width: 280px; padding: 16px 0; }
}

/* =====================================================
   ANIMATIONS & HOVER EFFECTS
===================================================== */

/* -- Keyframes -- */
@keyframes kc-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes kc-slide-right {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes kc-slide-left {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes kc-fade-up {
  from { opacity: 0; transform: translateY(0); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -- Hero entrance -- */
.hero-content {
  animation: kc-slide-right 0.7s ease both;
}
.hero-visual {
  animation: kc-slide-left 0.7s ease 0.15s both;
}

/* -- Floating stars -- */
.star-hero-btn       { animation: kc-float 3.5s ease-in-out infinite; }
.star-hero-top       { animation: kc-float 4.0s ease-in-out infinite 0.5s; }
.star-about          { animation: kc-float 3.8s ease-in-out infinite 0.8s; }
.star-features-right { animation: kc-float 4.2s ease-in-out infinite 0.3s; }
.star-features-left  { animation: kc-float 3.6s ease-in-out infinite 1.0s; }
.star-coll-1         { animation: kc-float 4.0s ease-in-out infinite 0.2s; }
.star-coll-2         { animation: kc-float 3.5s ease-in-out infinite 0.7s; }
.star-nm-1           { animation: kc-float 3.8s ease-in-out infinite 0.4s; }
.star-nm-2           { animation: kc-float 4.2s ease-in-out infinite 0.9s; }
.star-contact-1      { animation: kc-float 3.6s ease-in-out infinite 0.6s; }
.star-contact-2      { animation: kc-float 4.0s ease-in-out infinite 1.2s; }

/* -- Scroll fade-up -- */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.anim-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* -- Button hover -- */
.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.btn:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(227, 47, 157, 0.32);
}
.btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: none;
}

/* -- Nav link underline -- */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.25s ease;
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after { width: 100%; }

/* -- Logo scale -- */
.logo {
  transition: transform 0.2s ease;
}
.logo:hover { transform: scale(1.04); }

/* -- Game cards -- */
.game-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.game-card img {
  transition: transform 0.35s ease;
}
.game-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(29, 21, 162, 0.18);
}
.game-card:hover img {
  transform: scale(1.05);
}

/* -- Feature cards -- */
.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px rgba(227, 47, 157, 0.28);
}

/* -- Images scale on hover -- */
.hero-img,
.about-img,
.never-miss-img {
  transition: transform 0.4s ease;
}
.hero-img:hover,
.about-img:hover,
.never-miss-img:hover {
  transform: scale(1.03);
}

/* -- Collage items -- */
.collage-item {
  transition: transform 0.25s ease, filter 0.25s ease;
}
.collage-item:hover {
  transform: rotate(-16.47deg) scale(1.06);
  filter: brightness(1.08);
  opacity: 1;
}

/* -- Footer nav underline -- */
.footer-nav a {
  position: relative;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.2s ease;
}
.footer-nav a:hover { opacity: 1; }
.footer-nav a:hover::after { width: 100%; }

/* -- Contact pills -- */
.contact-pill {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}
.contact-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(29, 21, 162, 0.14);
}
