:root {
  --background: #0b1020;
  --background-soft: #121a2f;
  --card: rgba(19, 28, 49, 0.88);
  --gold: #d4af37;
  --gold-light: #f6d76b;
  --blue: #2563eb;
  --text: #f8fafc;
  --muted: #a8b2c7;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 28%),
    var(--background);
  color: var(--text);
  line-height: 1.6;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(11, 16, 32, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.site-header .brand-logo {
  width: 78px;
  height: 78px;
  transition: transform 0.3s ease;
}

.site-header .brand-logo:hover {
  transform: scale(1.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.navigation-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navigation-menu a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.navigation-menu a:hover {
  color: var(--gold-light);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 90px;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 26px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-badge span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #111827;
  font-weight: 800;
}

.eyebrow {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 650px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-game-list {
  max-width: 680px;
  margin-top: 20px;
  color: var(--gold-light);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.hero-game-list span {
  margin: 0 7px;
  color: rgba(255, 255, 255, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #131722;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.22);
}

.button-primary:hover {
  transform: translateY(-2px);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--gold-light);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 34px;
  margin-top: 40px;
}

.hero-highlights div {
  display: flex;
  flex-direction: column;
}

.hero-highlights strong {
  color: var(--gold-light);
  font-size: 1.35rem;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(330px, 82vw);
  padding: 13px;
  border-radius: 42px;
  background: linear-gradient(145deg, #303b54, #0c1220);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.phone-speaker {
  width: 78px;
  height: 7px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #05070d;
}

.phone-screen {
  min-height: 570px;
  padding: 18px;
  border-radius: 31px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.2), transparent 32%),
    linear-gradient(180deg, #121c33, #09101f);
  overflow: hidden;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-topbar div {
  display: flex;
  flex-direction: column;
}

.app-topbar small {
  color: var(--muted);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
}

.app-topbar strong {
  color: var(--gold-light);
  font-size: 0.9rem;
}

.coin {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: #121212;
  font-weight: 900;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.app-banner {
  margin-top: 22px;
  padding: 25px 18px;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.mini-crown {
  color: var(--gold-light);
  font-size: 2rem;
}

.app-banner h2 {
  margin-top: 8px;
  font-size: 1.3rem;
}

.app-banner p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.mini-game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.mini-game-card {
  padding: 17px 10px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
}

.mini-game-card span {
  font-size: 1.6rem;
}

.mini-game-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
}

.floating-card,
.floating-coin {
  position: absolute;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.floating-card {
  width: 92px;
  height: 124px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #dbe3f0);
  color: #111827;
  font-size: 2.8rem;
  font-weight: 800;
}

.floating-card-one {
  left: 0;
  top: 120px;
  transform: rotate(-16deg);
}

.floating-card-two {
  right: 0;
  bottom: 110px;
  color: #c02626;
  transform: rotate(18deg);
}

.floating-coin {
  right: 24px;
  top: 48px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: #121212;
  font-size: 1.5rem;
  font-weight: 900;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.35;
}

.hero-glow-one {
  width: 320px;
  height: 320px;
  left: -120px;
  top: 120px;
  background: var(--blue);
}

.hero-glow-two {
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: 40px;
  background: var(--gold);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.75rem;
}

.scroll-indicator span {
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--gold-light), transparent);
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2,
.download-card h2,
.about-content h2,
.responsible-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.section-heading > p:last-child,
.download-card p,
.about-content p,
.responsible-content p {
  margin-top: 16px;
  color: var(--muted);
}

.games-section {
  background: rgba(255, 255, 255, 0.015);
}

.games-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.game-card,
.feature-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

.game-card:hover,
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
}

.game-icon,
.feature-card > span {
  font-size: 2.3rem;
}

.game-image {
  height: 190px;
  margin: -28px -28px 22px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: #080c17;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.05);
}

.game-status {
  position: absolute;
  top: 16px;
right: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.15);
  color: #93c5fd;
  font-size: 0.67rem;
}

.game-card h3,
.feature-card h3 {
  margin-top: 18px;
  font-size: 1.25rem;
}

.game-card p,
.feature-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.game-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 20px;
  color: var(--gold-light);
  font-weight: 800;
  font-size: 0.9rem;
}

.features-section {
  background:
    radial-gradient(circle at center, rgba(37, 99, 235, 0.12), transparent 45%);
}

.feature-card {
  text-align: center;
}

.download-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  padding: 55px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 34%),
    var(--card);
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.store-buttons button {
  min-height: 74px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #111827;
  color: var(--text);
  opacity: 0.72;
}

.store-buttons button > span {
  font-size: 1.8rem;
}

.store-buttons small {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-buttons strong {
  font-size: 1rem;
}

.about-section {
  background: rgba(255, 255, 255, 0.015);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 70px;
}

.about-emblem {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 48%),
    var(--card);
}

.about-emblem span {
  color: var(--gold-light);
  font-size: 5rem;
}

.about-emblem strong {
  font-size: 2.1rem;
  line-height: 0.95;
  letter-spacing: 0.08em;
}

.about-emblem small {
  margin-top: 14px;
  color: var(--gold);
  letter-spacing: 0.25em;
}

.about-content p + p {
  margin-top: 14px;
}

.responsible-banner {
  padding: 46px 0;
  background: #111827;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.responsible-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.responsible-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.3rem;
  font-weight: 900;
}

.responsible-content a {
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 800;
}

.site-footer {
  padding: 70px 0 24px;
  background: #080c17;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-grid > div:first-child p {
  max-width: 360px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 960px) {
  .hero-layout,
  .download-card,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-description,
  .hero-badge,
  .section-heading {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-highlights {
    justify-content: center;
  }

  .games-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    min-height: 560px;
  }

  .about-content {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .menu-button {
    display: block;
  }

  .navigation-menu {
    position: absolute;
    top: 92px;
    left: 13px;
    right: 13px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(11, 16, 32, 0.98);
  }

  .navigation-menu.open {
    display: flex;
  }

  .navigation-menu a {
    padding: 12px;
  }

  .hero {
    padding-top: 125px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.8rem);
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .floating-card {
    width: 68px;
    height: 94px;
    font-size: 2rem;
  }

  .floating-coin {
    width: 56px;
    height: 56px;
  }

  .games-grid,
  .features-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    padding: 32px 22px;
  }

  .responsible-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .responsible-icon {
    margin: 0 auto;
  }

  .responsible-content a {
    justify-self: center;
  }

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

  .scroll-indicator {
    display: none;
  }
}

/* ================================
   PREMIUM HERO SECTION
================================ */

.hero-premium {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 38%, rgba(212, 175, 55, 0.15), transparent 26%),
    radial-gradient(circle at 18% 28%, rgba(37, 99, 235, 0.12), transparent 30%),
    linear-gradient(180deg, #070b14 0%, #0b1020 65%, #0d1425 100%);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}

.hero-light-gold {
  width: 360px;
  height: 360px;
  top: 160px;
  right: 10%;
  background: rgba(212, 175, 55, 0.55);
}

.hero-light-blue {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: 80px;
  background: rgba(37, 99, 235, 0.45);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 620px;
  height: 620px;
  right: -90px;
  top: 90px;
}

.hero-orbit-two {
  width: 420px;
  height: 420px;
  right: 10px;
  top: 190px;
}

.hero-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 14px rgba(246, 215, 107, 0.9);
  animation: particleFloat 5s ease-in-out infinite;
}

.particle-one {
  top: 22%;
  left: 12%;
}

.particle-two {
  top: 30%;
  right: 18%;
  animation-delay: 1s;
}

.particle-three {
  bottom: 24%;
  left: 26%;
  animation-delay: 2s;
}

.particle-four {
  top: 60%;
  right: 8%;
  animation-delay: 3s;
}

.particle-five {
  bottom: 14%;
  right: 34%;
  animation-delay: 4s;
}

.premium-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.premium-hero-content {
  max-width: 700px;
}

.premium-hero-title {
  font-size: clamp(3.4rem, 6.5vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.premium-hero-title span {
  display: block;
  margin-top: 12px;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    var(--gold-light) 38%,
    var(--gold) 72%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldTextSweep 5s linear infinite;
}

.premium-hero-description {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.premium-game-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 800;
}

.premium-game-list i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.premium-hero-actions {
  margin-top: 34px;
}

.premium-download-button {
  gap: 12px;
  min-width: 230px;
}

.premium-download-button .button-symbol {
  font-size: 1.5rem;
  line-height: 1;
}

.premium-download-button > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.premium-download-button small {
  margin-bottom: 3px;
  font-size: 0.65rem;
  font-weight: 700;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.premium-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
}

.trust-item div {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 0.83rem;
}

.trust-item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
}

.premium-hero-visual {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
}

.victory-halo {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(212, 175, 55, 0.28),
      rgba(212, 175, 55, 0.08) 42%,
      transparent 70%
    );
  filter: blur(10px);
}

.premium-phone {
  position: relative;
  z-index: 4;
  animation: phoneFloat 5s ease-in-out infinite;
}

.premium-phone-frame {
  width: min(350px, 82vw);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 44px;
  background: linear-gradient(145deg, #3a4355, #080b12 55%);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.55),
    0 0 45px rgba(212, 175, 55, 0.18);
}

.premium-phone-top {
  position: relative;
  height: 17px;
}

.phone-camera {
  position: absolute;
  left: calc(50% - 52px);
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #02040a;
}

.phone-speaker {
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  border-radius: 99px;
  background: #02040a;
}

.premium-phone-screen {
  position: relative;
  min-height: 610px;
  padding: 18px;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 28%),
    linear-gradient(180deg, #111a2d 0%, #080d18 100%);
}

.phone-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.phone-app-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.phone-app-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.phone-app-brand div {
  display: flex;
  flex-direction: column;
}

.phone-app-brand small {
  color: var(--muted);
  font-size: 0.48rem;
  letter-spacing: 0.14em;
}

.phone-app-brand strong {
  color: var(--gold-light);
  font-size: 0.72rem;
}

.phone-balance {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.phone-balance span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: #111827;
  font-size: 0.7rem;
  font-weight: 900;
}

.phone-balance strong {
  font-size: 0.64rem;
}

.phone-feature-banner {
  margin-top: 22px;
  padding: 23px 17px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at right, rgba(212, 175, 55, 0.18), transparent 40%),
    rgba(255, 255, 255, 0.035);
}

.phone-feature-banner p {
  color: var(--gold-light);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.phone-feature-banner h2 {
  max-width: 220px;
  margin-top: 6px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.phone-feature-banner button {
  margin-top: 14px;
  padding: 8px 12px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111827;
  font-size: 0.66rem;
  font-weight: 900;
}

.phone-section-title {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  font-size: 0.72rem;
}

.phone-section-title span {
  color: var(--gold-light);
}

.phone-game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 12px;
}

.phone-game-grid article {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.phone-game-grid img {
  width: 100%;
  height: 82px;
  object-fit: cover;
}

.phone-game-grid article span {
  display: block;
  padding: 8px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.phone-bottom-navigation {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px 6px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(12px);
}

.phone-bottom-navigation span {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.phone-bottom-navigation small {
  margin-top: 2px;
  font-size: 0.48rem;
}

.phone-bottom-navigation .active {
  color: var(--gold-light);
}

.floating-game-tile {
  position: absolute;
  z-index: 5;
  width: 125px;
  padding: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 18px;
  background: rgba(12, 18, 31, 0.86);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.floating-game-tile img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
}

.floating-game-tile span {
  display: block;
  padding: 8px 3px 2px;
  text-align: center;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
}

.floating-teen-patti {
  left: -30px;
  top: 120px;
  transform: rotate(-8deg);
  animation: tileFloatOne 5s ease-in-out infinite;
}

.floating-ludo {
  right: -22px;
  top: 210px;
  transform: rotate(8deg);
  animation: tileFloatTwo 5.5s ease-in-out infinite;
}

.floating-sports {
  left: 5px;
  bottom: 80px;
  transform: rotate(5deg);
  animation: tileFloatOne 6s ease-in-out infinite reverse;
}

.floating-victory-coin {
  position: absolute;
  z-index: 6;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: #111827;
  font-weight: 900;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}

.coin-one {
  top: 75px;
  right: 45px;
  width: 58px;
  height: 58px;
  animation: coinFloat 4.5s ease-in-out infinite;
}

.coin-two {
  right: 10px;
  bottom: 120px;
  width: 38px;
  height: 38px;
  font-size: 0.72rem;
  animation: coinFloat 5.5s ease-in-out infinite reverse;
}

.hero-rating-card {
  position: absolute;
  z-index: 6;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  width: 225px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(8, 13, 24, 0.88);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.hero-rating-card > span {
  color: var(--gold-light);
  letter-spacing: 0.14em;
}

.hero-rating-card strong {
  margin-top: 5px;
  font-size: 0.78rem;
}

.hero-rating-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.63rem;
}

.premium-scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.72rem;
}

.premium-scroll-cue span {
  width: 1px;
  height: 28px;
  background: linear-gradient(var(--gold-light), transparent);
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-14px) rotate(-1deg);
  }
}

@keyframes tileFloatOne {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes tileFloatTwo {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 14px;
  }
}

@keyframes coinFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(12deg);
  }
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  50% {
    transform: translateY(-16px);
    opacity: 1;
  }
}

@keyframes goldTextSweep {
  to {
    background-position: 200% center;
  }
}

@media (max-width: 1080px) {
  .premium-hero-layout {
    grid-template-columns: 1fr;
  }

  .premium-hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }

  .premium-hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .premium-game-list,
  .premium-hero-actions {
    justify-content: center;
  }

  .premium-trust-row {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .premium-hero-visual {
    margin-top: 25px;
  }
}

@media (max-width: 760px) {
  .hero-premium {
    padding-top: 125px;
  }

  .premium-hero-title {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .premium-trust-row {
    grid-template-columns: 1fr;
  }

  .premium-game-list {
    line-height: 1.8;
  }

  .premium-hero-visual {
    min-height: 620px;
  }

  .floating-game-tile {
    width: 94px;
  }

  .floating-game-tile img {
    height: 60px;
  }

  .floating-teen-patti {
    left: -6px;
  }

  .floating-ludo {
    right: -4px;
  }

  .floating-sports {
    left: 0;
    bottom: 100px;
  }

  .hero-rating-card {
    right: 50%;
    bottom: 10px;
    transform: translateX(50%);
  }

  .premium-scroll-cue {
    display: none;
  }
}

/* ================================
   PREMIUM GAMES SECTION
================================ */

.premium-games-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #0d1425 0%,
      #090e1a 48%,
      #0b1020 100%
    );
}

.games-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.games-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
}

.games-glow-one {
  width: 420px;
  height: 420px;
  top: 180px;
  left: -180px;
  background: rgba(37, 99, 235, 0.55);
}

.games-glow-two {
  width: 460px;
  height: 460px;
  right: -220px;
  bottom: 120px;
  background: rgba(212, 175, 55, 0.48);
}

.premium-games-section .container {
  position: relative;
  z-index: 2;
}

.premium-section-heading {
  max-width: 800px;
  margin-bottom: 62px;
}

.premium-section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  letter-spacing: -0.045em;
}

