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

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

:root {
  --cyan: #14d4ff;
  --cyan-light: #5ef3ff;
  --blue: #43a7ff;
  --bg-dark: #06080d;
  --bg-darker: #05070c;
  --text-white: #eefaff;
  --text-light: #d9f8ff;
  --text-muted: #9db7c2;
  --text-bright: #d4eef5;
  --text-tag: #d7f8ff;
  --border-cyan: rgba(116, 240, 255, 0.24);
  --border-cyan-soft: rgba(116, 240, 255, 0.14);
  --border-cyan-dim: rgba(116, 240, 255, 0.1);
  --card-from: rgba(13, 22, 33, 0.92);
  --card-to: rgba(7, 11, 17, 0.96);
  --game-card-from: rgba(15, 25, 37, 0.96);
  --game-card-to: rgba(8, 12, 18, 0.98);
  --overlay-bg: rgba(255, 255, 255, 0.03);
  --overlay-border: rgba(255, 255, 255, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(rgb(6, 8, 13) 0%, rgb(5, 7, 12) 100%);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.page-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 0 32px;
}

.page-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 488px 467px at 180px 0px, rgba(20, 212, 255, 0.16) 0%, rgba(20, 212, 255, 0) 26%),
    radial-gradient(ellipse 421px 403px at calc(100% - 60px) 685px, rgba(67, 167, 255, 0.12) 0%, rgba(67, 167, 255, 0) 22%);
  pointer-events: none;
  z-index: 0;
}

.page-wrapper > * {
  position: relative;
  z-index: 1;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px 17px;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
  width: 100vw;
  height: 100%;
  background: rgba(6, 8, 13, 0.76);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: -1;
}

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

.logo-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  filter: drop-shadow(0px 0px 12px rgba(20, 212, 255, 0.55));
  position: relative;
  flex-shrink: 0;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 2px solid #031019;
  border-radius: 4px;
}

.logo-icon::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 6px;
  height: 6px;
  background: #dffaff;
  border-radius: 2px;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 18.4px;
  letter-spacing: 0.736px;
  color: var(--text-white);
}

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

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 15.2px;
  color: var(--text-light);
  opacity: 0.88;
  transition: opacity 0.2s;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 29px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  border: 1px solid transparent;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #03131d;
  filter: drop-shadow(0px 18px 19px rgba(20, 212, 255, 0.26));
  transition: filter 0.2s, transform 0.2s;
}

.btn-primary:hover {
  filter: drop-shadow(0px 18px 24px rgba(20, 212, 255, 0.35));
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 29px;
  border-radius: 999px;
  background: rgba(13, 22, 33, 0.5);
  border: 1px solid rgba(116, 240, 255, 0.26);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-light);
  transition: background 0.2s, transform 0.2s;
}

.btn-outline:hover {
  background: rgba(13, 22, 33, 0.7);
  transform: translateY(-1px);
}

.btn-header {
  padding: 15px 23px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(20, 212, 255, 0.14) 0%, rgba(94, 243, 255, 0.08) 100%);
  border: 1px solid rgba(116, 240, 255, 0.24);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-white);
  position: relative;
  display: inline-flex;
  transition: background 0.2s;
}

.btn-header::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  box-shadow: 0px 0px 0px 1px rgba(20, 212, 255, 0.18), 0px 18px 50px 0px rgba(20, 212, 255, 0.13);
  pointer-events: none;
}

.btn-header:hover {
  background: linear-gradient(135deg, rgba(20, 212, 255, 0.22) 0%, rgba(94, 243, 255, 0.14) 100%);
}

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

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
  max-width: 1136px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 17px;
  min-width: 0;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(13, 22, 33, 0.75);
  border: 1px solid var(--border-cyan);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 1.843px;
  text-transform: uppercase;
  color: var(--cyan-light);
  align-self: flex-start;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 84px;
  line-height: 79.8px;
  letter-spacing: -3.36px;
  text-transform: uppercase;
  color: var(--text-white);
  padding-top: 4px;
}

.hero-title .accent {
  color: var(--cyan-light);
}

.hero-desc {
  font-weight: 400;
  font-size: 17.3px;
  line-height: 29.38px;
  color: var(--text-muted);
  max-width: 640px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-top: 13px;
}

.hero-visual {
  flex: 1;
  min-width: 0;
  height: 570px;
  position: relative;
}

