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

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

:root {
  --green: #31e86a;
  --green-light: #78ff9f;
  --green-pale: #daf7e2;
  --green-soft: #d5ffe2;
  --green-muted: rgba(49, 232, 106, 0.08);
  --green-border: rgba(49, 232, 106, 0.22);
  --text-primary: #f6f7f3;
  --text-secondary: #bfd0c1;
  --text-muted: #dce2dd;
  --text-card: #d9e8dc;
  --text-game: #c7d6c9;
  --text-light: #ecfff1;
  --text-footer: #dffbe6;
  --bg: #040404;
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-mid: rgba(255, 255, 255, 0.12);
  --section-border: rgba(255, 255, 255, 0.14);
  --card-bg: rgba(14, 17, 14, 0.96);
  --card-bg-to: rgba(7, 8, 7, 0.98);
  --font-heading: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 870px 984px at 180px 0px, rgba(49, 232, 106, 0.08) 0%, rgba(49, 232, 106, 0) 100%),
    radial-gradient(ellipse 734px 830px at 1200px 861px, rgba(49, 232, 106, 0.07) 0%, rgba(49, 232, 106, 0) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 18px 32px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.logo-icon-border {
  position: absolute;
  inset: -4.56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-border::after {
  content: '';
  width: 15.56px;
  height: 15.56px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.logo-icon-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 5px;
  box-shadow: 0 0 18px 0 rgba(49, 232, 106, 0.45);
  top: 6px;
  left: 6px;
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  color: var(--text-primary);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.88;
  transition: opacity 0.2s;
}

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

.nav-link--active {
  opacity: 1;
  color: var(--text-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.section-hero {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 32px 44px;
  position: relative;
  min-height: 923px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 34px;
  flex-shrink: 0;
  width: 579px;
  align-self: stretch;
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  background: rgba(49, 232, 106, 0.08);
  border: 1px solid rgba(49, 232, 106, 0.22);
  border-radius: 999px;
  margin-bottom: -0.9px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 4px;
  box-shadow: 0 0 12px 0 rgba(49, 232, 106, 0.8);
  flex-shrink: 0;
}

.badge span:last-child {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-pale);
  white-space: nowrap;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 105.6px;
  letter-spacing: -3.6px;
  text-transform: uppercase;
  color: var(--text-primary);
  width: 100%;
  max-width: 620px;
}

.hero-heading .text-green {
  color: var(--green-light);
}

.hero-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 30.6px;
  max-width: 540px;
  margin-top: 18px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 25px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  padding: 15px 22px;
  background: var(--green);
  color: #041007;
  filter: drop-shadow(0px 12px 13px rgba(49, 232, 106, 0.22));
}

.btn-primary:hover {
  background: #4fff7e;
}

.btn-secondary {
  padding: 16px 23px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  margin-top: 0;
}

.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 19px 19px 38px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  min-width: 0;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 32px;
  color: var(--text-primary);
}

.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 18.85px;
}

.hero-image {
  position: relative;
  flex-shrink: 0;
  width: 556px;
  align-self: stretch;
  overflow: hidden;
  min-height: 700px;
}

.hero-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  height: 840px;
}

.hero-image-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-stack img:not(:first-child) {
  mix-blend-mode: normal;
}

.hero-tags {
  position: absolute;
  top: 24px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.hero-tag-row {
  display: flex;
  gap: 8px;
}

.hero-tag {
  display: inline-flex;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.96px;
  text-transform: uppercase;
  white-space: nowrap;
}


/* ============================================================
   HERO CONTROLLER & SIGNAL CARDS
   ============================================================ */
.hero-controller-card {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 108px;
  height: 310px;
  background: rgba(8, 14, 9, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hero-controller-svg {
  width: 100%;
  height: auto;
  max-height: 230px;
}

.hero-signal-card {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 434px;
  background: rgba(8, 14, 9, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px 28px 28px;
}

.hero-signal-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.2;
  color: var(--text-primary);
}

.hero-signal-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 22px;
  margin-top: 8px;
}

.hero-signal-track {
  margin-top: 16px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
}

.hero-signal-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 62%;
  background: var(--green);
  border-radius: 4px;
}


/* ============================================================
   PLAY LOUDER SECTION
   ============================================================ */
.section-play-louder {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 32px 44px;
  position: relative;
}

.play-louder-side {
  width: 220px;
  flex-shrink: 0;
  padding-top: 18px;
}

.play-louder-side p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 25.2px;
}