.premium-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.premium-game-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(22, 31, 52, 0.95),
      rgba(10, 15, 27, 0.98)
    );
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.premium-game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  border: 1px solid transparent;
  background:
    linear-gradient(
      135deg,
      rgba(246, 215, 107, 0.34),
      transparent 28%,
      transparent 72%,
      rgba(37, 99, 235, 0.24)
    )
    border-box;
  mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.premium-game-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.42),
    0 0 40px rgba(212, 175, 55, 0.08);
}

.premium-game-card:hover::before {
  opacity: 1;
}

.premium-game-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.premium-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}

.premium-game-card:hover .premium-game-image img {
  transform: scale(1.075);
  filter: saturate(1.08) contrast(1.05);
}

.premium-game-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 11, 20, 0.02) 0%,
      rgba(7, 11, 20, 0.08) 45%,
      rgba(7, 11, 20, 0.94) 100%
    );
}

.premium-game-badge {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 2;
  padding: 7px 11px;
  border: 1px solid rgba(246, 215, 107, 0.25);
  border-radius: 999px;
  background: rgba(8, 13, 24, 0.76);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.premium-game-badge-legal {
  color: #bfdbfe;
  border-color: rgba(147, 197, 253, 0.25);
}

.premium-game-number {
  position: absolute;
  right: 18px;
  bottom: 12px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.2);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.premium-game-content {
  position: relative;
  z-index: 2;
  padding: 26px;
}

.premium-game-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.premium-game-title > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 15px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
  font-size: 1.55rem;
}