.hero-card {
  position: absolute;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(116, 240, 255, 0.16);
  background: linear-gradient(to bottom, rgba(16, 29, 42, 0.98), rgba(8, 12, 18, 0.98));
  box-shadow: 0px 25px 70px 0px rgba(0, 0, 0, 0.42);
}

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

.hero-card--left {
  width: 240px;
  height: 176px;
  left: -10px;
  top: 86px;
  transform: rotate(-7deg);
}

.hero-card--center {
  inset: 20px 0 80px 90px;
  box-shadow: 0px 40px 90px 0px rgba(0, 0, 0, 0.5), 0px 0px 0px 1px rgba(116, 240, 255, 0.15);
}

.hero-card--right {
  width: 210px;
  height: 150px;
  right: 2px;
  bottom: 13px;
  transform: rotate(7deg);
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 10, 16, 0), rgba(5, 10, 16, 0.14));
  pointer-events: none;
}

.hero-float-tag {
  position: absolute;
  padding: 13px 17px;
  border-radius: 16px;
  background: rgba(8, 16, 24, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(116, 240, 255, 0.18);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13.4px;
  color: var(--cyan-light);
  z-index: 5;
  white-space: nowrap;
}

.hero-float-tag::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  box-shadow: 0px 0px 0px 1px rgba(20, 212, 255, 0.18), 0px 18px 50px 0px rgba(20, 212, 255, 0.13);
  pointer-events: none;
}

.hero-float-tag--top {
  top: -10px;
  right: 20px;
}

.hero-float-tag--bottom {
  bottom: 0;
  left: 60px;
}

.ticker-section {
  width: 100vw;
  height: 266px;
  overflow: hidden;
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.ticker-row {
  position: absolute;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-row-inner {
  display: flex;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--cyan) 0%, var(--cyan-light) 50%, var(--cyan) 100%);
  box-shadow: 0px 18px 40px 0px rgba(20, 212, 255, 0.2);
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  color: #031019;
  width: 1560px;
  overflow: hidden;
}

.ticker-row--top {
  top: 23px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
}

.ticker-row--bottom {
  top: 51px;
  left: 50%;
  transform: translateX(-50%) rotate(4deg);
  opacity: 0.92;
}

.ticker-track {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-track--reverse {
  animation-name: ticker-scroll-reverse;
}

.ticker-seg {
  flex-shrink: 0;
  white-space: nowrap;
}

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

@keyframes ticker-scroll-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

.about-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
  max-width: 1136px;
  padding: 40px 0 30px;
}

.about-label {
  width: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 223px;
}

.about-label-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 400;
  font-size: 48px;
  letter-spacing: -2.88px;
  color: rgba(231, 251, 255, 0.92);
  text-shadow: 0px 0px 30px rgba(116, 240, 255, 0.06);
  transform: rotate(-90deg);
  white-space: nowrap;
  line-height: 43.2px;
}

.about-cards {
  flex: 1;
  display: flex;
  gap: 24px;
  min-width: 0;
}

.card {
  flex: 1;
  min-width: 0;
  border-radius: 32px;
  background: linear-gradient(to bottom, var(--card-from), var(--card-to));
  border: 1px solid var(--border-cyan-soft);
  box-shadow: 0px 25px 70px 0px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  position: relative;
}