.play-louder-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.section-heading-xl {
  font-family: var(--font-heading);
  font-size: 144px;
  line-height: 126.72px;
  letter-spacing: -4.32px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: center;
  white-space: nowrap;
}

.btn-light {
  padding: 15px 26px;
  background: #f3fff6;
  color: #09100a;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
}

.btn-light:hover {
  background: #e5ffec;
}

.articles-grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.article-card {
  flex: 1;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 19px;
  background: linear-gradient(to bottom, rgba(17, 20, 17, 0.95), rgba(8, 9, 8, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  box-shadow: 0 28px 60px 0 rgba(0, 0, 0, 0.42);
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.article-card-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0.95;
}

.article-card-bg img {
  position: absolute;
  width: 711px;
  height: 411px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
}

.article-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.44));
}

.article-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--text-primary);
  white-space: nowrap;
  align-self: flex-start;
}

.article-heading {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 42.24px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.article-desc {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-card);
  line-height: 24.8px;
  max-width: 260px;
}


/* ============================================================
   DISCOVER / SIGNAL / UNLOCK / POTENTIAL SECTION
   ============================================================ */
.section-discover {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 32px 44px;
  position: relative;
}

.discover-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 12px;
  width: 100%;
  position: relative;
}

.discover-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px 0 18px;
  width: 100%;
  border-top: 1px solid var(--section-border);
}

.discover-row.text-right {
  justify-content: flex-end;
}

.discover-word {
  font-family: var(--font-heading);
  font-size: 108px;
  line-height: 88.56px;
  text-transform: uppercase;
  color: var(--text-primary);
  flex: 1;
}

.discover-word.align-right {
  text-align: right;
  flex: 1;
}

.discover-text {
  flex: 1;
  max-width: 260px;
  font-size: 13px;
  font-weight: 400;
  color: #dce7df;
  line-height: 21.45px;
}

.discover-text.align-right {
  text-align: right;
}

.discover-card-float {
  position: absolute;
  width: 237px;
  height: 237px;
  left: 24.57%;
  top: 50%;
  transform: translateY(-50%) rotate(10deg);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 60px 0 rgba(0, 0, 0, 0.42);
}

.discover-card-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discover-card-float-overlay {
  position: absolute;
  inset: -10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28));
}


/* ============================================================
   FEATURED GAMES SECTION
   ============================================================ */
.section-games {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding: 26px 32px 44px;
}

.games-header {
  display: flex;
  align-items: flex-end;
  width: 100%;
}

.games-heading {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 108px;
  line-height: 95px;
  letter-spacing: -3.24px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.games-desc {
  flex: 1;
  max-width: 580px;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 29.75px;
  padding-bottom: 2px;
}

.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: 100%;
}

.game-card {
  width: calc(50% - 12px);
  min-width: 300px;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 21px;
  background: linear-gradient(to bottom, rgba(14, 17, 14, 0.96), rgba(7, 8, 7, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 28px 60px 0 rgba(0, 0, 0, 0.42);
  overflow: hidden;
  position: relative;
  min-height: 322px;
}

.game-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.game-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px 0 rgba(0, 0, 0, 0.55);
}

.game-card-glow {
  position: absolute;
  bottom: -42px;
  right: -42px;
  width: 180px;
  height: 180px;
  border-radius: 90px;
  background: radial-gradient(circle at center, rgba(49, 232, 106, 0.24) 0%, rgba(49, 232, 106, 0) 68%);
  pointer-events: none;
}

.game-card-top {
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
  z-index: 1;
}

.game-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.game-logo-box {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  padding: 13px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  flex-shrink: 0;
  overflow: hidden;
}

.game-logo-box img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.game-genre-badge {
  display: inline-flex;
  padding: 9px 11px;
  background: rgba(49, 232, 106, 0.1);
  border: 1px solid rgba(49, 232, 106, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--green-soft);
  white-space: nowrap;
}

.game-title {
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 36px;
  text-transform: uppercase;
  color: var(--text-primary);
  padding-top: 7px;
}

.game-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-game);
  line-height: 24.75px;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 5px;
}