.premium-game-title div {
  display: flex;
  flex-direction: column;
}

.premium-game-title small {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.premium-game-title h3 {
    display: flex;
    flex-direction: column;
    margin-top: 2px;
    font-size: 1.45rem;
    line-height: 1.1;
}

.game-subtitle {
    margin-top: 6px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.premium-game-content > p {
  min-height: 92px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.premium-game-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.premium-game-features span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #c6cede;
  font-size: 0.68rem;
  font-weight: 700;
}

.premium-game-content > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 800;
}

.premium-game-content > a > span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.premium-game-content > a:hover > span {
  transform: translateX(4px);
  background: var(--gold);
  color: #111827;
}

@media (max-width: 1050px) {
  .premium-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .premium-games-section {
    padding: 90px 0;
  }

  .premium-games-grid {
    grid-template-columns: 1fr;
  }

  .premium-game-image {
    height: 220px;
  }

  .premium-game-content > p {
    min-height: auto;
  }
}

/* ================================
   THE VICTORY EXPERIENCE
================================ */

.victory-experience {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.1), transparent 32%),
    linear-gradient(180deg, #0b1020 0%, #0d1425 100%);
}

.victory-experience::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.victory-experience .container {
  position: relative;
  z-index: 2;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.experience-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(24, 34, 57, 0.82),
      rgba(9, 14, 25, 0.94)
    );
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.experience-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -55px;
  top: -55px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  filter: blur(10px);
  transition: transform 0.35s ease;
}

.experience-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.38),
    0 0 35px rgba(212, 175, 55, 0.08);
}

.experience-card:hover::before {
  transform: scale(1.25);
}

.experience-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(212, 175, 55, 0.16),
      rgba(212, 175, 55, 0.05)
    );
  font-size: 2rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.experience-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  font-size: 1.35rem;
}

.experience-card p {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.experience-card::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 28px;
  width: 42px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
  transition: width 0.35s ease;
}

.experience-card:hover::after {
  width: 90px;
}

@media (max-width: 1050px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .victory-experience {
    padding: 90px 0;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 275px;
  }
}

/* ================================
   BUILT FOR PLAYERS
================================ */

.player-features-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #0b1020 0%,
      #0d1425 52%,
      #090e19 100%
    );
}

.player-features-section .container {
  position: relative;
  z-index: 2;
}

.player-features-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.22;
}

.player-features-glow-one {
  width: 430px;
  height: 430px;
  left: -190px;
  top: 180px;
  background: rgba(37, 99, 235, 0.5);
}

.player-features-glow-two {
  width: 460px;
  height: 460px;
  right: -220px;
  bottom: 80px;
  background: rgba(212, 175, 55, 0.42);
}

.player-features-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.player-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.player-feature-item {
  position: relative;
  display: flex;
  gap: 16px;
  min-height: 205px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 23px;
  background:
    linear-gradient(
      145deg,
      rgba(23, 32, 53, 0.86),
      rgba(9, 14, 25, 0.96)
    );
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.player-feature-item::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -45px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.09);
  filter: blur(8px);
  transition: transform 0.32s ease;
}

.player-feature-item:hover {
  transform: translateY(-7px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(212, 175, 55, 0.06);
}

.player-feature-item:hover::before {
  transform: scale(1.25);
}

.player-feature-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 15px;
  background: rgba(212, 175, 55, 0.08);
  font-size: 1.45rem;
}