.about-illustration {
  padding: 33px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-illustration-img {
  width: 100%;
  height: 676px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-illustration-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-watermark {
  position: absolute;
  right: -52px;
  top: 10px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 400;
  font-size: 168px;
  letter-spacing: -13.44px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(116, 240, 255, 0.06);
  line-height: 151.2px;
  pointer-events: none;
}

.about-text-card {
  padding: 33px 35px 33px 33px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-heading {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 47px;
  text-transform: uppercase;
  color: var(--text-white);
}

.about-desc {
  font-weight: 400;
  font-size: 16.3px;
  line-height: 29.38px;
  color: var(--text-muted);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 14px;
}

.stat-card {
  background: var(--overlay-bg);
  border: 1px solid var(--border-cyan-dim);
  border-radius: 20px;
  padding: 17px 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 22.4px;
  color: var(--cyan-light);
}

.stat-label {
  font-weight: 400;
  font-size: 13.8px;
  color: var(--text-bright);
  line-height: 1.2;
}

.games-section {
  width: 100%;
  max-width: 1136px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.games-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.games-header-left {
  display: flex;
  flex-direction: column;
}

.games-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 47px;
  text-transform: uppercase;
  color: var(--text-white);
}

.games-header-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 28.8px;
  color: var(--text-muted);
}

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

.game-card {
  width: calc((100% - 24px) / 3);
  border-radius: 28px;
  background: linear-gradient(to bottom, var(--game-card-from), var(--game-card-to));
  border: 1px solid var(--border-cyan-soft);
  box-shadow: 0px 25px 70px 0px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  padding: 21px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-card--tall {
  min-height: auto;
}

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

.game-card-info {
  display: flex;
  flex-direction: column;
}

.game-category {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(20, 212, 255, 0.12);
  border: 1px solid rgba(116, 240, 255, 0.18);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11.7px;
  letter-spacing: 0.934px;
  text-transform: uppercase;
  color: var(--cyan-light);
  align-self: flex-start;
  margin-bottom: -1px;
}

.game-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 25.6px;
  line-height: 23.55px;
  text-transform: uppercase;
  color: var(--text-white);
}

.game-thumb {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  border: 1px solid rgba(116, 240, 255, 0.18);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0px 0px 30px 0px rgba(94, 243, 255, 0.06);
}

.game-desc {
  font-weight: 400;
  font-size: 15.4px;
  line-height: 25.34px;
  color: var(--text-muted);
  padding: 15px 0 20px;
}

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

.game-tag {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--overlay-bg);
  border: 1px solid var(--overlay-border);
  font-weight: 700;
  font-size: 13.1px;
  color: var(--text-tag);
}

.game-play-link {
  font-weight: 700;
  font-size: 16px;
  color: var(--cyan-light);
  transition: opacity 0.2s;
}

.game-play-link:hover {
  opacity: 0.8;
}

a.game-card-link {
  display: flex;
  transition: transform 0.2s, box-shadow 0.2s;
}

a.game-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0px 30px 80px 0px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(116, 240, 255, 0.22);
}

.catalog-page-section {
  padding-top: 10px;
}

.game-detail-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
  max-width: 1136px;
  padding: 40px 0 30px;
}

.game-detail-label {
  width: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 223px;
}

.game-detail-label-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 400;
  font-size: 48px;
  letter-spacing: -2.88px;
  color: rgba(231, 251, 255, 0.92);
  text-shadow: 0px 0px 30px rgba(116, 240, 255, 0.06);
  transform: rotate(-90deg);
  white-space: nowrap;
  line-height: 43.2px;
}

.game-detail-content {
  flex: 1;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  min-width: 0;
}

.game-detail-image {
  flex: 1;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  border: 1px solid rgba(116, 240, 255, 0.18);
  overflow: hidden;
  position: relative;
}

.game-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.game-detail-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0px 0px 30px 0px rgba(94, 243, 255, 0.06);
  pointer-events: none;
}

.game-detail-text {
  flex: 1;
  min-width: 0;
  border-radius: 32px;
  background: linear-gradient(to bottom, var(--card-from), var(--card-to));
  border: 1px solid var(--border-cyan-soft);
  box-shadow: 0px 25px 70px 0px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  padding: 33px 35px 33px 33px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.game-detail-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 47px;
  text-transform: uppercase;
  color: var(--text-white);
}

.game-detail-desc {
  font-weight: 400;
  font-size: 16.3px;
  line-height: 29.38px;
  color: var(--text-muted);
}

.policy-section {
  width: 100%;
  max-width: 1136px;
  padding: 10px 0 30px;
}

.policy-card {
  width: 100%;
  border-radius: 32px;
  background: linear-gradient(to bottom, var(--card-from), var(--card-to));
  border: 1px solid var(--border-cyan-soft);
  box-shadow: 0px 25px 70px 0px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  padding: 33px 35px 33px 33px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 47px;
  text-transform: uppercase;
  color: var(--text-white);
}

.policy-body {
  font-weight: 400;
  font-size: 16.3px;
  line-height: 29.38px;
  color: var(--text-muted);
}

.policy-body a {
  color: var(--text-muted);
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .policy-title {
    font-size: 32px;
    line-height: 34px;
  }

  .policy-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .policy-body {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  .game-detail-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .game-detail-label {
    width: auto;
    height: auto;
  }

  .game-detail-label-text {
    transform: none;
    font-size: 32px;
  }

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

  .game-detail-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .game-detail-title {
    font-size: 32px;
    line-height: 34px;
  }
}

.why-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
  max-width: 1136px;
}