.game-tag {
  display: inline-flex;
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  color: #edf6ef;
  white-space: nowrap;
}

.game-card-bottom {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--green);
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.78px;
  text-transform: uppercase;
  color: #061107;
  white-space: nowrap;
}

.btn-play:hover {
  background: #4fff7e;
}

.btn-play-arrow {
  font-size: 13px;
  color: #061107;
}


/* ============================================================
   POLICY PAGES (Privacy / Terms / Cookies)
   ============================================================ */
.policy-main {
  padding: 24px 20px 72px;
  width: 100%;
  box-sizing: border-box;
}

.policy-title {
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 105.6px;
  letter-spacing: -3.6px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0;
  width: 100%;
}

.policy-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 30.6px;
  color: var(--text-secondary);
  width: 100%;
}

.policy-body p {
  margin: 0;
}

.policy-body a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.policy-body a:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .policy-main {
    padding: 16px 20px 48px;
  }

  .policy-title {
    font-size: clamp(52px, 14vw, 90px);
    line-height: 0.88em;
    letter-spacing: -2px;
  }

  .policy-body {
    font-size: 16px;
    line-height: 27px;
  }
}


/* ============================================================
   GAME DETAIL PAGE
   ============================================================ */
.section-game-hero {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 32px 44px;
  width: 100%;
  box-sizing: border-box;
}

.game-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 34px 30px;
  width: 579px;
  flex-shrink: 0;
  align-self: stretch;
}

.game-hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(49, 232, 106, 0.08);
  border: 1px solid rgba(49, 232, 106, 0.22);
  flex-shrink: 0;
}

.game-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #31e86a;
  box-shadow: 0 0 12px rgba(49, 232, 106, 0.8);
  flex-shrink: 0;
}

.game-hero-badge-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--green-pale);
  white-space: nowrap;
}

.game-hero-title {
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 105.6px;
  letter-spacing: -3.6px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0;
  width: 100%;
}

.game-hero-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 30.6px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 18px 0 0;
}

.game-hero-actions {
  margin-top: 24px;
}

.btn-play-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 14px;
  background: var(--green);
  filter: drop-shadow(0px 12px 13px rgba(49, 232, 106, 0.22));
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  color: #041007;
  text-decoration: none;
  white-space: nowrap;
}

.btn-play-now:hover {
  background: var(--green-light);
}