.player-feature-item > div:last-child {
  position: relative;
  z-index: 2;
}

.player-feature-number {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.player-feature-item h3 {
  margin-top: 5px;
  font-size: 1.15rem;
}

.player-feature-item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.player-features-showcase {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.showcase-ring {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.showcase-ring-one {
  width: 540px;
  height: 540px;
}

.showcase-ring-two {
  width: 390px;
  height: 390px;
}

.showcase-card {
  position: relative;
  z-index: 3;
  width: min(420px, 90vw);
  padding: 30px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.14),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(21, 30, 50, 0.96),
      rgba(8, 13, 23, 0.98)
    );
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.46),
    0 0 50px rgba(212, 175, 55, 0.09);
  animation: showcaseFloat 5.5s ease-in-out infinite;
}

.showcase-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.showcase-card-header img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.showcase-card-header div {
  display: flex;
  flex-direction: column;
}

.showcase-card-header small {
  color: var(--muted);
  font-size: 0.56rem;
  letter-spacing: 0.15em;
}

.showcase-card-header strong {
  color: var(--gold-light);
  font-size: 0.92rem;
}

.showcase-profile {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.035);
}

.showcase-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(212, 175, 55, 0.18),
      rgba(212, 175, 55, 0.04)
    );
  font-size: 2rem;
}

.showcase-profile small {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.showcase-profile h3 {
  margin-top: 4px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.showcase-stats div {
  padding: 16px 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.showcase-stats strong {
  display: block;
  color: var(--gold-light);
  font-size: 1rem;
}

.showcase-stats span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.63rem;
}

.showcase-progress {
  margin-top: 24px;
}

.showcase-progress-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.68rem;
}

.showcase-progress-label strong {
  color: var(--gold-light);
}

.showcase-progress-track {
  height: 9px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.showcase-progress-track span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      var(--gold),
      var(--gold-light)
    );
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.showcase-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #c8d0de;
  font-size: 0.68rem;
  font-weight: 700;
}

.showcase-floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(8, 13, 23, 0.88);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.showcase-floating-card > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(212, 175, 55, 0.1);
  font-size: 1.25rem;
}

.showcase-floating-card div {
  display: flex;
  flex-direction: column;
}

.showcase-floating-card strong {
  font-size: 0.84rem;
}

.showcase-floating-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.65rem;
}

.showcase-floating-card-one {
  left: -20px;
  top: 130px;
  animation: featureFloatOne 5s ease-in-out infinite;
}

.showcase-floating-card-two {
  right: -25px;
  bottom: 135px;
  animation: featureFloatTwo 5.5s ease-in-out infinite;
}

@keyframes showcaseFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes featureFloatOne {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-11px) rotate(1deg);
  }
}

@keyframes featureFloatTwo {
  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }

  50% {
    transform: translateY(12px) rotate(-1deg);
  }
}

@media (max-width: 1100px) {
  .player-features-layout {
    grid-template-columns: 1fr;
  }

  .player-features-showcase {
    margin-top: 25px;
  }
}

@media (max-width: 720px) {
  .player-features-section {
    padding: 90px 0;
  }

  .player-features-list {
    grid-template-columns: 1fr;
  }

  .player-feature-item {
    min-height: auto;
  }

  .player-features-showcase {
    min-height: 610px;
  }

  .showcase-floating-card {
    min-width: 160px;
  }

  .showcase-floating-card-one {
    left: 0;
  }

  .showcase-floating-card-two {
    right: 0;
  }
}

@media (max-width: 480px) {
  .showcase-card {
    padding: 22px;
  }

  .showcase-stats {
    grid-template-columns: 1fr;
  }

  .showcase-floating-card {
    display: none;
  }

  .player-features-showcase {
    min-height: 560px;
  }
}

/* ================================
   PREMIUM DOWNLOAD SECTION
================================ */

.premium-download-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #090e19 0%,
      #0d1425 48%,
      #080c16 100%
    );
}

.download-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.download-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.25;
}

.download-glow-one {
  width: 430px;
  height: 430px;
  top: 40px;
  left: -160px;
  background: rgba(37, 99, 235, 0.52);
}

.download-glow-two {
  width: 500px;
  height: 500px;
  right: -210px;
  bottom: 10px;
  background: rgba(212, 175, 55, 0.48);
}

.premium-download-section .container {
  position: relative;
  z-index: 2;
}

.premium-download-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding: 70px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 36px;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.13),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      rgba(22, 31, 52, 0.96),
      rgba(8, 13, 23, 0.98)
    );
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.download-copy h2 {
  max-width: 620px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.download-copy h2 span {
  display: block;
  margin-top: 10px;
  background:
    linear-gradient(
      90deg,
      var(--gold-light),
      var(--gold),
      #ffffff
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.download-copy > p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.download-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.download-platforms span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #d3d9e4;
  font-size: 0.7rem;
  font-weight: 800;
}

.premium-store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.premium-store-buttons button {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 210px;
  min-height: 72px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background:
    linear-gradient(
      145deg,
      rgba(18, 25, 41, 0.96),
      rgba(8, 12, 21, 0.98)
    );
  color: var(--text);
  opacity: 0.8;
}

.store-symbol {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  font-size: 1.3rem;
}

.premium-store-buttons button > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.premium-store-buttons small {
  color: var(--muted);
  font-size: 0.65rem;
}

.premium-store-buttons strong {
  margin-top: 2px;
  font-size: 1rem;
}

.download-note {
  margin-top: 18px !important;
  font-size: 0.72rem !important;
}

.download-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.download-ring {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.11);
  border-radius: 50%;
}

.download-ring-one {
  width: 500px;
  height: 500px;
}

.download-ring-two {
  width: 360px;
  height: 360px;
}

.download-logo-card {
  position: relative;
  z-index: 3;
  width: min(390px, 88vw);
  padding: 38px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at top,
      rgba(212, 175, 55, 0.17),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(22, 31, 52, 0.98),
      rgba(8, 13, 23, 0.99)
    );
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.5),
    0 0 55px rgba(212, 175, 55, 0.1);
  animation: downloadCardFloat 5.5s ease-in-out infinite;
}

.download-logo-card img {
  width: 145px;
  height: 145px;
  margin: 0 auto;
  object-fit: contain;
}

.download-logo-card > p {
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.download-logo-card h3 {
  margin-top: 7px;
  font-size: 1.65rem;
  line-height: 1.1;
}

.download-game-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 26px;
}

.download-game-icons span {
    position: relative;
    overflow: hidden;

    display: grid;
    place-items: center;

    min-height: 58px;

    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 13px;

    background: rgba(255,255,255,0.03);

    transition:
        transform .30s ease,
        border-color .30s ease,
        box-shadow .30s ease;
}