.why-text-card {
  flex: 1;
  min-width: 0;
  border-radius: 32px;
  background: linear-gradient(to bottom, var(--card-from), var(--card-to));
  border: 1px solid var(--border-cyan-soft);
  box-shadow: 0px 25px 70px 0px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  padding: 29px;
  min-height: 180px;
}

.why-heading {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 47px;
  text-transform: uppercase;
  color: var(--text-white);
}

.why-desc {
  font-weight: 400;
  font-size: 16.3px;
  line-height: 29.38px;
  color: var(--text-muted);
  padding-top: 18px;
}

.why-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
}

.why-feature {
  width: 237px;
  background: var(--overlay-bg);
  border: 1px solid var(--border-cyan-dim);
  border-radius: 24px;
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.why-feature-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #effcff;
}

.why-feature-desc {
  font-weight: 400;
  font-size: 14.7px;
  line-height: 23.55px;
  color: var(--text-muted);
}

.why-illustration {
  flex: 1;
  min-width: 0;
  border-radius: 32px;
  background: linear-gradient(to bottom, var(--card-from), var(--card-to));
  border: 1px solid var(--border-cyan-soft);
  box-shadow: 0px 25px 70px 0px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  padding: 27px;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-illustration-img {
  width: 100%;
  height: 589px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-illustration-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-watermark {
  position: absolute;
  bottom: -1px;
  left: -30px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 400;
  font-size: 168px;
  letter-spacing: -13.44px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(116, 240, 255, 0.06);
  line-height: 151.2px;
  pointer-events: none;
}

.why-illustration::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.cta-section {
  width: 100%;
  max-width: 1136px;
  border-radius: 36px;
  border: 1px solid rgba(116, 240, 255, 0.18);
  box-shadow: 0px 25px 70px 0px rgba(0, 0, 0, 0.42);
  background: linear-gradient(134deg, rgba(20, 212, 255, 0.16) 0%, rgba(10, 18, 28, 0.92) 36%, rgba(9, 13, 20, 0.98) 100%);
  padding: 47px 45px;
  overflow: hidden;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 150px;
  background: radial-gradient(circle at center, rgba(94, 243, 255, 0.28) 0%, rgba(94, 243, 255, 0) 68%);
  filter: blur(9px);
  opacity: 0.45;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -90px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 150px;
  background: radial-gradient(circle at center, rgba(94, 243, 255, 0.28) 0%, rgba(94, 243, 255, 0) 68%);
  filter: blur(9px);
  opacity: 0.45;
  pointer-events: none;
}

.cta-inner {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cta-heading {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 47px;
  text-transform: uppercase;
  color: var(--text-white);
}

.cta-desc {
  font-weight: 400;
  font-size: 16.3px;
  line-height: 29.38px;
  color: var(--text-muted);
  padding-top: 17px;
}

.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer {
  width: 100%;
  max-width: 1136px;
  padding: 34px 0 48px;
}

.footer-card {
  border-radius: 30px;
  background: linear-gradient(to bottom, rgba(10, 14, 22, 0.95), rgba(7, 9, 13, 0.98));
  border: 1px solid rgba(116, 240, 255, 0.12);
  box-shadow: 0px 25px 70px 0px rgba(0, 0, 0, 0.42);
  padding: 29px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: flex;
  gap: 0;
}

.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 27.2px;
  color: var(--text-muted);
}

.footer-heading {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-white);
}

.footer-contact {
  font-weight: 400;
  font-size: 16px;
  line-height: 27.2px;
  color: var(--text-muted);
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 10px;
}

.footer-link {
  font-weight: 400;
  font-size: 16px;
  color: #d6f7ff;
  opacity: 0.9;
  transition: opacity 0.2s;
}

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

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-copyright {
  font-weight: 400;
  font-size: 14.7px;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(116, 240, 255, 0.14);
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.social-link img {
  width: 18px;
  height: 18px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 8, 13, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu .nav-link {
  font-size: 24px;
  opacity: 1;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 32px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .page-wrapper {
    padding: 0 16px;
    gap: 40px;
  }

  .header {
    padding: 14px 16px;
  }

  .nav {
    display: none;
  }

  .btn-header {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    gap: 30px;
  }

  .hero-title {
    font-size: 42px;
    line-height: 42px;
    letter-spacing: -1.68px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 25px;
  }

  .hero-visual {
    width: 100%;
    height: 350px;
  }

  .hero-card--left {
    width: 150px;
    height: 110px;
    left: -5px;
    top: 50px;
  }

  .hero-card--center {
    inset: 10px 0 50px 50px;
  }

  .hero-card--right {
    width: 130px;
    height: 95px;
    right: 0;
    bottom: 8px;
  }

  .hero-float-tag {
    font-size: 11px;
    padding: 10px 14px;
  }

  .hero-float-tag--top {
    right: 10px;
    top: -5px;
  }

  .hero-float-tag--bottom {
    left: 30px;
    bottom: 0;
  }

  .ticker-section {
    height: 180px;
  }

  .ticker-row-inner {
    font-size: 12px;
    padding: 10px 16px;
    width: 1200px;
  }

  .about-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .about-label {
    width: auto;
    height: auto;
  }

  .about-label-text {
    transform: none;
    font-size: 32px;
  }

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

  .about-illustration-img {
    height: 300px;
  }

  .about-heading {
    font-size: 32px;
    line-height: 34px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stat-card {
    padding: 12px 10px;
  }

  .stat-number {
    font-size: 18px;
  }

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

  .games-section {
    gap: 20px;
  }

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

  .games-title {
    font-size: 32px;
    line-height: 34px;
  }

  .games-header-desc {
    font-size: 14px;
    line-height: 24px;
  }

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

  .game-card {
    width: 100%;
  }

  .game-name {
    font-size: 20px;
    line-height: 20px;
  }

  .game-thumb {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .game-desc {
    font-size: 14px;
    line-height: 22px;
  }

  .why-section {
    flex-direction: column;
    gap: 20px;
  }

  .why-heading {
    font-size: 32px;
    line-height: 34px;
  }

  .why-features {
    gap: 12px;
  }

  .why-feature {
    width: 100%;
  }

  .why-illustration {
    min-height: 300px;
  }

  .why-illustration-img {
    height: 300px;
  }

  .cta-section {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cta-heading {
    font-size: 32px;
    line-height: 34px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline {
    width: 100%;
    text-align: center;
  }

  .footer {
    padding: 20px 0 32px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .footer-socials {
    align-self: flex-start;
  }

  .about-watermark,
  .why-watermark {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
    line-height: 56px;
  }

  .game-card {
    width: calc(50% - 6px);
  }

  .why-feature {
    width: calc(50% - 8px);
  }
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1200;
  width: min(560px, calc(100% - 48px));
  padding: 32px 36px 34px;
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(13, 22, 33, 0.96), rgba(6, 9, 15, 0.98));
  border: 1px solid var(--border-cyan-soft);
  box-shadow: 0px 30px 80px 0px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(116, 240, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(24px);
  visibility: hidden;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.cookie-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 18px;
}

.cookie-text {
  font-weight: 400;
  font-size: 15.4px;
  line-height: 25px;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: filter 0.2s, transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.cookie-btn--accept {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  color: #03131d;
  box-shadow: 0px 0px 40px rgba(20, 212, 255, 0.45);
}

.cookie-btn--accept:hover {
  transform: translateY(-1px);
  box-shadow: 0px 0px 55px rgba(20, 212, 255, 0.6);
}

.cookie-btn--manage {
  background: rgba(8, 13, 20, 0.6);
  border: 1px solid var(--border-cyan);
  color: var(--text-white);
}

.cookie-btn--manage:hover {
  background: rgba(13, 22, 33, 0.85);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 26px 24px 28px;
    border-radius: 24px;
  }

  .cookie-title {
    font-size: 28px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* ===== Scroll reveal animations ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
  }

  .reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Extra hover effects ===== */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.game-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(116, 240, 255, 0.3);
  box-shadow: 0px 30px 80px 0px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(116, 240, 255, 0.18);
}

.game-thumb img {
  transition: transform 0.4s ease;
}

.game-card:hover .game-thumb img,
.game-card-link:hover .game-thumb img {
  transform: scale(1.08);
}

.game-play-link {
  display: inline-flex;
  transition: opacity 0.2s, transform 0.2s;
}

.game-play-link:hover {
  transform: translateX(2px);
}

.footer-link,
.social-link img {
  transition: opacity 0.2s, color 0.2s, transform 0.2s;
}

.footer-link:hover {
  color: var(--cyan-light);
}

.social-link:hover img {
  transform: translateY(-2px);
  opacity: 0.85;
}

.stat-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(116, 240, 255, 0.3);
}

.why-feature {
  transition: transform 0.25s ease;
}

.why-feature:hover {
  transform: translateY(-2px);
}