.game-hero-right {
  flex: 1 0 0;
  min-width: 1px;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.game-hero-image-wrap {
  aspect-ratio: 1 / 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
}


/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 42px 32px 44px;
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 390px;
  width: 100%;
  padding: 45px 28px 28px;
  overflow: hidden;
  border-radius: 28px;
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.cta-bg img {
  position: absolute;
  width: 1162px;
  height: 523px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
  object-fit: cover;
}

.cta-heading {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 105.6px;
  letter-spacing: -3.6px;
  text-transform: uppercase;
  color: var(--text-primary);
  white-space: nowrap;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 0 32px 44px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  padding: 28px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 338px;
  flex-shrink: 0;
  text-decoration: none;
}

.footer-logo .logo-text {
  font-size: 20px;
  letter-spacing: 1.6px;
}

.footer-desc {
  flex: 1;
  min-width: 200px;
  max-width: 241px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 24.5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-footer);
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-contact-item {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 24.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  width: 112px;
}

.footer-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 24.5px;
  white-space: nowrap;
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-bottom {
  width: 338px;
  flex-shrink: 0;
  padding-top: 18px;
}

.footer-copy {
  font-size: 12px;
  font-weight: 400;
  color: rgba(191, 208, 193, 0.66);
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: background 0.2s, color 0.2s;
}

.social-link:hover {
  background: rgba(49, 232, 106, 0.12);
  color: var(--green);
  border-color: rgba(49, 232, 106, 0.3);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}


/* ============================================================
   MOBILE NAV (overlay)
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 4, 4, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 28px;
  opacity: 1;
  color: var(--text-primary);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 32px;
  line-height: 1;
}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1100px) {
  .hero-content {
    width: 100%;
    max-width: 550px;
  }

  .hero-image {
    width: 420px;
  }

  .section-heading-xl {
    font-size: clamp(60px, 10vw, 144px);
    white-space: normal;
    text-align: center;
  }

  .games-heading {
    font-size: 72px;
    line-height: 68px;
  }

  .cta-heading {
    font-size: 80px;
    line-height: 76px;
    white-space: normal;
  }

  .discover-word {
    font-size: 80px;
    line-height: 72px;
  }

  .game-card {
    width: calc(50% - 12px);
    max-width: none;
  }

  .game-hero-left {
    width: 100%;
    max-width: 500px;
  }

  .game-hero-title {
    font-size: 80px;
    line-height: 72px;
    letter-spacing: -2.4px;
  }
}


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

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section-hero {
    flex-direction: column;
    padding: 16px 20px 40px;
    min-height: auto;
    gap: 24px;
  }

  .hero-content {
    width: 100%;
    padding: 16px 0;
    gap: 20px;
  }

  .hero-heading {
    font-size: clamp(52px, 14vw, 100px);
    line-height: 0.88em;
    letter-spacing: -2px;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 27px;
    margin-top: 8px;
  }

  .hero-buttons {
    margin-top: 12px;
    gap: 12px;
  }

  .hero-stats {
    gap: 8px;
  }

  .stat-card {
    padding: 14px 12px 20px;
  }

  .stat-num {
    font-size: 24px;
    line-height: 24px;
  }

  .stat-label {
    font-size: 11px;
    line-height: 16px;
  }

  .hero-image {
    width: 100%;
    min-height: 280px;
    height: 280px;
  }

  .hero-tags {
    display: none;
  }

  .hero-controller-card,
  .hero-signal-card {
    display: none;
  }

  .section-play-louder {
    flex-direction: column;
    padding: 20px 20px 40px;
    gap: 24px;
  }

  .play-louder-side {
    width: 100%;
  }

  .play-louder-center {
    width: 100%;
  }

  .section-heading-xl {
    font-size: clamp(42px, 12vw, 76px);
    line-height: 0.88em;
    letter-spacing: -2px;
    white-space: normal;
    text-align: center;
  }

  .articles-grid {
    flex-direction: column;
  }

  .article-card {
    min-height: 240px;
  }

  .article-heading {
    font-size: 36px;
    line-height: 1em;
  }

  .section-discover {
    padding: 20px 20px 40px;
  }

  .discover-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 0;
  }

  .discover-row.text-right {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .discover-word,
  .discover-word.align-right {
    font-size: clamp(52px, 15vw, 96px);
    line-height: 0.82em;
    text-align: left;
    flex: none;
    width: 100%;
  }

  .discover-text,
  .discover-text.align-right {
    max-width: 100%;
    text-align: left;
    flex: none;
    width: 100%;
  }

  .discover-card-float {
    display: none;
  }

  .section-games {
    padding: 20px 20px 40px;
    gap: 24px;
  }

  .games-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .games-heading {
    font-size: clamp(52px, 14vw, 90px);
    line-height: 0.88em;
    letter-spacing: -2px;
  }

  .games-desc {
    font-size: 15px;
    line-height: 26px;
    max-width: 100%;
  }

  .games-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .game-card {
    width: 100%;
    max-width: 100%;
  }

  .section-cta {
    padding: 32px 20px 40px;
  }

  .cta-inner {
    min-height: 240px;
    padding: 24px 20px;
    border-radius: 20px;
    align-items: flex-end;
  }

  .cta-heading {
    font-size: clamp(32px, 9vw, 60px);
    line-height: 0.9em;
    letter-spacing: -1px;
    white-space: normal;
  }

  .site-footer {
    padding: 0 20px 40px;
  }

  .footer-inner {
    flex-direction: column;
    padding: 20px 0;
    gap: 24px;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom {
    width: 100%;
    padding-top: 8px;
  }

  .section-game-hero {
    flex-direction: column;
    padding: 16px 20px 40px;
    gap: 24px;
  }

  .game-hero-left {
    width: 100%;
    padding: 16px 0 0;
  }

  .game-hero-title {
    font-size: clamp(52px, 14vw, 90px);
    line-height: 0.88em;
    letter-spacing: -2px;
  }

  .game-hero-desc {
    font-size: 16px;
    line-height: 27px;
    max-width: 100%;
  }

  .game-hero-right {
    width: 100%;
    flex: none;
  }
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(32px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.section-hero .badge          { animation: fadeUp 0.55s 0.05s ease both; }
.section-hero .hero-heading   { animation: fadeUp 0.65s 0.15s ease both; }
.section-hero .hero-desc      { animation: fadeUp 0.55s 0.25s ease both; }
.section-hero .hero-buttons   { animation: fadeUp 0.55s 0.35s ease both; }
.section-hero .hero-stats     { animation: fadeUp 0.55s 0.45s ease both; }
.section-hero .hero-image     { animation: fadeIn 0.75s 0.2s ease both; }

.game-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.game-card:hover {
  transform: translateY(-5px);
}

.article-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 72px 0 rgba(0, 0, 0, 0.54);
}

.btn-primary, .btn-secondary {
  transition: background 0.18s ease, transform 0.15s ease, filter 0.18s ease;
}
.btn-primary:hover  { transform: translateY(-2px); }
.btn-secondary:hover { transform: translateY(-2px); }

.btn-play {
  transition: background 0.18s ease, transform 0.15s ease;
}
.btn-play:hover { transform: translateY(-2px); }

.btn-play-now {
  transition: background 0.18s ease, transform 0.15s ease;
}
.btn-play-now:hover { transform: translateY(-2px); }

.btn-light {
  transition: background 0.18s ease, transform 0.15s ease;
}
.btn-light:hover { transform: translateY(-2px); }

.nav-link {
  transition: opacity 0.18s ease, color 0.18s ease;
}

.footer-link {
  transition: color 0.18s ease, opacity 0.18s ease;
}
.footer-link:hover {
  color: var(--green);
  opacity: 1;
}

.logo-icon-dot {
  transition: box-shadow 0.2s ease;
}
.logo:hover .logo-icon-dot {
  box-shadow: 0 0 26px 0 rgba(49, 232, 106, 0.65);
}


/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 40px);
  max-width: 860px;
  background: rgba(10, 16, 11, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  animation: cookieSlideUp 0.4s ease both;
}

.cookie-title {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 0.92em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.cookie-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 24px;
  margin-bottom: 22px;
  max-width: 680px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-btn-accept {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--green);
  border: none;
  border-radius: 16px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  color: #041007;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.15s ease;
}
.cookie-btn-accept:hover {
  background: #4fff7e;
  transform: translateY(-1px);
}

.cookie-btn-manage {
  display: block;
  width: 100%;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease;
}
.cookie-btn-manage:hover {
  background: rgba(255, 255, 255, 0.09);
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 16px;
    padding: 22px 20px;
    border-radius: 20px;
  }
  .cookie-title {
    font-size: 36px;
  }
  .cookie-desc {
    font-size: 14px;
    margin-bottom: 18px;
  }
}