.download-game-icons span img{
    width:100%;
    height:100%;
    min-height:58px;
    object-fit:cover;
    display:block;

    transition:
        transform .35s ease,
        filter .35s ease;
}

.download-game-icons span::after{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(7,11,20,.55)
        );

    pointer-events:none;
}

.download-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.72rem;
}

.download-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px rgba(246, 215, 107, 0.8);
  animation: statusPulse 1.8s ease-in-out infinite;
}

.download-floating-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  min-width: 165px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(8, 13, 23, 0.9);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.download-floating-badge strong {
  color: var(--gold-light);
  font-size: 0.92rem;
}

.download-floating-badge small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.65rem;
}

.download-badge-one {
  left: -20px;
  top: 105px;
  animation: downloadBadgeOne 5s ease-in-out infinite;
}

.download-badge-two {
  right: -20px;
  bottom: 105px;
  animation: downloadBadgeTwo 5.5s ease-in-out infinite;
}

@keyframes downloadCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes downloadBadgeOne {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-11px) rotate(1deg);
  }
}

@keyframes downloadBadgeTwo {
  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }

  50% {
    transform: translateY(12px) rotate(-1deg);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1080px) {
  .premium-download-card {
    grid-template-columns: 1fr;
  }

  .download-copy {
    text-align: center;
  }

  .download-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .download-platforms,
  .premium-store-buttons {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .premium-download-section {
    padding: 90px 0;
  }

  .premium-download-card {
    padding: 38px 22px;
  }

  .download-visual {
    min-height: 540px;
  }

  .premium-store-buttons {
    flex-direction: column;
  }

  .premium-store-buttons button {
    width: 100%;
  }

  .download-floating-badge {
    min-width: 145px;
  }

  .download-badge-one {
    left: 0;
  }

  .download-badge-two {
    right: 0;
  }
}

@media (max-width: 480px) {
  .download-logo-card {
    padding: 28px 20px;
  }

  .download-logo-card img {
    width: 120px;
    height: 120px;
  }

  .download-game-icons {
    grid-template-columns: repeat(3, 1fr);
  }

  .download-floating-badge {
    display: none;
  }

  .download-visual {
    min-height: 480px;
  }
}

/* ================================
   PREMIUM ABOUT SECTION
================================ */

.premium-about-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #080c16 0%,
      #0d1425 52%,
      #090e19 100%
    );
}

.premium-about-section .container {
  position: relative;
  z-index: 2;
}

.about-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.22;
  pointer-events: none;
}

.about-glow-one {
  width: 420px;
  height: 420px;
  left: -180px;
  top: 120px;
  background: rgba(37, 99, 235, 0.48);
}

.about-glow-two {
  width: 500px;
  height: 500px;
  right: -220px;
  bottom: 20px;
  background: rgba(212, 175, 55, 0.44);
}

.premium-about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.premium-about-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.about-orbit {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.about-orbit-one {
  width: 540px;
  height: 540px;
}

.about-orbit-two {
  width: 390px;
  height: 390px;
}

.about-brand-card {
  position: relative;
  z-index: 3;
  width: min(420px, 90vw);
  padding: 42px 34px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 32px;
  background:
    radial-gradient(
      circle at top,
      rgba(212, 175, 55, 0.16),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(22, 31, 52, 0.98),
      rgba(8, 13, 23, 0.99)
    );
  box-shadow:
    0 35px 85px rgba(0, 0, 0, 0.48),
    0 0 55px rgba(212, 175, 55, 0.1);
  animation: aboutCardFloat 5.8s ease-in-out infinite;
}

.about-brand-card img {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  object-fit: contain;
}

.about-brand-card > p {
  margin-top: 20px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.about-brand-card h2 {
  margin-top: 8px;
  font-size: 1.85rem;
  line-height: 1.1;
}

.about-brand-divider {
  width: 90px;
  height: 2px;
  margin: 24px auto;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold-light),
      transparent
    );
}

.about-brand-card > span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.about-floating-note {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  min-width: 190px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(8, 13, 23, 0.9);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.about-floating-note strong {
  color: var(--gold-light);
  font-size: 0.88rem;
}

.about-floating-note small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.66rem;
}

.about-note-one {
  left: -10px;
  top: 120px;
  animation: aboutNoteOne 5s ease-in-out infinite;
}

.about-note-two {
  right: -10px;
  bottom: 120px;
  animation: aboutNoteTwo 5.5s ease-in-out infinite;
}

.premium-about-content h2 {
  max-width: 720px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.premium-about-content h2 span {
  display: block;
  margin-top: 10px;
  background:
    linear-gradient(
      90deg,
      var(--gold-light),
      var(--gold),
      #ffffff
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.premium-about-content > p {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.about-values-grid article {
  position: relative;
  min-height: 180px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(23, 32, 53, 0.84),
      rgba(9, 14, 25, 0.96)
    );
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.about-values-grid article::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -45px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  filter: blur(8px);
}

.about-values-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.34);
}

.about-values-grid article > span {
  position: relative;
  z-index: 2;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about-values-grid h3 {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  font-size: 1.15rem;
}

.about-values-grid p {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.about-signature > span {
  width: 60px;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--gold-light),
      transparent
    );
}

.about-signature div {
  display: flex;
  flex-direction: column;
}

.about-signature strong {
  font-size: 0.9rem;
}

.about-signature small {
  margin-top: 3px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

@keyframes aboutCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes aboutNoteOne {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-11px) rotate(1deg);
  }
}

@keyframes aboutNoteTwo {
  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }

  50% {
    transform: translateY(12px) rotate(-1deg);
  }
}

@media (max-width: 1100px) {
  .premium-about-layout {
    grid-template-columns: 1fr;
  }

  .premium-about-content {
    text-align: center;
  }

  .premium-about-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-signature {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .premium-about-section {
    padding: 90px 0;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .premium-about-visual {
    min-height: 600px;
  }

  .about-floating-note {
    min-width: 160px;
  }

  .about-note-one {
    left: 0;
  }

  .about-note-two {
    right: 0;
  }
}

@media (max-width: 480px) {
  .about-brand-card {
    padding: 32px 22px;
  }

  .about-brand-card img {
    width: 130px;
    height: 130px;
  }

  .about-floating-note {
    display: none;
  }

  .premium-about-visual {
    min-height: 500px;
  }
}

/* ================================
   PREMIUM RESPONSIBLE GAMING
================================ */

.premium-responsible-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #090e19 0%,
      #0b1020 50%,
      #080c16 100%
    );
}

.premium-responsible-section .container {
  position: relative;
  z-index: 2;
}

.responsible-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.22;
  pointer-events: none;
}

.responsible-glow-one {
  width: 430px;
  height: 430px;
  left: -180px;
  top: 80px;
  background: rgba(37, 99, 235, 0.5);
}

.responsible-glow-two {
  width: 470px;
  height: 470px;
  right: -210px;
  bottom: 20px;
  background: rgba(212, 175, 55, 0.42);
}

.premium-responsible-card {
  display: grid;
  grid-template-columns: auto 1.2fr 0.8fr;
  align-items: center;
  gap: 44px;
  padding: 60px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.12),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(22, 31, 52, 0.96),
      rgba(8, 13, 23, 0.99)
    );
  box-shadow:
    0 35px 85px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.responsible-age-mark {
  display: grid;
  place-items: center;
  width: 124px;
  height: 124px;
  border: 2px solid rgba(212, 175, 55, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(212, 175, 55, 0.16),
      rgba(212, 175, 55, 0.03)
    );
  box-shadow: 0 0 38px rgba(212, 175, 55, 0.1);
}

.responsible-age-mark span {
  color: var(--gold-light);
  font-size: 2rem;
  font-weight: 900;
}

.responsible-age-mark small {
  margin-top: -16px;
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.responsible-copy h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.responsible-copy h2 span {
  display: block;
  margin-top: 9px;
  background:
    linear-gradient(
      90deg,
      var(--gold-light),
      var(--gold),
      #ffffff
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.responsible-copy > p {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.responsible-points {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.responsible-points > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.responsible-points span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.responsible-points p {
  color: #c9d0dd;
  font-size: 0.83rem;
  line-height: 1.6;
}

.responsible-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.responsible-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.responsible-shield {
  position: relative;
  z-index: 3;
  width: min(300px, 80vw);
  min-height: 300px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 34px 34px 70px 70px;
  background:
    radial-gradient(
      circle at top,
      rgba(212, 175, 55, 0.17),
      transparent 40%
    ),
    linear-gradient(
      145deg,
      rgba(21, 30, 50, 0.97),
      rgba(8, 13, 23, 0.99)
    );
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.44),
    0 0 45px rgba(212, 175, 55, 0.09);
  text-align: center;
  animation: responsibleShieldFloat 5.5s ease-in-out infinite;
}

.responsible-shield > span {
  font-size: 4rem;
}

.responsible-shield strong {
  margin-top: 22px;
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0.09em;
}

.responsible-shield small {
  max-width: 190px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.responsible-status {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 205px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(8, 13, 23, 0.9);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.responsible-status > span {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px rgba(246, 215, 107, 0.8);
}

.responsible-status div {
  display: flex;
  flex-direction: column;
}

.responsible-status strong {
  font-size: 0.8rem;
}

.responsible-status small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.63rem;
}

.responsible-status-one {
  left: -25px;
  top: 85px;
  animation: responsibleStatusOne 5s ease-in-out infinite;
}

.responsible-status-two {
  right: -25px;
  bottom: 80px;
  animation: responsibleStatusTwo 5.5s ease-in-out infinite;
}

@keyframes responsibleShieldFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-11px);
  }
}

@keyframes responsibleStatusOne {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes responsibleStatusTwo {
  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }

  50% {
    transform: translateY(11px) rotate(-1deg);
  }
}

@media (max-width: 1120px) {
  .premium-responsible-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .responsible-age-mark {
    margin: 0 auto;
  }

  .responsible-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .responsible-actions {
    justify-content: center;
  }

  .responsible-points {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .premium-responsible-section {
    padding: 90px 0;
  }

  .premium-responsible-card {
    padding: 38px 22px;
  }

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

  .responsible-actions .button {
    width: 100%;
  }

  .responsible-status {
    min-width: 170px;
  }

  .responsible-status-one {
    left: 0;
  }

  .responsible-status-two {
    right: 0;
  }
}

@media (max-width: 480px) {
  .responsible-visual {
    min-height: 380px;
  }

  .responsible-status {
    display: none;
  }

  .responsible-shield {
    width: 100%;
  }
}

/* ================================
   PREMIUM FOOTER
================================ */

.premium-footer {
  position: relative;
  padding: 90px 0 28px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #080c16 0%,
      #060912 100%
    );
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.premium-footer .container {
  position: relative;
  z-index: 2;
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.18;
  pointer-events: none;
}

.footer-glow-one {
  width: 420px;
  height: 420px;
  left: -190px;
  top: 20px;
  background: rgba(37, 99, 235, 0.45);
}

.footer-glow-two {
  width: 460px;
  height: 460px;
  right: -220px;
  bottom: -120px;
  background: rgba(212, 175, 55, 0.38);
}

.premium-footer-top {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 50px;
}

.footer-premium-brand {
  width: fit-content;
}

.footer-brand-column > p {
  max-width: 430px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 28px;
}

.footer-tagline > span {
  width: 52px;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--gold-light),
      transparent
    );
}

.footer-tagline div {
  display: flex;
  flex-direction: column;
}

.footer-tagline strong {
  font-size: 0.9rem;
}

.footer-tagline small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.7rem;
}

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

.footer-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 800;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
}

.footer-links-column h3 {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 1rem;
}

.footer-links-column a {
  display: block;
  width: fit-content;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-links-column a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-responsible-notice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 58px;
  padding: 24px 26px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(20, 28, 46, 0.84),
      rgba(8, 13, 23, 0.94)
    );
}

.footer-age-badge {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(212, 175, 55, 0.38);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 900;
}

.footer-responsible-notice p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-responsible-notice a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-responsible-notice a span {
  transition: transform 0.2s ease;
}

.footer-responsible-notice a:hover span {
  transform: translateX(4px);
}

.premium-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.76rem;
}

.premium-footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-footer-bottom i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

@media (max-width: 1050px) {
  .premium-footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .premium-footer {
    padding-top: 70px;
  }

  .premium-footer-top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand-column {
    grid-column: auto;
  }

  .footer-responsible-notice {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-age-badge {
    margin: 0 auto;
  }

  .footer-responsible-notice a {
    justify-self: center;
  }

  .premium-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ================================
   DOWNLOAD LOGO & ICON POLISH
================================ */

.download-logo-shine {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.download-logo-shine img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-logo-shine::after {
  content: "";
  position: absolute;
  top: -25%;
  left: -75%;
  width: 45%;
  height: 150%;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 239, 170, 0.15),
    rgba(255, 255, 255, 0.75),
    rgba(246, 215, 107, 0.22),
    transparent
  );
  filter: blur(2px);
  pointer-events: none;
  animation: victoryLogoShine 4.8s ease-in-out 0.8s 1 forwards;
}

.download-game-icons span {
  cursor: default;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.download-game-icons span:hover{
    transform:
        translateY(-6px)
        scale(1.08);

    border-color:
        rgba(246,215,107,.85);

    box-shadow:
        0 0 20px rgba(246,215,107,.55),
        0 0 42px rgba(212,175,55,.30),
        0 14px 32px rgba(0,0,0,.40);
}

.download-game-icons span:hover img{
    transform:scale(1.12);

    filter:
        saturate(1.15)
        brightness(1.08);
}

@keyframes victoryLogoShine {
  0% {
    left: -75%;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    left: 135%;
    opacity: 0;
  }
}

@media (max-width: 480px) {
  .download-logo-shine {
    width: 130px;
    height: 130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .download-logo-shine::after {
    display: none;
  }

  .download-game-icons span {
    transition: none;
  }
}

/* ================================
   PREMIUM LEGAL PAGES
================================ */

.legal-hero {
  position: relative;
  padding: 170px 0 95px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(212, 175, 55, 0.14),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #070b14 0%,
      #0b1020 100%
    );
}

.legal-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.22;
  pointer-events: none;
}

.legal-hero-glow-one {
  width: 420px;
  height: 420px;
  left: -180px;
  top: 60px;
  background: rgba(37, 99, 235, 0.5);
}

.legal-hero-glow-two {
  width: 460px;
  height: 460px;
  right: -210px;
  bottom: -80px;
  background: rgba(212, 175, 55, 0.42);
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.legal-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(212, 175, 55, 0.16),
      rgba(212, 175, 55, 0.05)
    );
  font-size: 2.25rem;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(212, 175, 55, 0.08);
}

.legal-hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
  background:
    linear-gradient(
      90deg,
      #ffffff,
      var(--gold-light),
      var(--gold)
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-hero-content > p {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.legal-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #cbd3df;
  font-size: 0.7rem;
  font-weight: 700;
}

.legal-page-section {
  padding: 100px 0 120px;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.07),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #0b1020 0%,
      #080c16 100%
    );
}

.legal-page-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.legal-navigation {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 18px;
}

.legal-navigation-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(22, 31, 52, 0.92),
      rgba(8, 13, 23, 0.98)
    );
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.legal-navigation-card > p {
  margin-bottom: 17px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.legal-navigation-card a {
  display: block;
  padding: 9px 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.legal-navigation-card a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.legal-side-notice {
  padding: 22px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 22px;
  background: rgba(212, 175, 55, 0.055);
}

.legal-side-notice > div {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 900;
}

.legal-side-notice p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.65;
}

.legal-content-card {
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(22, 31, 52, 0.92),
      rgba(8, 13, 23, 0.98)
    );
  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.legal-introduction {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.legal-introduction > span,
.legal-section-heading > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
}

.legal-introduction h2,
.legal-section h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.legal-introduction p,
.legal-section > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.82;
}

.legal-section {
  padding: 42px 0;
  scroll-margin-top: 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.legal-section:last-of-type {
  border-bottom: 0;
}

.legal-section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.legal-section h3 {
  margin-top: 28px;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.legal-section ul {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.legal-section li {
  position: relative;
  padding-left: 24px;
  color: #c8d0de;
  font-size: 0.9rem;
  line-height: 1.75;
}

.legal-section li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.45);
}

.legal-highlight {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 19px;
  background:
    linear-gradient(
      145deg,
      rgba(212, 175, 55, 0.1),
      rgba(212, 175, 55, 0.025)
    );
}

.legal-highlight strong {
  color: var(--gold-light);
  font-size: 0.9rem;
}

.legal-highlight p {
  margin-top: 9px;
  color: #cdd4df;
  font-size: 0.84rem;
  line-height: 1.7;
}

.legal-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 13px;
  background: rgba(212, 175, 55, 0.07);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
}

.legal-inline-link span {
  transition: transform 0.2s ease;
}

.legal-inline-link:hover span {
  transform: translateX(4px);
}

.legal-contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.legal-contact-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.legal-contact-card > div {
  display: flex;
  flex-direction: column;
}

.legal-contact-card strong {
  font-size: 0.9rem;
}

.legal-contact-card div span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.legal-contact-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 800;
}

.legal-disclaimer {
  margin-top: 42px;
  padding: 24px;
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: 20px;
  background: rgba(37, 99, 235, 0.07);
}

.legal-disclaimer strong {
  color: #bfdbfe;
  font-size: 0.9rem;
}

.legal-disclaimer p {
  margin-top: 10px;
  color: #c6cede;
  font-size: 0.82rem;
  line-height: 1.7;
}

.legal-footer {
  padding-top: 32px;
}

.legal-footer .premium-footer-bottom {
  margin-top: 0;
}

.legal-footer .premium-footer-bottom a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.legal-footer .premium-footer-bottom a:hover {
  color: var(--gold-light);
}

@media (max-width: 980px) {
  .legal-page-layout {
    grid-template-columns: 1fr;
  }

  .legal-navigation {
    position: static;
  }

  .legal-navigation-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 18px;
  }

  .legal-navigation-card > p {
    grid-column: 1 / -1;
  }

  .legal-side-notice {
    display: none;
  }
}

@media (max-width: 680px) {
  .legal-hero {
    padding: 140px 0 75px;
  }

  .legal-page-section {
    padding: 70px 0 90px;
  }

  .legal-navigation-card {
    grid-template-columns: 1fr;
  }

  .legal-content-card {
    padding: 28px 20px;
    border-radius: 23px;
  }

  .legal-introduction {
    grid-template-columns: 1fr;
  }

  .legal-section-heading {
    align-items: flex-start;
  }

  .legal-contact-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .legal-contact-card img {
    margin: 0 auto;
  }

  .legal-contact-card > a {
    justify-self: center;
  }

  .legal-footer .premium-footer-bottom > div {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ================================
   RESPONSIBLE GAMING SUPPORT CARDS
================================ */

.responsible-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.responsible-support-card {
  position: relative;
  min-height: 235px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 21px;
  background:
    linear-gradient(
      145deg,
      rgba(23, 32, 53, 0.84),
      rgba(9, 14, 25, 0.96)
    );
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.responsible-support-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
}

.responsible-support-card > span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 900;
}

.responsible-support-card h3 {
  margin-top: 18px;
  color: var(--text);
  font-size: 1rem;
}

.responsible-support-card p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.responsible-support-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 19px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
}

.responsible-support-card a span {
  transition: transform 0.2s ease;
}

.responsible-support-card a:hover span {
  transform: translateX(4px);
}

@media (max-width: 680px) {
  .responsible-support-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   CONTACT PAGE
================================ */

.contact-page-section{
    padding:100px 0 120px;
    background:
        radial-gradient(
            circle at top left,
            rgba(212,175,55,.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #0b1020 0%,
            #080c16 100%
        );
}

.contact-options-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-bottom:42px;
}

.contact-option-card{
    padding:28px 24px;

    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;

    background:
        linear-gradient(
            145deg,
            rgba(23,32,53,.92),
            rgba(10,15,24,.98)
        );

    transition:
        transform .30s ease,
        border-color .30s ease,
        box-shadow .30s ease;
}

.contact-option-card:hover{
    transform:translateY(-8px);

    border-color:rgba(212,175,55,.30);

    box-shadow:
        0 25px 60px rgba(0,0,0,.30);
}

.contact-option-icon{
    display:grid;
    place-items:center;

    width:58px;
    height:58px;

    border-radius:18px;

    background:
        rgba(212,175,55,.08);

    border:1px solid rgba(212,175,55,.18);

    font-size:1.7rem;
}

.contact-option-card span{
    display:block;
    margin-top:18px;

    color:var(--gold);

    font-size:.70rem;
    font-weight:800;

    letter-spacing:.12em;
}

.contact-option-card h2{
    margin-top:10px;
    font-size:1.2rem;
}

.contact-option-card p{
    margin-top:10px;

    color:var(--muted);

    font-size:.88rem;
    line-height:1.7;
}

.contact-main-layout{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:34px;
}

.contact-form-card,
.contact-company-card{

    padding:38px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    background:
        linear-gradient(
            145deg,
            rgba(22,31,52,.92),
            rgba(8,13,23,.98)
        );

    box-shadow:
        0 28px 70px rgba(0,0,0,.32);
}

.contact-form-heading p{
    margin-bottom:10px;
}

.contact-form-heading h2{
    margin-bottom:12px;
}

.contact-form-heading > p:last-child{
    color:var(--muted);
    line-height:1.7;
}

.contact-form{
    margin-top:32px;
}

.contact-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:20px;
}

.form-field{
    display:flex;
    flex-direction:column;
}

.form-field label{

    margin-bottom:8px;

    color:#d6deeb;

    font-size:.82rem;
    font-weight:700;
}

.form-field input,
.form-field select,
.form-field textarea{

    padding:15px 16px;

    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;

    background:#0d1321;

    color:#fff;

    font:inherit;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.form-field textarea{
    resize:vertical;
    min-height:170px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{

    outline:none;

    border-color:rgba(212,175,55,.55);

    box-shadow:
        0 0 0 3px rgba(212,175,55,.12);
}

.contact-consent{

    display:flex;
    align-items:flex-start;
    gap:12px;

    margin:22px 0;

    color:var(--muted);

    font-size:.84rem;
}

.contact-submit{
    width:100%;
    justify-content:center;
}

.contact-company-logo{
    text-align:center;
    margin-bottom:26px;
}

.contact-company-logo img{
    width:140px;
}

.contact-company-details{
    display:grid;
    gap:18px;
    margin:28px 0;
}

.contact-company-details > div{

    display:grid;
    grid-template-columns:40px 1fr;
    gap:14px;
    align-items:start;
}

.contact-company-details span:first-child{
    font-size:1.3rem;
}

.contact-company-details small{

    display:block;

    color:var(--gold);

    font-size:.68rem;

    letter-spacing:.08em;
}

.contact-company-details strong{
    display:block;
    margin-top:4px;
}

.contact-company-links{

    display:flex;
    flex-direction:column;
    gap:12px;

    margin-top:26px;
}

.contact-company-links a{
    color:var(--gold-light);
}

.contact-emergency-notice{

    margin-top:28px;

    padding:20px;

    border-radius:18px;

    background:
        rgba(37,99,235,.08);

    border:1px solid rgba(37,99,235,.18);
}

.contact-emergency-notice strong{
    color:#bfdbfe;
}

.contact-emergency-notice p{
    margin-top:10px;
    color:#d6deeb;
    line-height:1.7;
}

.contact-form-status{
    margin-top:18px;
    text-align:center;
    color:var(--gold-light);
}

@media (max-width:980px){

    .contact-options-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-main-layout{
        grid-template-columns:1fr;
    }
}

@media (max-width:680px){

    .contact-options-grid{
        grid-template-columns:1fr;
    }

    .contact-form-row{
        grid-template-columns:1fr;
    }

    .contact-form-card,
    .contact-company-card{
        padding:26px;
    }
}

.contact-email-link{
    color:var(--gold-light);
    text-decoration:none;
    font-weight:700;
    transition:color .25s ease;
}

.contact-email-link:hover{
    color:#ffffff;
}

/* ================================
   CUSTOM 404 PAGE
================================ */

.error-page {
  min-height: 100vh;
  background: #070b14;
}

.error-page-main {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 50px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(212, 175, 55, 0.14),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #070b14 0%,
      #0b1020 100%
    );
}

.error-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.24;
}

.error-glow-one {
  width: 430px;
  height: 430px;
  left: -170px;
  top: 60px;
  background: rgba(37, 99, 235, 0.52);
}

.error-glow-two {
  width: 470px;
  height: 470px;
  right: -200px;
  bottom: 20px;
  background: rgba(212, 175, 55, 0.45);
}

.error-card {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 55px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 34px;
  background:
    linear-gradient(
      145deg,
      rgba(22, 31, 52, 0.96),
      rgba(8, 13, 23, 0.99)
    );
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.5),
    0 0 55px rgba(212, 175, 55, 0.08);
}

.error-logo-shine {
  position: relative;
  width: 135px;
  height: 135px;
  margin: 0 auto 25px;
  overflow: hidden;
  border-radius: 12px;
}

.error-logo-shine img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.error-logo-shine::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -70%;
  width: 42%;
  height: 145%;
  transform: rotate(18deg);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.78),
      rgba(246, 215, 107, 0.22),
      transparent
    );
  animation: victoryLogoShine 4.8s ease-in-out 0.6s 1 forwards;
}

.error-code {
  margin-top: 10px;
  color: rgba(246, 215, 107, 0.12);
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.error-card h1 {
  margin-top: -12px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

.error-description {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.error-game-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 36px;
}

.error-game-row img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.error-game-row img:hover {
  transform: translateY(-5px) scale(1.04);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.22);
}

.error-footer-note {
  margin-top: 28px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .error-page-main {
    padding: 25px 0;
  }

  .error-card {
    padding: 38px 20px;
  }

  .error-game-row {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .error-actions .button {
    width: 100%;
  }
}
.language-control {
  margin-left: auto;
  position: relative;
  z-index: 5;
}

.language-control select {
  appearance: none;
  min-width: 128px;
  padding: 10px 32px 10px 12px;
  border: 1px solid rgba(245, 188, 55, 0.55);
  border-radius: 999px;
  color: #fff;
  background: #0b1730 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23f5bc37' d='m1 1 5 5 5-5'/%3E%3C/svg%3E") no-repeat right 12px center;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

.language-control select:focus-visible {
  outline: 2px solid #f5bc37;
  outline-offset: 2px;
}

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

@media (max-width: 860px) {
  .language-control { margin-left: auto; }
  .language-control select { min-width: 112px; max-width: 142px; }
}
