:root {
    --bg: #0b1020;
    --bg-soft: #111831;
    --panel: rgba(20, 28, 54, 0.82);
    --panel-solid: #131c36;
    --line: rgba(255,255,255,0.08);
    --text: #eef2ff;
    --muted: #b4bfdc;
    --primary: #7c5cff;
    --primary-2: #28d9ff;
    --success: #20c997;
    --warning: #f6b73c;
    --danger: #ff5d7a;
    --shadow: 0 24px 60px rgba(0,0,0,0.35);
    --radius: 22px;
    --radius-sm: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
      radial-gradient(circle at top left, rgba(124,92,255,0.25), transparent 35%),
      radial-gradient(circle at top right, rgba(40,217,255,0.15), transparent 25%),
      linear-gradient(180deg, #090d18 0%, #0b1020 100%);
    min-height: 100vh;
}

body.ga-home-body {
  background: #050505;
}

body.ga-home-body .ga-home-main {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

body.ga-home-body .ga-hero-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 80;
  background: transparent !important;
}

body.ga-home-body .ga-game-home {
  margin: 0;
  padding: 0;
  width: 100%;
}

body.ga-home-body .ga-game-hero {
  margin-top: 0 !important;
  min-height: 100vh;
  height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { max-width: 760px; margin: 0 auto; }
.narrow-form { width: min(620px, calc(100% - 32px)); margin: 0 auto; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.text-center { text-align: center; }
.small-text { font-size: 0.92rem; color: var(--muted); }

.site-header {
    position: sticky; top: 0; z-index: 20;
    background: rgba(7, 11, 22, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 0; }
.brand { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; }
.brand span { color: var(--primary-2); }
.main-nav { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.main-nav a { color: var(--muted); font-weight: 500; }
.main-nav a:hover { color: var(--text); }
.link-muted { opacity: 0.85; }

.hero { padding: 86px 0 48px; }
.hero-grid, .form-grid, .auth-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: center; }
.hero h1, .inner-hero h1, .auth-copy h1, .page-head h1 { font-size: clamp(2rem, 4vw, 4rem); line-height: 1.04; margin: 0 0 14px; letter-spacing: -0.04em; }
.hero h1 span { background: linear-gradient(90deg, var(--primary), var(--primary-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p, .auth-copy p, .page-head p, .inner-hero p { color: var(--muted); font-size: 1.04rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.hero-actions.center { justify-content: center; }
.eyebrow { display: inline-block; color: var(--primary-2); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.hero-stats, .stats-grid { display: grid; gap: 16px; margin-top: 28px; }
.hero-stats { grid-template-columns: repeat(3, 1fr); }
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.admin-stats-grid { grid-template-columns: repeat(4, 1fr); }
.stat-card, .stat-panel, .info-card, .service-card, .pricing-card, .panel-card, .form-card, .cta-box, .hero-panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.stat-card, .stat-panel { padding: 18px; }
.stat-card strong, .stat-panel strong { display: block; font-size: 1.8rem; margin-bottom: 6px; }
.stat-card span, .stat-panel span { color: var(--muted); }
.glass-card { background: linear-gradient(180deg, rgba(19,28,54,0.9), rgba(13,19,39,0.9)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-panel { padding: 20px; }

.section, .dashboard-section, .auth-section { padding: 48px 0; }
.alt-section { background: rgba(255,255,255,0.02); }
.inner-hero { padding: 72px 0 20px; }
.section-head, .page-head { margin-bottom: 22px; }
.page-head.between { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.card-grid { display: grid; gap: 20px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.info-card, .service-card, .panel-card, .form-card, .pricing-card { padding: 24px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pricing-card.large { padding: 28px; }
.cta-section { padding-bottom: 80px; }
.cta-box { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 28px; }

.btn {
    appearance: none; border: none; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; min-height: 46px; padding: 0 20px;
    border-radius: 14px; font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white; box-shadow: 0 14px 28px rgba(124,92,255,0.35);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 18px 34px rgba(124,92,255,0.28); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.16); box-shadow: none; }
.btn-danger { background: linear-gradient(135deg, #ff5d7a, #ff7b54); }
.btn-sm { min-height: 38px; padding: 0 14px; border-radius: 12px; font-size: 0.92rem; }
.btn-lg { min-height: 52px; padding: 0 22px; }
.full { width: 100%; }

.form-card { padding: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; background: rgba(255,255,255,0.04); color: var(--text);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; min-height: 50px; padding: 14px 16px;
    font: inherit; outline: none;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(40,217,255,0.6); box-shadow: 0 0 0 4px rgba(40,217,255,0.08); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.booking-layout { align-items: start; }
.price-box, .summary-box, .hint-box {
    padding: 18px; border-radius: 16px; background: rgba(255,255,255,0.05); border: 1px solid var(--line);
}
.price-box { display: flex; align-items: center; justify-content: space-between; margin: 14px 0 22px; }
.price-box strong { font-size: 1.6rem; }
.summary-list { display: grid; gap: 12px; }
.summary-list div { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.summary-list span { color: var(--muted); }
.clean-list { padding-left: 18px; color: var(--muted); }
.clean-list li { margin: 10px 0; }
.list-links { display: grid; gap: 12px; }
.list-links a { padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); }
.list-links a:hover { background: rgba(255,255,255,0.08); }

.table-wrap { width: 100%; overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; min-width: 700px; }
.table th, .table td { padding: 14px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.table th { color: #d8def4; font-size: 0.92rem; background: rgba(255,255,255,0.03); }
.table td { color: var(--muted); }
.clean-table { min-width: auto; }
.badge {
    display: inline-flex; align-items: center; justify-content: center; padding: 7px 12px;
    border-radius: 999px; font-size: 0.82rem; font-weight: 700;
}
.badge-warning { background: rgba(246,183,60,0.18); color: #ffd574; }
.badge-success { background: rgba(32,201,151,0.16); color: #66f2c7; }
.badge-danger { background: rgba(255,93,122,0.14); color: #ff93a8; }
.badge-neutral { background: rgba(255,255,255,0.08); color: #fff; }

.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
    padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line);
    background: rgba(255,255,255,0.04); color: var(--muted); font-weight: 600;
}
.pill.active, .pill:hover { color: var(--text); background: rgba(124,92,255,0.18); border-color: rgba(124,92,255,0.4); }
.inline-search { display: flex; gap: 10px; align-items: center; }
.inline-search.two-fields { flex-wrap: wrap; }
.inline-search input, .inline-search select {
    min-height: 42px; border-radius: 12px; border: 1px solid var(--line);
    background: rgba(255,255,255,0.05); color: var(--text); padding: 0 14px;
}

.ga-toast-stack {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10050;
  width: min(420px, calc(100vw - 32px));
  display: grid;
  gap: 14px;
  pointer-events: none;
}

.ga-toast {
  position: relative;
  overflow: hidden;
  min-height: 76px;
  padding: 16px 46px 16px 16px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 18px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(18, 18, 18, 0.96), rgba(34, 20, 6, 0.96)),
    radial-gradient(circle at top left, rgba(255, 163, 26, 0.28), transparent 36%);
  border: 1px solid rgba(255, 163, 26, 0.45);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(255, 163, 26, 0.18);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  animation: gaToastIn 0.42s cubic-bezier(.2, .9, .2, 1) both;
}

.ga-toast::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-100%);
  animation: gaToastShine 1.7s ease 0.25s;
  pointer-events: none;
}

.ga-toast-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #080808;
  background: #ffa31a;
  box-shadow: 0 0 24px rgba(255, 163, 26, 0.55);
  font-size: 18px;
}

.ga-toast-body strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.ga-toast-body span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.ga-toast-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;
}

.ga-toast-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.ga-toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #ffa31a, #ffffff);
  transform-origin: left;
  animation: gaToastProgress 4.8s linear forwards;
}

.ga-toast-success {
  border-color: rgba(32, 201, 151, 0.52);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.48),
    0 0 30px rgba(32, 201, 151, 0.20);
}

.ga-toast-success .ga-toast-icon {
  background: #20c997;
  box-shadow: 0 0 24px rgba(32, 201, 151, 0.48);
}

.ga-toast-danger,
.ga-toast-error {
  border-color: rgba(255, 93, 122, 0.58);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.48),
    0 0 30px rgba(255, 93, 122, 0.20);
}

.ga-toast-danger .ga-toast-icon,
.ga-toast-error .ga-toast-icon {
  background: #ff5d7a;
  color: #ffffff;
  box-shadow: 0 0 24px rgba(255, 93, 122, 0.48);
}

.ga-toast-warning {
  border-color: rgba(246, 183, 60, 0.58);
}

.ga-toast-warning .ga-toast-icon {
  background: #f6b73c;
  color: #090909;
}

.ga-toast.is-hiding {
  animation: gaToastOut 0.32s ease forwards;
}

@keyframes gaToastIn {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes gaToastOut {
  to {
    opacity: 0;
    transform: translateX(28px) scale(0.96);
  }
}

@keyframes gaToastProgress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

@keyframes gaToastShine {
  to {
    transform: translateX(100%);
  }
}

@media (max-width: 560px) {
  .ga-toast-stack {
    top: 14px;
    right: 14px;
    left: 14px;
    width: auto;
  }

  .ga-toast {
    min-height: 70px;
    padding: 14px 42px 14px 14px;
    grid-template-columns: 38px 1fr;
  }

  .ga-toast-icon {
    width: 38px;
    height: 38px;
  }
}

.site-footer { margin-top: 40px; border-top: 1px solid var(--line); padding: 28px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
.footer-grid h3, .footer-grid h4 { margin-top: 0; }
.footer-grid p, .footer-grid a { color: var(--muted); display: block; margin-bottom: 8px; }
.footer-bottom { color: var(--muted); border-top: 1px solid var(--line); margin-top: 18px; padding-top: 16px; }

.empty-state {
    padding: 28px; text-align: center; border-radius: 18px; background: rgba(255,255,255,0.04); color: var(--muted);
}
.booking-modal {
    position: fixed; inset: 0; display: none; align-items: center; justify-content: center;
    background: rgba(4,8,16,0.72); backdrop-filter: blur(10px); padding: 20px; z-index: 50;
}
.booking-modal.show { display: flex; }
.booking-modal-card {
    position: relative; width: min(540px, 100%); text-align: center; padding: 30px;
    border-radius: 28px; background: linear-gradient(180deg, #121a33, #0f162b); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.booking-modal-card img { width: 180px; margin: 0 auto 14px; }
.booking-modal-card h3 { font-size: 2rem; margin-bottom: 8px; }
.booking-modal-card p { color: var(--muted); }
.modal-meta { font-weight: 700; color: var(--text) !important; }
.modal-close {
    position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid var(--line); background: rgba(255,255,255,0.06); color: var(--text); cursor: pointer; font-size: 1.4rem;
}

@media (max-width: 980px) {
    .hero-grid, .form-grid, .auth-grid, .card-grid.two, .card-grid.three, .pricing-grid, .footer-grid, .grid-2, .stats-grid, .admin-stats-grid {
        grid-template-columns: 1fr;
    }
    .page-head.between, .cta-box, .nav-row { flex-direction: column; align-items: flex-start; }
    .hero-stats { grid-template-columns: 1fr; }
    .main-nav { width: 100%; }
}
@media (max-width: 640px) {
    .container { width: min(100% - 20px, 1180px); }
    .hero, .section, .dashboard-section, .auth-section { padding: 34px 0; }
    .form-card, .panel-card, .pricing-card, .info-card, .service-card { padding: 18px; }
    .main-nav { gap: 12px; }
}

/* Mongo/Razorpay upgrade additions */
.nav-toggle{display:none;background:rgba(255,255,255,.08);border:1px solid var(--line);color:var(--text);border-radius:12px;min-height:40px;padding:0 13px;font-size:1.2rem}
.role-chip{padding:8px 12px;border-radius:999px;background:rgba(40,217,255,.12);color:#9beeff;font-weight:800;font-size:.82rem;border:1px solid rgba(40,217,255,.22)}
.hero-img{width:100%;max-height:360px;object-fit:contain}.owner-card img{width:160px;height:160px;object-fit:cover;border-radius:24px;border:1px solid var(--line);margin-bottom:16px}.check-row{display:flex;align-items:center;gap:10px;color:var(--muted);font-weight:700}.check-row input{width:auto}.offer-modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(4,8,16,.72);backdrop-filter:blur(12px);z-index:70;padding:18px}.offer-modal.show{display:flex}.offer-card{width:min(560px,100%);position:relative;background:linear-gradient(180deg,#121a33,#0e152a);border:1px solid var(--line);box-shadow:var(--shadow);border-radius:28px;padding:24px;text-align:center}.offer-card img{width:100%;max-height:260px;object-fit:cover;border-radius:20px;margin-bottom:16px}.chart-bars{display:grid;gap:14px}.bar-row{display:grid;grid-template-columns:120px 1fr 80px;align-items:center;gap:12px;color:var(--muted)}.bar-row div{height:12px;background:rgba(255,255,255,.06);border-radius:999px;overflow:hidden}.bar-row i{display:block;height:100%;background:linear-gradient(90deg,var(--primary),var(--primary-2));border-radius:999px}.bar-row b{color:var(--text);text-align:right}.admin-header .main-nav{gap:10px}.admin-header .main-nav a{font-size:.92rem}.form-group input[type=file]{padding:12px;height:auto;background:rgba(255,255,255,.05)}
@media(max-width:980px){.nav-toggle{display:inline-flex;align-items:center;justify-content:center}.main-nav{display:none;flex-direction:column;align-items:stretch}.main-nav.open{display:flex}.main-nav a,.role-chip{width:100%}.bar-row{grid-template-columns:1fr}.bar-row b{text-align:left}.inline-search{align-items:stretch}.inline-search input,.inline-search select,.inline-search button{width:100%}}
@media(max-width:640px){.table{min-width:780px}.hero h1,.inner-hero h1,.auth-copy h1,.page-head h1{letter-spacing:-.025em}.btn{width:100%}.hero-actions .btn{width:100%}.price-box{align-items:flex-start;flex-direction:column}.stats-grid{grid-template-columns:1fr!important}}


/* =========================================================
   GAME ADDA FULLSCREEN HOME HERO - CLEAN FINAL
   Reference style: full-screen gaming slider with compact header
   Keeps existing project content, logo, nav links, slider images and dots
   ========================================================= */

body {
  overflow-x: hidden;
}

body:has(.ga-game-home) {
  margin: 0;
  background: #080808;
  color: #ffffff;
  overflow-x: hidden;
}

/* Home page is full-bleed. Other pages keep normal container layout. */
body:has(.ga-game-home) main,
body:has(.ga-game-home) .main,
body:has(.ga-game-home) .page-content,
body:has(.ga-game-home) .container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Hide the generic navbar only on the home hero page if base.html still includes it. */
body:has(.ga-game-home) .ga-pill-header,
body:has(.ga-game-home) .site-header.public-header:not(.ga-hero-header) {
  display: none !important;
}

/* ---------- first-visit/splash loader ---------- */

.ga-loader,
.ga-home-reveal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top left, rgba(255, 163, 26, 0.24), transparent 34%),
    radial-gradient(circle at bottom right, rgba(40, 217, 255, 0.16), transparent 34%),
    #050505;
  transition: transform 0.85s cubic-bezier(.76, 0, .24, 1), opacity 0.35s ease;
}

.ga-loader.hidden,
.ga-home-reveal.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.ga-loader.skip,
.ga-home-reveal.skip {
  display: none;
}

.ga-loader-inner,
.ga-home-reveal-inner {
  text-align: center;
  color: #ffffff;
  padding: 24px;
}

.ga-loader-logo,
.ga-home-reveal-logo img {
  width: min(220px, 62vw);
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.7));
  opacity: 1;
}

.ga-home-reveal-logo {
  position: relative;
  z-index: 2;
}

.ga-home-reveal-logo::before {
  content: "";
  position: absolute;
  inset: -18px -26px;
  z-index: -1;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(14px);
}

.ga-loader-brand {
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(34px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.ga-loader-brand span,
.ga-home-reveal-logo i {
  color: #ffa31a;
}

.ga-loader-line {
  width: 180px;
  height: 3px;
  margin: 22px auto 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ffa31a, #ffffff, transparent);
  animation: gaLoaderLine 1.1s ease-in-out infinite;
}

.ga-loader p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

@keyframes gaLoaderLine {
  0%, 100% { transform: scaleX(.35); opacity: .45; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* ---------- overlay header ---------- */

.ga-hero-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: clamp(18px, 3.2vh, 30px) 10.6vw 18px;
  color: #ffffff;
  background: #050505;
}

.ga-hero-topbar {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.ga-hero-socials {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.25vw, 18px);
}

.ga-hero-socials a {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1;
  opacity: 0.96;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.ga-hero-socials a:hover {
  color: #ffa31a;
  transform: translateY(-2px);
  opacity: 1;
}

.ga-hero-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  min-width: 0;
}

.ga-hero-logo-img {
  display: block;
  max-width: clamp(92px, 8vw, 138px);
  max-height: clamp(48px, 7vh, 68px);
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.65)) !important;
  opacity: 1 !important;
}

.ga-hero-logo-mark,
.ga-hero-logo-text {
  color: #ffffff !important;
}

.ga-hero-logo-mark {
  width: 44px;
  height: 44px;
  border: 3px solid #ffffff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffa31a !important;
  font-size: 20px;
  transform: rotate(-8deg);
}

.ga-hero-logo-text {
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: 24px;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.ga-hero-auth-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ga-hero-auth-btn {
  min-width: 82px;
  height: 38px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffa31a;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  font-family: Arial, Helvetica, sans-serif;
  border: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ga-hero-auth-left {
  border-radius: 999px 0 0 999px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.ga-hero-auth-right {
  border-radius: 0 999px 999px 0;
}

.ga-hero-auth-btn:hover {
  background: #ff7a00;
  color: #ffffff;
  transform: translateY(-1px);
}

.ga-hero-mainnav {
  margin-top: clamp(22px, 3.4vh, 34px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.6vw, 46px);
  flex-wrap: wrap;
}

.ga-hero-mainnav a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
  transition: color 0.2s ease, transform 0.2s ease;
}

.ga-hero-mainnav a:hover {
  color: #ffa31a;
  transform: translateY(-2px);
}

.ga-hero-menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.34);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

/* ---------- full-screen slider hero ---------- */

.ga-game-home {
  width: 100%;
  background: #090909;
  color: #ffffff;
}

.ga-game-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #080808;
}

.ga-game-hero-slider,
.ga-game-hero-slide,
.ga-game-hero-bg {
  position: absolute;
  inset: 0;
}

.ga-game-hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.ga-game-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.ga-game-hero-bg {
  z-index: 1;
}

.ga-game-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.015);
}

.ga-game-fallback-slide {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 163, 26, 0.26), transparent 30%),
    linear-gradient(135deg, #1d1108 0%, #0b0908 48%, #000 100%);
}

.ga-game-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.58) 34%, rgba(0, 0, 0, 0.30) 66%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.13) 46%, rgba(0, 0, 0, 0.56) 100%);
}

.ga-game-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 10%, rgba(255, 180, 83, 0.22), transparent 27%),
    radial-gradient(circle at 8% 60%, rgba(255, 120, 0, 0.11), transparent 30%);
}

.ga-game-hero-content {
  position: relative;
  z-index: 5;
  width: min(760px, 90vw);
  height: 100%;
  padding-left: 10.6vw;
  padding-top: clamp(220px, 34vh, 320px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ga-game-hero-title {
  margin: 0;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(54px, 5.45vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.46);
}

.ga-game-hero-title span {
  display: block;
}

.ga-game-title-white {
  color: #ffffff;
}

.ga-game-title-orange {
  color: #ffa31a;
}

.ga-game-hero-text {
  max-width: 640px;
  margin: clamp(18px, 3vh, 28px) 0 0;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 1.12vw, 18px);
  line-height: 1.55;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.ga-game-hero-actions {
  margin-top: clamp(26px, 4vh, 42px);
  display: flex;
  align-items: center;
  gap: clamp(34px, 4vw, 58px);
  flex-wrap: wrap;
}

.ga-game-hero-link {
  min-width: 150px;
  padding-bottom: 13px;
  color: #ffa31a;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 900;
  line-height: 1;
  border-bottom: 2px solid #ffa31a;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ga-game-hero-link:hover {
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.ga-game-slider-dots {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: clamp(24px, 4vh, 42px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
}

.ga-game-dot {
  width: 17px;
  height: 17px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ga-game-dot.is-active,
.ga-game-dot.active {
  background: #ffffff;
}

.ga-game-dot:hover {
  transform: scale(1.1);
}

/* ---------- below-home sections ---------- */

.ga-game-section {
  position: relative;
  padding: 80px 10.6vw;
  background: #0c0c0c;
  color: #ffffff;
}

.ga-game-section:nth-of-type(odd) {
  background: #111111;
}

.ga-game-section-head {
  max-width: 900px;
  margin-bottom: 38px;
}

.ga-game-section-head span,
.ga-game-final-cta-inner span,
.ga-game-offer-body span {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffa31a;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.ga-game-section-head h2,
.ga-game-final-cta-inner h2 {
  margin: 0;
  max-width: 920px;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(40px, 4.2vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.ga-game-section-head p,
.ga-game-final-cta-inner p {
  margin: 20px 0 0;
  max-width: 740px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.ga-game-card-grid,
.ga-game-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ga-game-card,
.ga-game-offer-card {
  overflow: hidden;
  border-radius: 20px;
  background: #171717;
  border: 1px solid rgba(255, 163, 26, 0.18);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.ga-game-card-media,
.ga-game-offer-media {
  height: 245px;
  background: #050505;
  overflow: hidden;
}

.ga-game-card-media img,
.ga-game-offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ga-game-card:hover .ga-game-card-media img {
  transform: scale(1.06);
}

.ga-game-card-media img {
  transition: transform 0.35s ease;
}

.ga-game-card-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 163, 26, 0.28), transparent 36%),
    #090909;
  color: #ffa31a;
  font-size: 60px;
}

.ga-game-card-body,
.ga-game-offer-body {
  padding: 24px;
}

.ga-game-card-body h3,
.ga-game-offer-body h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.ga-game-card-body p,
.ga-game-offer-body p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.ga-game-card-body a {
  color: #ffa31a;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ga-game-card-body a:hover {
  color: #ffffff;
}


/* ---------- adventure story section ---------- */

.ga-adventure-section {
  position: relative;
  width: 100%;
  padding: clamp(76px, 9vw, 130px) 10.6vw;
  background: #f4f4f4;
  color: #292929;
  overflow: hidden;
}

.ga-adventure-wrap {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(52px, 6vw, 96px);
}

.ga-adventure-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.43 / 1;
  overflow: hidden;
  background: #dedede;
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.22);
}

.ga-adventure-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ga-adventure-content {
  max-width: 740px;
}

.ga-adventure-content h2 {
  margin: 0 0 42px;
  text-transform: uppercase;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(48px, 5.2vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: #292929;
}

.ga-adventure-content h2 span,
.ga-adventure-content h2 strong {
  display: block;
}

.ga-adventure-content h2 strong {
  color: #ffa31a;
  font-style: normal;
}

.ga-adventure-content p {
  margin: 0;
  max-width: 850px;
  color: #2f3945;
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.75;
  font-weight: 500;
}

.ga-adventure-actions {
  margin-top: clamp(44px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: clamp(40px, 4.8vw, 70px);
  flex-wrap: wrap;
}

.ga-adventure-actions a {
  min-width: 172px;
  padding-bottom: 20px;
  color: #ffa31a;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 1.05vw, 20px);
  font-weight: 900;
  line-height: 1;
  border-bottom: 2px solid #ffa31a;
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.ga-adventure-actions a:hover {
  color: #292929;
  border-color: #292929;
  transform: translateY(-2px);
}

.ga-game-final-cta {
  padding: 80px 10.6vw;
  background:
    radial-gradient(circle at 70% 10%, rgba(255, 163, 26, 0.2), transparent 28%),
    linear-gradient(135deg, #18100a 0%, #050505 70%);
  color: #ffffff;
}

.ga-game-final-cta-inner {
  max-width: 1050px;
}

.ga-game-final-actions {
  margin-top: 32px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ga-game-final-actions a {
  min-width: 158px;
  height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  background: #ffa31a;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ga-game-final-actions a:hover {
  background: #ff7a00;
  color: #ffffff;
}

.ga-game-empty {
  padding: 32px;
  border-radius: 18px;
  background: #171717;
  border: 1px solid rgba(255, 163, 26, 0.18);
}

.ga-game-empty h3 {
  margin: 0 0 8px;
  color: #ffffff;
}

.ga-game-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- responsive ---------- */

@media (max-width: 1280px) {
  .ga-hero-header {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .ga-game-section,
  .ga-game-final-cta {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .ga-game-hero-content {
    padding-left: 7vw;
  }

  .ga-game-section,
  .ga-game-final-cta,
  .ga-adventure-section {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .ga-hero-mainnav {
    gap: 24px;
  }

  .ga-hero-mainnav a {
    font-size: 15px;
  }

  .ga-game-card-grid,
  .ga-game-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .ga-hero-header {
    padding: 20px 20px 0;
  }

  .ga-hero-topbar {
    grid-template-columns: 1fr auto auto;
  }

  .ga-hero-socials {
    display: none;
  }

  .ga-hero-brand {
    justify-content: flex-start;
  }

  .ga-hero-logo-img {
    max-width: 125px;
    max-height: 58px;
  }

  .ga-hero-auth-actions {
    display: none;
  }

  .ga-hero-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ga-hero-mainnav {
    display: none;
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 163, 26, 0.24);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .ga-hero-mainnav.is-open {
    display: flex;
  }

  .ga-hero-mainnav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 15px;
  }

  .ga-game-hero {
    height: auto;
    min-height: 760px;
    max-height: none;
  }

  .ga-game-hero-content {
    min-height: 760px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 200px;
    width: min(760px, 100%);
  }

  .ga-game-hero-title {
    font-size: clamp(50px, 11vw, 86px);
  }

  .ga-game-hero-text {
    font-size: 16.5px;
    line-height: 1.6;
  }

  .ga-game-hero-actions {
    gap: 28px;
  }

  .ga-game-hero-link {
    min-width: 145px;
    font-size: 15px;
  }

  .ga-game-section,
  .ga-game-final-cta {
    padding: 66px 24px;
  }
}

@media (max-width: 640px) {
  .ga-game-hero {
    min-height: 740px;
  }

  .ga-game-hero-content {
    min-height: 740px;
    padding-top: 170px;
  }

  .ga-game-hero-title {
    font-size: clamp(42px, 13.5vw, 68px);
    letter-spacing: -0.045em;
  }

  .ga-game-hero-text {
    font-size: 15px;
  }

  .ga-game-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .ga-game-slider-dots {
    bottom: 24px;
  }

  .ga-game-dot {
    width: 16px;
    height: 16px;
  }

  .ga-game-card-grid,
  .ga-game-offer-grid {
    grid-template-columns: 1fr;
  }

  .ga-game-section-head h2,
  .ga-game-final-cta-inner h2 {
    font-size: clamp(36px, 11vw, 56px);
  }
}

/* =========================================================
   COMPACT PILL NAVBAR FOR NON-HOME PAGES
   Used on admin/customer/internal pages when templates/partials/nav.html is active
   ========================================================= */

.ga-pill-header {
  position: relative;
  z-index: 80;
  width: 100%;
  padding: 20px 42px;
  background: #151110;
}

.ga-pill-navbar {
  width: 100%;
  min-height: 82px;
  background: #fff4dc;
  border: 0;
  border-radius: 46px;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 130px;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 20px;
  box-shadow: none;
}

.ga-pill-brand {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ga-pill-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%);
}

.ga-pill-logo-fallback {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #151110;
  color: #fff4dc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ga-pill-nav-links {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 18px);
  flex-wrap: nowrap;
}

.ga-pill-nav-links a {
  color: #151110;
  text-decoration: none;
  white-space: nowrap;
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.04em;
  padding: 9px 0;
  transition: opacity 0.2s ease;
}

.ga-pill-nav-links a:hover {
  opacity: 0.72;
}

.ga-pill-nav-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ga-pill-nav-action a {
  min-width: 118px;
  height: 58px;
  border-radius: 34px;
  background: #151110;
  color: #fff4dc;
  border: 2px solid rgba(255, 244, 220, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ga-pill-nav-action a:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.ga-pill-nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: #151110;
  color: #fff4dc;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

/* Admin/superadmin have many links, so make them fit without becoming tiny. */
body:has(.ga-pill-nav-links a[href*="landing-media"]) .ga-pill-navbar,
body:has(.ga-pill-nav-links a[href*="users"]) .ga-pill-navbar,
body:has(.ga-pill-nav-links a[href*="content"]) .ga-pill-navbar {
  grid-template-columns: 106px minmax(0, 1fr) 106px;
  padding-left: 18px;
}

body:has(.ga-pill-nav-links a[href*="landing-media"]) .ga-pill-brand,
body:has(.ga-pill-nav-links a[href*="users"]) .ga-pill-brand,
body:has(.ga-pill-nav-links a[href*="content"]) .ga-pill-brand {
  width: 58px;
  height: 58px;
}

body:has(.ga-pill-nav-links a[href*="landing-media"]) .ga-pill-logo-img,
body:has(.ga-pill-nav-links a[href*="users"]) .ga-pill-logo-img,
body:has(.ga-pill-nav-links a[href*="content"]) .ga-pill-logo-img {
  width: 50px;
  height: 50px;
}

body:has(.ga-pill-nav-links a[href*="landing-media"]) .ga-pill-nav-links,
body:has(.ga-pill-nav-links a[href*="users"]) .ga-pill-nav-links,
body:has(.ga-pill-nav-links a[href*="content"]) .ga-pill-nav-links {
  gap: clamp(8px, 0.72vw, 14px);
}

body:has(.ga-pill-nav-links a[href*="landing-media"]) .ga-pill-nav-links a,
body:has(.ga-pill-nav-links a[href*="users"]) .ga-pill-nav-links a,
body:has(.ga-pill-nav-links a[href*="content"]) .ga-pill-nav-links a {
  font-size: clamp(12px, 0.78vw, 15px);
}

body:has(.ga-pill-nav-links a[href*="landing-media"]) .ga-pill-nav-action a,
body:has(.ga-pill-nav-links a[href*="users"]) .ga-pill-nav-action a,
body:has(.ga-pill-nav-links a[href*="content"]) .ga-pill-nav-action a {
  min-width: 100px;
  height: 54px;
  font-size: 15px;
}

@media (max-width: 1280px) {
  .ga-pill-header {
    padding: 16px 24px;
  }

  .ga-pill-navbar {
    min-height: 72px;
    grid-template-columns: 96px minmax(0, 1fr) 102px;
  }

  .ga-pill-brand {
    width: 52px;
    height: 52px;
  }

  .ga-pill-logo-img,
  .ga-pill-logo-fallback {
    width: 46px;
    height: 46px;
  }

  .ga-pill-nav-links {
    gap: 9px;
  }

  .ga-pill-nav-links a {
    font-size: 13px;
  }

  .ga-pill-nav-action a {
    min-width: 96px;
    height: 50px;
    font-size: 14px;
  }
}

@media (max-width: 1050px) {
  .ga-pill-header {
    padding: 16px 14px;
  }

  .ga-pill-navbar {
    position: relative;
    grid-template-columns: auto auto;
    min-height: 76px;
    border-radius: 38px;
    padding: 10px 12px 10px 18px;
  }

  .ga-pill-brand {
    width: 58px;
    height: 58px;
  }

  .ga-pill-logo-img,
  .ga-pill-logo-fallback {
    width: 52px;
    height: 52px;
  }

  .ga-pill-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .ga-pill-nav-action {
    display: none;
  }

  .ga-pill-nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 100;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 18px;
    background: #fff4dc;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }

  .ga-pill-nav-links.is-open {
    display: flex;
  }

  .ga-pill-nav-links a,
  body:has(.ga-pill-nav-links a[href*="landing-media"]) .ga-pill-nav-links a,
  body:has(.ga-pill-nav-links a[href*="users"]) .ga-pill-nav-links a,
  body:has(.ga-pill-nav-links a[href*="content"]) .ga-pill-nav-links a {
    font-size: 18px;
    padding: 14px 18px;
    border-radius: 18px;
  }

  .ga-pill-nav-links a:hover {
    background: rgba(21, 17, 16, 0.08);
    opacity: 1;
  }
}


/* =========================================================
   GAME ADDA DESIGNER FOOTER - MATCHED REFERENCE
   ========================================================= */

.ga-designer-footer {
    --ga-orange: #ff5a14;
    --ga-black: #080808;

    position: relative;
    width: 100%;
    min-height: 960px;
    overflow: hidden;
    background: var(--ga-orange);
    color: var(--ga-black);
    margin: 0;
    padding: 0;
    isolation: isolate;
}

/* ================= TOP ART AREA ================= */

.ga-footer-art {
    position: relative;
    width: 100%;
    height: 590px;
    background: var(--ga-black);
    overflow: hidden;
    z-index: 1;
}

.ga-footer-art::before {
    content: "";
    position: absolute;
    left: -3%;
    right: -3%;
    bottom: -1px;
    height: 300px;
    background: var(--ga-orange);
    clip-path: polygon(
        0 56%,
        4% 38%,
        9% 54%,
        14% 36%,
        20% 52%,
        27% 43%,
        34% 56%,
        40% 39%,
        47% 53%,
        53% 42%,
        60% 57%,
        67% 44%,
        73% 55%,
        80% 37%,
        87% 52%,
        93% 39%,
        100% 54%,
        100% 100%,
        0 100%
    );
    z-index: 1;
}

.ga-art-wave {
    position: absolute;
    background: var(--ga-orange);
    z-index: 2;
}

.ga-art-wave-left {
    left: -120px;
    bottom: 72px;
    width: 575px;
    height: 330px;
    border-radius: 58% 42% 44% 56%;
    transform: rotate(7deg);
}

.ga-art-wave-left::before {
    content: "";
    position: absolute;
    left: 120px;
    top: -48px;
    width: 205px;
    height: 205px;
    border-radius: 50%;
    background: var(--ga-black);
}

.ga-art-wave-left::after {
    content: "";
    position: absolute;
    right: 72px;
    top: 92px;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background: var(--ga-black);
}

.ga-art-wave-right {
    right: -120px;
    bottom: 82px;
    width: 500px;
    height: 335px;
    border-radius: 45% 55% 60% 40%;
    transform: rotate(-10deg);
}

.ga-art-wave-right::before {
    content: "";
    position: absolute;
    left: 68px;
    top: -50px;
    width: 205px;
    height: 205px;
    border-radius: 50%;
    background: var(--ga-black);
}

.ga-art-wave-right::after {
    content: "";
    position: absolute;
    right: 30px;
    top: 115px;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background: var(--ga-black);
}

.ga-art-mask {
    position: absolute;
    left: 50%;
    bottom: 45px;
    width: 560px;
    height: 220px;
    transform: translateX(-50%);
    background: var(--ga-orange);
    border-radius: 50% 50% 16% 16%;
    z-index: 3;
}

.ga-art-mask::before,
.ga-art-mask::after {
    content: "";
    position: absolute;
    top: -44px;
    width: 178px;
    height: 128px;
    background: var(--ga-orange);
    border-radius: 55% 45% 50% 50%;
}

.ga-art-mask::before {
    left: 54px;
    transform: rotate(-25deg);
}

.ga-art-mask::after {
    right: 54px;
    transform: rotate(25deg);
}

.ga-art-face {
    position: absolute;
    left: 50%;
    bottom: 105px;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--ga-black);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 68px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 40px;
    pointer-events: none;
}

/* Flame shapes replacing the wrong music icons */
.ga-art-flame {
    position: absolute;
    z-index: 5;
    background: var(--ga-orange);
    pointer-events: none;
}

.ga-art-flame::before,
.ga-art-flame::after {
    content: "";
    position: absolute;
    background: var(--ga-black);
    border-radius: 50%;
}

/* center-left tall flame */
.ga-flame-1 {
    left: 36%;
    top: 190px;
    width: 115px;
    height: 235px;
    border-radius: 70% 30% 62% 38% / 60% 42% 58% 40%;
    transform: rotate(12deg);
}

.ga-flame-1::before {
    width: 86px;
    height: 138px;
    left: 43px;
    top: -8px;
}

.ga-flame-1::after {
    width: 62px;
    height: 120px;
    left: -16px;
    bottom: 10px;
}

/* middle raised flame */
.ga-flame-2 {
    left: 43.5%;
    top: 145px;
    width: 132px;
    height: 255px;
    border-radius: 67% 33% 60% 40% / 64% 40% 60% 36%;
    transform: rotate(-18deg);
}

.ga-flame-2::before {
    width: 92px;
    height: 150px;
    right: -18px;
    top: 6px;
}

.ga-flame-2::after {
    width: 62px;
    height: 120px;
    left: -15px;
    bottom: 12px;
}

/* center outlined-looking flame stem area */
.ga-flame-3 {
    left: 56%;
    top: 150px;
    width: 120px;
    height: 250px;
    border-radius: 65% 35% 58% 42% / 58% 42% 58% 42%;
    transform: rotate(18deg);
}

.ga-flame-3::before {
    width: 78px;
    height: 145px;
    left: 45px;
    top: -2px;
}

.ga-flame-3::after {
    width: 64px;
    height: 130px;
    left: -12px;
    bottom: 18px;
}

/* right mid flame */
.ga-flame-4 {
    right: 25%;
    top: 245px;
    width: 120px;
    height: 230px;
    border-radius: 72% 28% 62% 38% / 62% 42% 58% 38%;
    transform: rotate(19deg);
}

.ga-flame-4::before {
    width: 82px;
    height: 145px;
    left: 43px;
    top: -4px;
}

.ga-flame-4::after {
    width: 65px;
    height: 125px;
    left: -14px;
    bottom: 15px;
}

/* far-right big flame */
.ga-flame-5 {
    right: 3%;
    top: 145px;
    width: 175px;
    height: 385px;
    border-radius: 70% 30% 64% 36% / 60% 42% 58% 40%;
    transform: rotate(-20deg);
}

.ga-flame-5::before {
    width: 126px;
    height: 210px;
    left: 72px;
    top: 20px;
}

.ga-flame-5::after {
    width: 92px;
    height: 180px;
    left: -22px;
    bottom: 28px;
}

/* ================= CONTENT AREA ================= */

.ga-footer-content {
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: 0.9fr 1.15fr 1.05fr;
    align-items: start;
    gap: 40px;
    width: 100%;
    padding: 22px 38px 385px;
}

.ga-footer-col h3 {
    margin: 0 0 13px;
    color: var(--ga-black);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.65px;
}

.ga-footer-nav a {
    display: block;
    width: max-content;
    margin: 0 0 6px;
    color: var(--ga-black);
    text-decoration: none;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 21px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.35px;
}


.ga-footer-nav {
    margin-left: 10px;
    margin-top: -6px;
}

.ga-footer-nav a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.ga-footer-cta {
    text-align: center;
}

.ga-footer-cta p {
    margin: 27px 0 20px;
    color: var(--ga-black);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.6px;
}

.ga-footer-chat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 64px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--ga-black);
    color: var(--ga-orange);
    text-decoration: none;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.35px;
}

.ga-footer-chat-btn:hover {
    color: var(--ga-orange);
    transform: translateY(-1px);
}

.ga-footer-brand {
    text-align: center;
}

.ga-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 0 25px;
}

.ga-social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background: var(--ga-black);
    color: var(--ga-orange);
    text-decoration: none;
    font-size: 22px;
    line-height: 1;
}



.ga-footer-credit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
    margin: 0 auto;
    padding: 8px 14px;
    border: 1.5px solid rgba(8, 8, 8, 0.88);
    border-radius: 9px;
    color: var(--ga-black);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.ga-footer-credit a {
    color: var(--ga-black);
    text-decoration: none;
    font-weight: 900;
}

.ga-footer-credit a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ga-code-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    color: var(--ga-black);
}
/* ================= BIG BRAND TEXT ================= */

.ga-footer-big-text {
    position: absolute;
    left: 50%;
    bottom: 56px;
    z-index: 3;
    transform: translateX(-50%);
    width: 100%;
    color: var(--ga-black);
    font-family: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(145px, 18.6vw, 355px);
    line-height: 0.78;
    font-weight: 400;
    letter-spacing: -0.052em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}


.ga-footer-bottom-credit {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 7;
    transform: translateX(-50%);
    color: var(--ga-black);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.2px;
    text-align: center;
    white-space: nowrap;
}

.ga-footer-bottom-credit a {
    color: var(--ga-black);
    text-decoration: none;
    font-weight: 900;
}

.ga-footer-bottom-credit a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* hide old footer */
.site-footer {
    display: none !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .ga-designer-footer {
        min-height: 890px;
    }

    .ga-footer-art {
        height: 530px;
    }

    .ga-footer-content {
        grid-template-columns: 0.9fr 1.15fr 1fr;
        gap: 28px;
        padding: 32px 30px 340px;
    }

    .ga-footer-nav a {
        font-size: 20px;
        margin-bottom: 5px;
        line-height: 1.05;
    }

    .ga-footer-nav {
    margin-left: 8px;
    margin-top: -5px;
}

    .ga-footer-cta p {
        font-size: 24px;
    }

    .ga-footer-copy {
        font-size: 24px;
    }

    .ga-footer-credit {
        font-size: 15px;
    }

    .ga-footer-big-text {
        bottom: 52px;
        font-size: clamp(120px, 18vw, 270px);
    }

    .ga-footer-bottom-credit {
        bottom: 17px;
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .ga-designer-footer {
        min-height: auto;
        padding-bottom: 118px;
    }

    .ga-footer-art {
        height: 330px;
    }

    .ga-footer-art::before {
        height: 205px;
    }

    .ga-art-wave-left {
        left: -80px;
        bottom: 58px;
        width: 320px;
        height: 230px;
    }

    .ga-art-wave-right {
        right: -85px;
        bottom: 64px;
        width: 300px;
        height: 230px;
    }

    .ga-art-mask {
        width: 330px;
        height: 168px;
        bottom: 48px;
    }

    .ga-art-face {
        bottom: 100px;
        font-size: 50px;
        letter-spacing: 24px;
    }

.ga-art-flame {
    transform: scale(0.62);
    transform-origin: center;
}

.ga-flame-1 {
    left: 28%;
    top: 115px;
}

.ga-flame-2 {
    left: 40%;
    top: 95px;
}

.ga-flame-3 {
    left: 54%;
    top: 102px;
}

.ga-flame-4 {
    right: 16%;
    top: 140px;
}

.ga-flame-5 {
    right: -7%;
    top: 95px;
}

    .ga-footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 34px 24px 130px;
        text-align: center;
    }

    .ga-footer-nav a {
        width: auto;
        margin-left: auto;
        margin-right: auto;
        font-size: 24px;
    }

    .ga-footer-chat-btn {
        height: 58px;
        min-width: 155px;
        font-size: 18px;
    }

    .ga-footer-credit {
        white-space: normal;
        flex-wrap: wrap;
    }

.ga-footer-big-text {
    left: 50%;
    right: auto;
    bottom: 42px;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-size: clamp(58px, 17vw, 130px);
    line-height: 0.8;
}

.ga-footer-bottom-credit {
    bottom: 16px;
    width: calc(100% - 32px);
    white-space: normal;
    font-size: 12px;
}

}

@media (max-width: 520px) {
    .ga-designer-footer {
        padding-bottom: 88px;
    }

    .ga-footer-art {
        height: 240px;
    }

    .ga-footer-art::before {
        height: 150px;
    }

    .ga-art-wave-left {
        width: 240px;
        height: 175px;
        bottom: 42px;
    }

    .ga-art-wave-right {
        width: 230px;
        height: 170px;
        bottom: 45px;
    }

    .ga-art-mask {
        width: 230px;
        height: 126px;
        bottom: 34px;
    }

    .ga-art-face {
        bottom: 76px;
        font-size: 36px;
        letter-spacing: 14px;
    }

.ga-art-flame {
    transform: scale(0.42);
    transform-origin: center;
}

.ga-flame-1 {
    left: 22%;
    top: 70px;
}

.ga-flame-2 {
    left: 36%;
    top: 58px;
}

.ga-flame-3 {
    left: 52%;
    top: 60px;
}

.ga-flame-4 {
    right: 7%;
    top: 80px;
}

.ga-flame-5 {
    right: -18%;
    top: 50px;
}

    .ga-footer-content {
        padding: 28px 18px 105px;
        gap: 28px;
    }

    .ga-footer-col h3 {
        font-size: 25px;
    }

    .ga-footer-nav a {
        font-size: 22px;
        margin-bottom: 13px;
    }

    .ga-footer-cta p {
        margin-top: 16px;
        font-size: 21px;
    }

    .ga-footer-chat-btn {
        height: 52px;
        min-width: 145px;
        font-size: 17px;
    }

    .ga-social-row a {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .ga-footer-copy {
        font-size: 21px;
    }

    .ga-footer-credit {
        font-size: 14px;
        padding: 8px 11px;
    }

.ga-footer-big-text {
    bottom: 40px;
    font-size: clamp(48px, 16vw, 82px);
    letter-spacing: -0.045em;
}

.ga-footer-bottom-credit {
    bottom: 14px;
    font-size: 11px;
}
}

/* =========================================================
   GAME ADDA AUTH PAGES DESIGN
   Login / Register / Admin Login
   Paste at END of static/css/style.css
   ========================================================= */

/* Auth page background */
.ga-auth-screen {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding: 90px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 138, 24, 0.18), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(255, 138, 24, 0.10), transparent 30%),
    #ffffff;
  color: #151515;
  overflow: hidden;
}

/* Optional dark glow for admin login */
.ga-admin-login-screen {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 138, 24, 0.20), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(0, 0, 0, 0.08), transparent 30%),
    #ffffff;
}

/* Close button */
.ga-auth-close {
  position: fixed;
  top: 28px;
  right: 34px;
  z-index: 30;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid #111111;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  font-weight: 300;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.ga-auth-close:hover {
  background: #111111;
  color: #ffffff;
  transform: rotate(90deg);
}

/* Main auth card */
.ga-auth-box {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  padding: clamp(38px, 5vw, 62px);
  border-radius: 0;
  background: #ffffff;
  text-align: center;
}

/* Register page can be slightly wider */
.ga-register-box {
  width: min(580px, 100%);
}

/* Heading */
.ga-auth-heading span {
  display: inline-block;
  margin-bottom: 14px;
  color: #ff8a18;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.ga-auth-heading h1 {
  margin: 0;
  color: #111111;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.ga-auth-heading p {
  max-width: 420px;
  margin: 22px auto 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 15px;
  line-height: 1.65;
}

/* Form */
.ga-auth-form {
  margin-top: 44px;
}

.ga-auth-field {
  margin-bottom: 18px;
}

.ga-auth-field input {
  width: 100%;
  height: 58px;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  outline: none;
  background: #f1f1f1;
  color: #111111;
  font-size: 15px;
  font-weight: 600;
  box-shadow: none;
}

.ga-auth-field input::placeholder {
  color: rgba(17, 17, 17, 0.42);
}

.ga-auth-field input:focus {
  background: #eeeeee;
  box-shadow: inset 0 0 0 2px #ff8a18;
}

/* Remember me */
.ga-auth-remember {
  margin: 8px 0 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.ga-auth-remember input {
  width: 16px;
  height: 16px;
  accent-color: #ff8a18;
}

/* Submit button */
.ga-auth-submit {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 0;
  background: #ff8a18;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: background 0.22s ease, transform 0.22s ease;
}

.ga-auth-submit:hover {
  background: #111111;
  transform: translateY(-2px);
}

/* Bottom links */
.ga-auth-links {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ga-auth-links a {
  color: rgba(17, 17, 17, 0.62);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.ga-auth-links a:hover {
  color: #ff8a18;
}

/* Remove extra container spacing on auth pages */
body:has(.ga-auth-screen) {
  background: #ffffff !important;
}

body:has(.ga-auth-screen) main,
body:has(.ga-auth-screen) .main,
body:has(.ga-auth-screen) .page-content,
body:has(.ga-auth-screen) .container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* Hide normal navbar/header/footer only on auth pages if your base shows them */
body:has(.ga-auth-screen) .ga-hero-header,
body:has(.ga-auth-screen) .ga-gaming-header,
body:has(.ga-auth-screen) .ga-ref-nav-header,
body:has(.ga-auth-screen) header:not(.keep-auth-header),
body:has(.ga-auth-screen) footer {
  display: none !important;
}

/* =========================================================
   AUTH CURTAIN LAYERS
   These stay hidden until JS activates them
   ========================================================= */

.ga-auth-curtain {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
}

.ga-auth-curtain.is-running {
  visibility: visible;
  pointer-events: auto;
}

.ga-auth-curtain-layer {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-105%);
  will-change: transform;
}

.ga-auth-curtain-black {
  background: #050505;
  z-index: 1;
}

.ga-auth-curtain-orange {
  background: #ff8a18;
  z-index: 2;
}

.ga-auth-curtain-white {
  background: #ffffff;
  z-index: 3;
}

/* Open/fall animation */
.ga-auth-curtain.is-opening .ga-auth-curtain-black {
  animation: gaCurtainDown 0.42s cubic-bezier(.76, 0, .24, 1) forwards;
}

.ga-auth-curtain.is-opening .ga-auth-curtain-orange {
  animation: gaCurtainDown 0.42s cubic-bezier(.76, 0, .24, 1) 0.12s forwards;
}

.ga-auth-curtain.is-opening .ga-auth-curtain-white {
  animation: gaCurtainDown 0.42s cubic-bezier(.76, 0, .24, 1) 0.24s forwards;
}

/* Close/up animation */
.ga-auth-curtain.is-closing {
  visibility: visible;
  pointer-events: auto;
}

.ga-auth-curtain.is-closing .ga-auth-curtain-black,
.ga-auth-curtain.is-closing .ga-auth-curtain-orange,
.ga-auth-curtain.is-closing .ga-auth-curtain-white {
  transform: translateY(0);
}

.ga-auth-curtain.is-closing .ga-auth-curtain-white {
  animation: gaCurtainUp 0.42s cubic-bezier(.76, 0, .24, 1) forwards;
}

.ga-auth-curtain.is-closing .ga-auth-curtain-orange {
  animation: gaCurtainUp 0.42s cubic-bezier(.76, 0, .24, 1) 0.12s forwards;
}

.ga-auth-curtain.is-closing .ga-auth-curtain-black {
  animation: gaCurtainUp 0.42s cubic-bezier(.76, 0, .24, 1) 0.24s forwards;
}

@keyframes gaCurtainDown {
  from {
    transform: translateY(-105%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes gaCurtainUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-105%);
  }
}

/* Responsive */
@media (max-width: 640px) {
  .ga-auth-screen {
    padding: 76px 18px;
    align-items: flex-start;
  }

  .ga-auth-close {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .ga-auth-box,
  .ga-register-box {
    width: 100%;
    padding: 34px 8px;
  }

  .ga-auth-heading h1 {
    font-size: clamp(48px, 18vw, 72px);
  }

  .ga-auth-heading p {
    font-size: 14px;
  }

  .ga-auth-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* Logo slightly bigger - final adjustment */
.ga-pill-brand {
  width: 72px !important;
  height: 72px !important;
}

.ga-pill-logo-img,
.ga-pill-logo-fallback {
  width: 66px !important;
  height: 66px !important;
}

/* Keep navbar height balanced */
.ga-pill-navbar {
  min-height: 82px !important;
}

/* Mobile logo size */
@media (max-width: 1050px) {
  .ga-pill-brand {
    width: 62px !important;
    height: 62px !important;
  }

  .ga-pill-logo-img,
  .ga-pill-logo-fallback {
    width: 56px !important;
    height: 56px !important;
  }
}

/* =========================================================
   HERO TEXT OVERLAP FIX - Compact Single Screen Layout
========================================================= */

.gaming-hero-copy,
.landing-hero-content,
.designer-hero-copy {
  max-width: 760px !important;
}

/* Main heading fix */
.gaming-hero-title,
.landing-hero h1,
.designer-hero-title {
  font-size: clamp(58px, 5.6vw, 96px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.055em !important;
  margin: 0 0 24px !important;
  max-width: 760px !important;
}

/* Force heading lines to stack cleanly */
.gaming-hero-title span,
.landing-hero h1 span,
.designer-hero-title span {
  display: block !important;
  line-height: 0.92 !important;
  margin-top: 4px !important;
}

/* Paragraph/caption should stay below heading */
.gaming-hero-description,
.landing-hero p,
.designer-hero-text {
  position: relative !important;
  z-index: 3 !important;
  max-width: 600px !important;
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  font-size: 18px !important;
  line-height: 1.45 !important;
}

/* Button row spacing */
.gaming-hero-actions,
.landing-hero-actions,
.designer-hero-actions {
  margin-top: 30px !important;
  gap: 42px !important;
}

/* Underline CTA text */
.gaming-hero-actions a,
.landing-hero-actions a {
  font-size: 18px !important;
  line-height: 1.2 !important;
  padding-bottom: 12px !important;
}

/* Move hero content slightly up but keep everything visible */
.gaming-hero-content,
.landing-hero-content {
  padding-top: 150px !important;
  padding-bottom: 92px !important;
}

/* Dots visible at bottom */
.gaming-hero-dots,
.landing-hero-dots {
  bottom: 34px !important;
}

/* Laptop size correction */
@media (max-width: 1366px) {
  .gaming-hero-title,
  .landing-hero h1,
  .designer-hero-title {
    font-size: clamp(52px, 5.2vw, 82px) !important;
    line-height: 0.94 !important;
  }

  .gaming-hero-description,
  .landing-hero p,
  .designer-hero-text {
    font-size: 16px !important;
    line-height: 1.45 !important;
    max-width: 560px !important;
  }

  .gaming-hero-content,
  .landing-hero-content {
    padding-top: 130px !important;
    padding-bottom: 82px !important;
  }
}

/* Smaller screens */
@media (max-width: 900px) {
  .gaming-hero-title,
  .landing-hero h1,
  .designer-hero-title {
    font-size: clamp(44px, 11vw, 70px) !important;
    line-height: 0.98 !important;
  }

  .gaming-hero-content,
  .landing-hero-content {
    padding-top: 120px !important;
    padding-bottom: 86px !important;
  }
}

/* =========================================================
   GLOBAL NAV OVERLAP FIX
   Fixes dashboard/admin/customer pages overlapping with navbar
========================================================= */

/* Normal pages need space below the floating/top navbar */
body:not(.home-page) main,
main {
  padding-top: 34px;
}

/* Give dashboard/page headings enough breathing room */
.dashboard-section,
.auth-section,
.section,
.inner-hero {
  padding-top: 64px;
}

/* Customer dashboard / admin dashboard page title spacing */
.page-head {
  margin-top: 18px;
}

/* Navbar should stay above content, but not cover it visually */
.ga-ref-nav-header,
.ga-pill-header,
.site-header {
  position: relative !important;
  z-index: 999 !important;
}

/* If the navbar is transparent gaming-style, reserve vertical space */
.ga-ref-nav-header + main,
.ga-pill-header + main,
.site-header + main {
  padding-top: 28px;
}

/* Dashboard title should never go under nav links */
.dashboard-section .page-head,
.section .page-head {
  position: relative;
  z-index: 1;
}

/* Logged-in pages with large H1 */
.page-head h1,
.dashboard-section h1,
.auth-section h1,
.inner-hero h1 {
  margin-top: 0;
  line-height: 1.05;
}

/* Desktop correction */
@media (min-width: 1051px) {
  .dashboard-section,
  .auth-section,
  .section {
    padding-top: 72px;
  }

  .page-head {
    margin-top: 10px;
  }
}

/* Mobile correction */
@media (max-width: 1050px) {
  main {
    padding-top: 22px;
  }

  .dashboard-section,
  .auth-section,
  .section,
  .inner-hero {
    padding-top: 42px;
  }
}

/* =========================================================
   GAME ADDA MODERN DASHBOARDS
   Customer + Admin/Superadmin/Executive
========================================================= */

.ga-user-dashboard,
.ga-admin-dashboard {
  position: relative;
  padding: 76px 0 90px;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 160, 25, 0.20), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(40, 217, 255, 0.20), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(124, 92, 255, 0.18), transparent 38%),
    linear-gradient(135deg, #08090f 0%, #101529 45%, #07161d 100%);
}

.ga-user-dashboard::before,
.ga-admin-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 78%);
  pointer-events: none;
}

.ga-user-dashboard > .container,
.ga-admin-dashboard > .container {
  position: relative;
  z-index: 2;
}

/* HERO HEADER */
.ga-dashboard-hero,
.ga-admin-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 160, 25, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.ga-dash-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 160, 25, 0.14);
  color: #ffb23f;
  border: 1px solid rgba(255, 160, 25, 0.22);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ga-dash-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffa019;
  box-shadow: 0 0 20px rgba(255, 160, 25, 0.9);
}

.ga-dashboard-hero h1,
.ga-admin-hero h1 {
  margin: 0;
  color: #fff8e8;
  font-family: Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
  font-size: clamp(44px, 5vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.ga-dashboard-hero p,
.ga-admin-hero p {
  max-width: 670px;
  margin: 18px 0 0;
  color: rgba(255, 248, 232, 0.72);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

.ga-dashboard-hero-actions,
.ga-admin-hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

.ga-dash-primary-btn,
.ga-dash-secondary-btn {
  min-width: 160px;
  height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d111d;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ga-dash-primary-btn {
  background: linear-gradient(135deg, #ff9f1c, #ffbd39);
  box-shadow: 0 16px 38px rgba(255, 160, 25, 0.26);
}

.ga-dash-secondary-btn {
  color: #fff8e8;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.ga-dash-primary-btn:hover,
.ga-dash-secondary-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* STATS */
.ga-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.ga-stat-card {
  position: relative;
  overflow: hidden;
  min-height: 136px;
  padding: 22px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: 0 22px 60px rgba(0,0,0,0.25);
  backdrop-filter: blur(18px);
}

.ga-stat-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -72px;
  top: -72px;
  border-radius: 50%;
  opacity: 0.35;
}

.ga-stat-total::before {
  background: #ff9f1c;
}

.ga-stat-paid::before {
  background: #20c997;
}

.ga-stat-pending::before {
  background: #f6b73c;
}

.ga-stat-payment::before {
  background: #28d9ff;
}

.ga-stat-icon {
  width: 58px;
  height: 58px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 26px;
}

.ga-stat-card strong {
  display: block;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.ga-stat-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  font-weight: 700;
}

/* MAIN GRID */
.ga-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.45fr);
  gap: 22px;
  align-items: start;
}

.ga-dashboard-panel {
  padding: 28px;
  border-radius: 32px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: 0 24px 72px rgba(0,0,0,0.26);
  backdrop-filter: blur(18px);
}

.ga-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.ga-panel-head span {
  display: block;
  margin-bottom: 7px;
  color: #ffa019;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ga-panel-head h2 {
  margin: 0;
  color: #fff8e8;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ga-panel-head > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #0d111d;
  background: #ffad28;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

/* BOOKING LIST */
.ga-booking-list {
  display: grid;
  gap: 14px;
}

.ga-booking-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 100px auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(7, 11, 22, 0.46);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ga-booking-item:hover {
  transform: translateY(-2px);
  background: rgba(7, 11, 22, 0.62);
  border-color: rgba(255, 160, 25, 0.28);
}

.ga-booking-date strong {
  display: block;
  color: #fff8e8;
  font-size: 15px;
  font-weight: 900;
}

.ga-booking-date span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  font-weight: 700;
}

.ga-booking-main h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
}

.ga-booking-main p {
  margin: 7px 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  font-weight: 700;
}

.ga-booking-price {
  color: #ffbc43;
  font-size: 20px;
  font-weight: 900;
  text-align: right;
}

/* QUICK LINKS */
.ga-quick-links {
  display: grid;
  gap: 13px;
}

.ga-quick-links a {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 18px 18px 18px 20px;
  border-radius: 22px;
  background: rgba(7, 11, 22, 0.46);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ga-quick-links a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #ff9f1c, #28d9ff);
}

.ga-quick-links a:hover {
  transform: translateX(4px);
  background: rgba(7, 11, 22, 0.64);
  border-color: rgba(255, 160, 25, 0.28);
}

.ga-quick-links strong {
  display: block;
  color: #fff8e8;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 900;
}

.ga-quick-links span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

/* EMPTY STATE */
.ga-empty-dashboard {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 320px;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 160, 25, 0.16), transparent 32%),
    rgba(7, 11, 22, 0.42);
  border: 1px dashed rgba(255,255,255,0.16);
}

.ga-empty-dashboard > div {
  font-size: 48px;
  margin-bottom: 8px;
}

.ga-empty-dashboard h3 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ga-empty-dashboard p {
  max-width: 360px;
  margin: 10px auto 20px;
  color: rgba(255,255,255,0.62);
  font-weight: 600;
}

.ga-empty-dashboard a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  color: #0d111d;
  background: #ffad28;
  font-weight: 900;
}

/* Keep badges readable inside new dashboard */
.ga-booking-item .badge {
  justify-self: end;
  white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .ga-dashboard-hero,
  .ga-admin-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .ga-dashboard-hero-actions,
  .ga-admin-hero-actions {
    justify-content: flex-start;
  }

  .ga-dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ga-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .ga-booking-item {
    grid-template-columns: 160px minmax(0, 1fr) 90px auto;
  }
}

@media (max-width: 760px) {
  .ga-user-dashboard,
  .ga-admin-dashboard {
    padding: 42px 0 64px;
  }

  .ga-dashboard-hero,
  .ga-admin-hero,
  .ga-dashboard-panel {
    border-radius: 24px;
    padding: 22px;
  }

  .ga-dashboard-hero h1,
  .ga-admin-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 0.98;
  }

  .ga-dashboard-hero p,
  .ga-admin-hero p {
    font-size: 15px;
  }

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

  .ga-booking-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ga-booking-price {
    text-align: left;
  }

  .ga-booking-item .badge {
    justify-self: start;
  }

  .ga-dash-primary-btn,
  .ga-dash-secondary-btn {
    width: 100%;
  }
}

/* =========================================================
   DASHBOARD GAP + HEADING VISIBILITY FIX
========================================================= */

/* Reduce top gap after navbar */
.ga-user-dashboard,
.ga-admin-dashboard {
  padding-top: 24px !important;
}

/* Dashboard hero should start closer to navbar */
.ga-dashboard-hero,
.ga-admin-hero {
  margin-top: 0 !important;
}

/* Make heading more visible without changing font */
.ga-dashboard-hero h1,
.ga-admin-hero h1 {
  color: #fff4dc !important;
  text-shadow:
    0 3px 0 rgba(0, 0, 0, 0.35),
    0 18px 44px rgba(0, 0, 0, 0.45) !important;
}

/* Make paragraph clearer too */
.ga-dashboard-hero p,
.ga-admin-hero p {
  color: rgba(255, 244, 220, 0.86) !important;
}

/* After removing one customer KPI, make 3 cards align properly */
.ga-user-dashboard .ga-dashboard-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* Admin still keeps 4 KPI cards */
.ga-admin-dashboard .ga-dashboard-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

/* Responsive */
@media (max-width: 900px) {
  .ga-user-dashboard .ga-dashboard-stats,
  .ga-admin-dashboard .ga-dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .ga-user-dashboard .ga-dashboard-stats,
  .ga-admin-dashboard .ga-dashboard-stats {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   LOGGED-IN HEADER GAP FIX
   Removes extra blue strip/gap behind logo and aligns dashboard
========================================================= */

/* Remove unwanted tall top area */
.ga-gaming-header,
.ga-ref-nav-header,
.site-header,
.public-header {
  min-height: auto !important;
}

/* Compact top utility/logo row */
.ga-gaming-top,
.ga-ref-navbar-top,
.ga-header-top {
  min-height: 54px !important;
  height: 54px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  align-items: center !important;
}

/* Control centered logo height */
.ga-gaming-logo,
.ga-ref-logo-img,
.nav-logo-img,
.ga-pill-logo-img {
  max-height: 58px !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Reduce extra navbar vertical area */
.ga-gaming-nav,
.ga-ref-nav-links,
.ga-pill-nav-links {
  min-height: auto !important;
}

/* Main logged-in nav row should not create huge height */
.ga-gaming-nav-row,
.ga-ref-navbar,
.ga-pill-navbar {
  min-height: 66px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  align-items: center !important;
}

/* Remove extra top margin created by dashboard section */
.ga-user-dashboard,
.ga-admin-dashboard {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Dashboard hero should start cleanly after navbar */
.ga-dashboard-hero,
.ga-admin-hero {
  margin-top: 0 !important;
}

/* Keep dashboard content slightly below nav, not hidden under it */
.ga-user-dashboard > .container,
.ga-admin-dashboard > .container {
  padding-top: 22px !important;
}

/* Fix nav/logo layer height if old header background is leaking */
header + main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Prevent the top header from covering dashboard visually */
header {
  position: relative !important;
  z-index: 50 !important;
}

/* Dashboard hero/nav alignment correction */
@media (min-width: 1051px) {
  .ga-user-dashboard > .container,
  .ga-admin-dashboard > .container {
    padding-top: 18px !important;
  }
}

/* Mobile/tablet */
@media (max-width: 1050px) {
  .ga-gaming-top,
  .ga-ref-navbar-top,
  .ga-header-top {
    height: auto !important;
    min-height: 60px !important;
  }

  .ga-user-dashboard > .container,
  .ga-admin-dashboard > .container {
    padding-top: 16px !important;
  }
}

/* Strong fallback: remove accidental header background strip */
body::before,
.site-header::before,
.public-header::before {
  display: none !important;
}

.ga-user-dashboard,
.ga-admin-dashboard {
  margin-top: 0 !important;
}


/* =========================================================
   GAME ADDA FINAL PATCH - ADVENTURE SECTION + RESPONSIVE FIXES
   Added for the "UNLEASH YOUR ADVENTURE" landing section.
   This block is intentionally placed at the end so it safely overrides
   earlier duplicated responsive rules without disturbing login/admin pages.
   ========================================================= */

/* Keep homepage hero/landing sections full bleed only on the home page. */
body.ga-home-body,
body:has(.ga-game-home) {
  background: #050505;
  overflow-x: hidden;
}

body.ga-home-body .ga-home-main,
body:has(.ga-game-home) main {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
  overflow: hidden;
}

/* Homepage header floats on the hero only; non-home pages keep their own navbar styling. */
body.ga-home-body .ga-hero-header,
body:has(.ga-game-home) .ga-hero-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 80;
  background: transparent !important;
}

/* Make the first hero fully bleed from the top of the viewport. */
body.ga-home-body .ga-game-home,
body:has(.ga-game-home) .ga-game-home {
  margin: 0;
  padding: 0;
  width: 100%;
}

body.ga-home-body .ga-game-hero,
body:has(.ga-game-home) .ga-game-hero {
  margin-top: 0 !important;
  height: 100vh;
  min-height: 640px;
  max-height: none;
}

/* ---------- adventure story section ---------- */

.ga-adventure-section {
  position: relative;
  width: 100%;
  padding: clamp(76px, 9vw, 130px) 10.6vw;
  background: #f4f4f4;
  color: #292929;
  overflow: hidden;
}

.ga-adventure-wrap {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(52px, 6vw, 96px);
}

.ga-adventure-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.43 / 1;
  overflow: hidden;
  background: #dedede;
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.22);
}

.ga-adventure-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ga-adventure-content {
  max-width: 740px;
}

.ga-adventure-content h2 {
  margin: 0 0 42px;
  text-transform: uppercase;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(48px, 5.2vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: #292929;
}

.ga-adventure-content h2 span,
.ga-adventure-content h2 strong {
  display: block;
}

.ga-adventure-content h2 strong {
  color: #ffa31a;
  font-style: normal;
}

.ga-adventure-content p {
  margin: 0;
  max-width: 850px;
  color: #2f3945;
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.75;
  font-weight: 500;
}

.ga-adventure-actions {
  margin-top: clamp(44px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: clamp(40px, 4.8vw, 70px);
  flex-wrap: wrap;
}

.ga-adventure-actions a {
  min-width: 172px;
  padding-bottom: 20px;
  color: #ffa31a;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 1.05vw, 20px);
  font-weight: 900;
  line-height: 1;
  border-bottom: 2px solid #ffa31a;
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.ga-adventure-actions a:hover {
  color: #292929;
  border-color: #292929;
  transform: translateY(-2px);
}

/* ---------- adventure section responsive fixes ---------- */

@media (max-width: 1280px) {
  .ga-game-section,
  .ga-game-final-cta,
  .ga-adventure-section {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .ga-adventure-wrap {
    gap: 54px;
  }
}

@media (max-width: 980px) {
  .ga-adventure-section {
    padding: 66px 24px;
  }

  .ga-adventure-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ga-adventure-content {
    max-width: 100%;
  }

  .ga-adventure-content h2 {
    margin-bottom: 28px;
  }

  .ga-adventure-actions {
    margin-top: 34px;
  }

  body.ga-home-body .ga-game-hero,
  body:has(.ga-game-home) .ga-game-hero {
    height: auto;
    min-height: 760px;
  }
}

@media (max-width: 640px) {
  .ga-adventure-section {
    padding: 54px 18px;
  }

  .ga-adventure-wrap {
    gap: 34px;
  }

  .ga-adventure-media {
    aspect-ratio: 1.28 / 1;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.20);
  }

  .ga-adventure-content h2 {
    font-size: clamp(42px, 13vw, 62px);
    line-height: 0.94;
    margin-bottom: 24px;
  }

  .ga-adventure-content p {
    font-size: 15.5px;
    line-height: 1.68;
  }

  .ga-adventure-actions {
    width: 100%;
    gap: 26px;
  }

  .ga-adventure-actions a {
    min-width: 136px;
    padding-bottom: 14px;
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .ga-adventure-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ga-adventure-actions a {
    width: min(220px, 100%);
  }
}

/* =========================================================
   GAME ADDA MOBILE HOME NAV - WHITE BAR + RIGHT DRAWER
   Reference-style mobile menu
   Desktop hero navbar remains unchanged
   ========================================================= */

.ga-mobile-drawer,
.ga-mobile-drawer-overlay {
  display: none;
}

/* ---------- mobile homepage white topbar ---------- */

@media (max-width: 980px) {
  body.ga-home-body .ga-hero-header,
  body:has(.ga-game-home) .ga-hero-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    width: 100%;
    padding: 0 !important;
    background: #ffffff !important;
    color: #111111 !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }

  body.ga-home-body .ga-hero-topbar,
  body:has(.ga-game-home) .ga-hero-topbar {
    width: 100%;
    height: 64px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    background: #ffffff;
  }

  body.ga-home-body .ga-hero-socials,
  body.ga-home-body .ga-hero-auth-actions,
  body.ga-home-body .ga-hero-mainnav,
  body:has(.ga-game-home) .ga-hero-socials,
  body:has(.ga-game-home) .ga-hero-auth-actions,
  body:has(.ga-game-home) .ga-hero-mainnav {
    display: none !important;
  }

  body.ga-home-body .ga-hero-brand,
  body:has(.ga-game-home) .ga-hero-brand {
    justify-content: flex-start;
    width: max-content;
    min-width: 0;
  }

  body.ga-home-body .ga-hero-logo-img,
  body:has(.ga-game-home) .ga-hero-logo-img {
    width: auto;
    max-width: 86px;
    max-height: 42px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) !important;
  }

  body.ga-home-body .ga-hero-logo-mark,
  body.ga-home-body .ga-hero-logo-text,
  body:has(.ga-game-home) .ga-hero-logo-mark,
  body:has(.ga-game-home) .ga-hero-logo-text {
    color: #111111 !important;
  }

  body.ga-home-body .ga-hero-logo-mark,
  body:has(.ga-game-home) .ga-hero-logo-mark {
    border-color: #111111 !important;
  }

  body.ga-home-body .ga-hero-menu-toggle,
  body:has(.ga-game-home) .ga-hero-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #111111;
    font-size: 24px;
    cursor: pointer;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.ga-home-body .ga-hero-menu-toggle:hover,
  body:has(.ga-game-home) .ga-hero-menu-toggle:hover {
    color: #ffa31a;
  }

  body.ga-home-body .ga-game-hero-content,
  body:has(.ga-game-home) .ga-game-hero-content {
    padding-top: 150px;
  }
}


/* ---------- mobile right drawer overlay ---------- */

@media (max-width: 980px) {
  .ga-mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    display: block;
    background: rgba(0, 0, 0, 0.48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.34s ease,
      visibility 0.34s ease;
  }

  .ga-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    width: min(340px, 88vw);
    height: 100vh;
    padding: 58px 28px 28px;
    background: #ffffff;
    color: #222222;
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.28);
    transform: translateX(105%);
    opacity: 0.98;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.52s cubic-bezier(.22, 1, .36, 1),
      visibility 0.52s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.ga-mobile-menu-open {
    overflow: hidden;
  }

  body.ga-mobile-menu-open .ga-mobile-drawer-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.ga-mobile-menu-open .ga-mobile-drawer {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .ga-mobile-drawer-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border: 0;
    background: #222222;
    color: #ffffff;
    font-size: 18px;
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .ga-mobile-drawer-close:hover {
    background: #ffa31a;
    color: #ffffff;
  }

  .ga-mobile-drawer-logo {
    width: max-content;
    display: inline-flex;
    align-items: center;
    margin-bottom: 34px;
    color: #111111;
    text-decoration: none;
  }

  .ga-mobile-drawer-logo img {
    width: auto;
    max-width: 132px;
    max-height: 62px;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
  }

  .ga-mobile-drawer-logo span {
    color: #111111;
    font-family: "Arial Black", Impact, system-ui, sans-serif;
    font-size: 24px;
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
  }

  .ga-mobile-drawer-links {
    display: grid;
    gap: 0;
    margin-top: 4px;
  }

  .ga-mobile-drawer-links a {
    min-height: 46px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #2b2b2b;
    border-bottom: 1px solid #ededed;
    text-decoration: none;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition:
      color 0.2s ease,
      padding-left 0.2s ease;
  }

  .ga-mobile-drawer-links a i {
    color: #777777;
    font-size: 11px;
  }

  .ga-mobile-drawer-links a:hover,
  .ga-mobile-drawer-links a.is-active {
    color: #ffa31a;
    padding-left: 2px;
  }

  .ga-mobile-drawer-links a:hover i,
  .ga-mobile-drawer-links a.is-active i {
    color: #ffa31a;
  }

  .ga-mobile-drawer-socials {
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .ga-mobile-drawer-socials a {
    color: #222222;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    transition:
      color 0.2s ease,
      transform 0.2s ease;
  }

  .ga-mobile-drawer-socials a:hover {
    color: #ffa31a;
    transform: translateY(-2px);
  }

  .ga-mobile-drawer-auth {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffa31a;
  }

  .ga-mobile-drawer-auth a {
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
  }

  .ga-mobile-drawer-auth a:last-child {
    border-right: 0;
  }

  .ga-mobile-drawer-auth a:hover {
    background: #ff8d00;
  }
}


/* ---------- extra small mobile polish ---------- */

@media (max-width: 480px) {
  body.ga-home-body .ga-hero-topbar,
  body:has(.ga-game-home) .ga-hero-topbar {
    height: 58px;
    padding: 0 12px;
  }

  body.ga-home-body .ga-hero-logo-img,
  body:has(.ga-game-home) .ga-hero-logo-img {
    max-width: 76px;
    max-height: 38px;
  }

  body.ga-home-body .ga-hero-menu-toggle,
  body:has(.ga-game-home) .ga-hero-menu-toggle {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .ga-mobile-drawer {
    width: min(334px, 90vw);
    padding: 56px 26px 26px;
  }
}

/* =========================================================
   FIX: MOBILE LOGO SHOULD KEEP ORIGINAL GAME ADDA COLORS
   Removes forced black filter from mobile topbar and drawer
   ========================================================= */

@media (max-width: 980px) {
  body.ga-home-body .ga-hero-logo-img,
  body:has(.ga-game-home) .ga-hero-logo-img,
  .ga-mobile-drawer-logo img {
    filter: none !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
  }

  body.ga-home-body .ga-hero-logo-img,
  body:has(.ga-game-home) .ga-hero-logo-img {
    max-width: 92px;
    max-height: 48px;
  }

  .ga-mobile-drawer-logo img {
    max-width: 138px;
    max-height: 70px;
  }
}

@media (max-width: 480px) {
  body.ga-home-body .ga-hero-logo-img,
  body:has(.ga-game-home) .ga-hero-logo-img {
    max-width: 86px;
    max-height: 44px;
  }

  .ga-mobile-drawer-logo img {
    max-width: 132px;
    max-height: 66px;
  }
}

/* =========================================================
   REMOVE MOBILE DRAWER ARROW ICONS
   ========================================================= */

.ga-mobile-drawer-links a i {
  display: none !important;
}

.ga-mobile-drawer-links a {
  justify-content: flex-start !important;
}

/* =========================================================
   FIX: ADVENTURE SECTION IMAGE FULLY VISIBLE
   Shows complete image inside the box without cropping
   ========================================================= */

.ga-adventure-media {
  background: #f4f4f4 !important;
}

.ga-adventure-media img {
  object-fit: contain !important;
  object-position: center center !important;
  background: #f4f4f4;
}

/* =========================================================
   FIX: REMOVE EXTRA WHITE SPACE BELOW ADVENTURE IMAGE
   Keeps full image visible without empty bottom gap
   ========================================================= */

.ga-adventure-media {
  aspect-ratio: auto !important;
  height: auto !important;
  background: transparent !important;
  line-height: 0;
}

.ga-adventure-media img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
}

/* =========================================================
   FIX: HERO TITLE TEXT OVERLAP
   Prevents large hero words from colliding on desktop/mobile
   ========================================================= */

.ga-game-hero-content {
  width: min(820px, 92vw) !important;
}

.ga-game-hero-title {
  max-width: 820px !important;
  font-size: clamp(48px, 5vw, 82px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.055em !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.ga-game-hero-title span {
  display: block !important;
  margin: 0 !important;
}

.ga-game-hero-text {
  margin-top: clamp(18px, 2.4vh, 28px) !important;
  max-width: 680px !important;
  position: relative;
  z-index: 2;
}

.ga-game-hero-actions {
  margin-top: clamp(28px, 3.4vh, 42px) !important;
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .ga-game-hero-title {
    font-size: clamp(44px, 10vw, 70px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.05em !important;
  }
}

@media (max-width: 640px) {
  .ga-game-hero-title {
    font-size: clamp(38px, 12vw, 58px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
  }

  .ga-game-hero-text {
    margin-top: 16px !important;
  }
}


/* =========================================================
   GAME ADDA ARENA SECTION REDESIGN
   For: "Gaming zones made for every mood"
   Matches premium gaming landing design
   ========================================================= */

.ga-arena-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 8vw, 126px) 10.6vw !important;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 163, 26, 0.18), transparent 28%),
    radial-gradient(circle at 92% 38%, rgba(124, 92, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #090909 0%, #12100f 48%, #050505 100%) !important;
  color: #ffffff;
  isolation: isolate;
}

.ga-arena-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.55;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

.ga-arena-section::after {
  content: "";
  position: absolute;
  right: -160px;
  top: 70px;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 163, 26, 0.12);
  filter: blur(36px);
}

.ga-arena-head {
  width: min(980px, 100%);
  margin: 0 auto clamp(38px, 4.2vw, 64px);
  text-align: center;
}

.ga-arena-head span {
  margin-bottom: 18px;
  color: #ffa31a !important;
  letter-spacing: 0.24em !important;
}

.ga-arena-head h2 {
  margin-inline: auto;
  max-width: 980px !important;
  color: #ffffff !important;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.48);
}

.ga-arena-head p {
  margin: 22px auto 0 !important;
  max-width: 760px !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

.ga-arena-grid {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 30px);
}

.ga-arena-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #121212;
  border: 1px solid rgba(255, 163, 26, 0.22);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.ga-arena-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 163, 26, 0.58);
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(255, 163, 26, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.ga-arena-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.ga-arena-card-media {
  position: relative;
  height: clamp(230px, 16.5vw, 310px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 163, 26, 0.18), transparent 34%),
    #070707;
}

.ga-arena-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.48s ease, filter 0.48s ease;
}

.ga-arena-card:hover .ga-arena-card-media img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.05);
}

.ga-arena-card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at 20% 15%, rgba(255, 163, 26, 0.26), transparent 34%);
  pointer-events: none;
}

.ga-arena-card-number {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: -0.05em;
}

.ga-arena-card-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #090909;
  background: #ffa31a;
  box-shadow: 0 12px 28px rgba(255, 163, 26, 0.28);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ga-arena-card-body {
  position: relative;
  padding: 26px;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.ga-arena-card-body::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 163, 26, 0.5), transparent);
}

.ga-arena-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffa31a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ga-arena-card-body h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(28px, 2vw, 38px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.ga-arena-card-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.ga-arena-card-footer {
  min-height: 48px;
  padding-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #ffa31a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ga-arena-card-footer i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #090909;
  background: #ffa31a;
  transition: transform 0.25s ease;
}

.ga-arena-card:hover .ga-arena-card-footer i {
  transform: translateX(4px);
}

.ga-arena-empty {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.055) !important;
  border-color: rgba(255, 163, 26, 0.26) !important;
}


/* ---------- responsive arena section ---------- */

@media (max-width: 1280px) {
  .ga-arena-section {
    padding-left: 7vw !important;
    padding-right: 7vw !important;
  }

  .ga-arena-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ga-arena-card-media {
    height: 280px;
  }
}

@media (max-width: 980px) {
  .ga-arena-section {
    padding: 72px 24px !important;
  }

  .ga-arena-head {
    text-align: left;
    margin-bottom: 38px;
  }

  .ga-arena-head h2 {
    margin-inline: 0;
  }

  .ga-arena-head p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .ga-arena-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ga-arena-card {
    border-radius: 26px;
  }

  .ga-arena-card-media {
    height: 290px;
  }

  .ga-arena-card-body {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .ga-arena-section {
    padding: 62px 18px !important;
  }

  .ga-arena-card-media {
    height: 235px;
  }

  .ga-arena-card-body {
    padding: 22px;
    gap: 18px;
  }

  .ga-arena-card-number {
    left: 14px;
    top: 14px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 16px;
  }

  .ga-arena-card-badge {
    right: 14px;
    bottom: 14px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }

  .ga-arena-card-body h3 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .ga-arena-card-body p {
    font-size: 14.5px;
  }
}

/* =========================================================
   UPDATE: ARENA SECTION WHITE BACKGROUND
   Makes "Gaming zones made for every mood" section clean white
   ========================================================= */

.ga-arena-section {
  background: #f4f4f4 !important;
  color: #292929 !important;
}

.ga-arena-section::before,
.ga-arena-section::after {
  display: none !important;
}

.ga-arena-head span {
  color: #ffa31a !important;
}

.ga-arena-head h2 {
  color: #292929 !important;
  text-shadow: none !important;
}

.ga-arena-head p {
  color: #3f4650 !important;
}

.ga-arena-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

.ga-arena-card:hover {
  border-color: rgba(255, 163, 26, 0.58) !important;
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.18),
    0 0 34px rgba(255, 163, 26, 0.12) !important;
}

.ga-arena-card-body {
  background: #ffffff !important;
}

.ga-arena-card-body h3 {
  color: #292929 !important;
}

.ga-arena-card-body p {
  color: #4b5563 !important;
}

.ga-arena-kicker {
  color: #ffa31a !important;
}

.ga-arena-card-footer {
  color: #ffa31a !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.ga-arena-card-body::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 163, 26, 0.55),
    transparent
  ) !important;
}

.ga-arena-empty {
  background: #ffffff !important;
  border-color: rgba(255, 163, 26, 0.28) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10) !important;
}

.ga-arena-empty h3 {
  color: #292929 !important;
}

.ga-arena-empty p {
  color: #4b5563 !important;
}

/* =========================================================
   GAME ADDA HOME PERFORMANCE + ULTRA SMOOTH MOBILE RESPONSIVE
   Fixes scroll jank, heavy repaint, and mobile layout overflow
   Paste at END of static/css/style.css
   ========================================================= */

/* ---------- global scroll/performance base ---------- */

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.ga-home-body,
body:has(.ga-game-home) {
  overflow-x: hidden !important;
  background: #ffffff;
}

/* Prevent accidental horizontal scroll from large transformed sections */
.ga-game-home,
.ga-home-main,
.ga-game-hero,
.ga-arena-section,
.ga-adventure-section,
.ga-game-offers-section,
.ga-game-final-cta {
  max-width: 100%;
  overflow-x: clip;
}

/* Helps browser isolate sections instead of repainting full page */
.ga-game-hero,
.ga-arena-section,
.ga-adventure-section,
.ga-game-offers-section,
.ga-game-final-cta {
  contain: layout paint;
}

/* Render below-fold sections only when near viewport.
   This improves scroll smoothness heavily on Chromium browsers. */
.ga-arena-section,
.ga-adventure-section,
.ga-game-offers-section,
.ga-game-final-cta {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

/* Images should never create layout shift */
.ga-game-home img {
  max-width: 100%;
  height: auto;
}

/* ---------- reduce heavy paint cost on homepage ---------- */

body.ga-home-body .ga-hero-header,
body:has(.ga-game-home) .ga-hero-header {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Avoid constant GPU scaling on hero images while scrolling */
.ga-game-hero-bg img {
  transform: none !important;
  will-change: opacity;
  backface-visibility: hidden;
}

/* Keep hero fade smooth without forcing excessive repaint */
.ga-game-hero-slide {
  will-change: opacity;
  backface-visibility: hidden;
}

/* Expensive blur/shadow reductions only for homepage scrolling areas */
body.ga-home-body .ga-arena-card,
body.ga-home-body .ga-game-offer-card,
body.ga-home-body .ga-adventure-media,
body.ga-home-body .ga-toast,
body:has(.ga-game-home) .ga-arena-card,
body:has(.ga-game-home) .ga-game-offer-card,
body:has(.ga-game-home) .ga-adventure-media,
body:has(.ga-game-home) .ga-toast {
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Reduce massive card hover movement that causes repaint/reflow */
.ga-arena-card,
.ga-game-offer-card {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease !important;
}

.ga-arena-card:hover {
  transform: translateY(-4px) !important;
}

/* Make image hover lighter */
.ga-arena-card:hover .ga-arena-card-media img,
.ga-game-card:hover .ga-game-card-media img {
  transform: none !important;
  filter: none !important;
}

/* Remove repeated grid texture repaint if present */
.ga-arena-section::before,
.ga-arena-section::after {
  pointer-events: none;
}

/* Mobile drawer blur is expensive on low-end phones */
@media (max-width: 980px) {
  .ga-mobile-drawer,
  .ga-mobile-drawer-overlay,
  .ga-hero-mainnav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* ---------- hero responsive correction ---------- */

.ga-game-hero {
  min-height: 100svh;
}

.ga-game-hero-content {
  width: min(820px, 92vw) !important;
}

.ga-game-hero-title {
  max-width: 820px !important;
  font-size: clamp(48px, 5vw, 82px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.055em !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.ga-game-hero-title span {
  display: block !important;
}

.ga-game-hero-text {
  max-width: 680px !important;
  margin-top: clamp(18px, 2.4vh, 28px) !important;
}

.ga-game-hero-actions {
  margin-top: clamp(28px, 3.4vh, 42px) !important;
}

/* ---------- home section spacing ---------- */

.ga-arena-section,
.ga-adventure-section,
.ga-game-offers-section,
.ga-game-final-cta {
  padding-top: clamp(70px, 8vw, 118px) !important;
  padding-bottom: clamp(70px, 8vw, 118px) !important;
}

.ga-game-section-head,
.ga-arena-head {
  margin-bottom: clamp(32px, 4vw, 58px) !important;
}

/* ---------- arena section mobile-safe layout ---------- */

.ga-arena-grid {
  align-items: stretch;
}

.ga-arena-card {
  min-width: 0;
  overflow: hidden;
}

.ga-arena-card-media {
  height: clamp(220px, 22vw, 310px) !important;
}

.ga-arena-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- adventure section responsive correction ---------- */

.ga-adventure-wrap {
  align-items: center;
}

.ga-adventure-media {
  max-width: 100%;
}

.ga-adventure-media img {
  width: 100% !important;
  height: auto !important;
  display: block;
}

/* ---------- offers responsive correction ---------- */

.ga-game-offer-card {
  min-width: 0;
}

.ga-game-offer-media {
  height: clamp(210px, 22vw, 285px) !important;
}

.ga-game-offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   TABLET RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
  body.ga-home-body .ga-home-main,
  body:has(.ga-game-home) .ga-home-main {
    overflow: visible !important;
  }

  body.ga-home-body .ga-game-hero,
  body:has(.ga-game-home) .ga-game-hero {
    height: auto !important;
    min-height: 100svh !important;
  }

  body.ga-home-body .ga-game-hero-content,
  body:has(.ga-game-home) .ga-game-hero-content {
    min-height: 100svh !important;
    padding: 132px 24px 96px !important;
    width: 100% !important;
    justify-content: center;
  }

  .ga-game-hero-title {
    font-size: clamp(44px, 10vw, 70px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.05em !important;
  }

  .ga-game-hero-text {
    max-width: 620px !important;
    font-size: 16px !important;
    line-height: 1.58 !important;
  }

  .ga-game-hero-actions {
    gap: 26px !important;
  }

  .ga-arena-section,
  .ga-adventure-section,
  .ga-game-offers-section,
  .ga-game-final-cta {
    padding: 72px 24px !important;
  }

  .ga-arena-head,
  .ga-game-section-head {
    text-align: left !important;
    max-width: 100% !important;
  }

  .ga-arena-head h2,
  .ga-game-section-head h2,
  .ga-game-final-cta-inner h2 {
    max-width: 100% !important;
    font-size: clamp(38px, 9vw, 64px) !important;
    line-height: 1 !important;
  }

  .ga-arena-head p,
  .ga-game-section-head p,
  .ga-game-final-cta-inner p {
    max-width: 100% !important;
    font-size: 16px !important;
  }

  .ga-arena-grid,
  .ga-game-offer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .ga-arena-card-media,
  .ga-game-offer-media {
    height: clamp(240px, 54vw, 360px) !important;
  }

  .ga-arena-card-body {
    min-height: auto !important;
  }

  .ga-adventure-wrap {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .ga-adventure-content {
    max-width: 100% !important;
  }

  .ga-adventure-content h2 {
    font-size: clamp(42px, 10vw, 66px) !important;
    line-height: 1 !important;
    margin-bottom: 26px !important;
  }

  .ga-adventure-content p {
    font-size: 16px !important;
    line-height: 1.68 !important;
  }

  .ga-adventure-actions {
    margin-top: 34px !important;
  }
}

/* =========================================================
   MOBILE RESPONSIVE
   ========================================================= */

@media (max-width: 640px) {
  body.ga-home-body .ga-game-hero-content,
  body:has(.ga-game-home) .ga-game-hero-content {
    padding: 112px 18px 76px !important;
    justify-content: center;
  }

  .ga-game-hero-title {
    font-size: clamp(36px, 12.2vw, 56px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
  }

  .ga-game-hero-text {
    margin-top: 16px !important;
    font-size: 14.8px !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
  }

  .ga-game-hero-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 28px !important;
  }

  .ga-game-hero-link {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 0 13px !important;
    font-size: 14px !important;
  }

  .ga-game-slider-dots {
    bottom: 20px !important;
    gap: 10px !important;
  }

  .ga-game-dot {
    width: 13px !important;
    height: 13px !important;
  }

  .ga-arena-section,
  .ga-adventure-section,
  .ga-game-offers-section,
  .ga-game-final-cta {
    padding: 58px 18px !important;
  }

  .ga-arena-head h2,
  .ga-game-section-head h2,
  .ga-game-final-cta-inner h2 {
    font-size: clamp(34px, 11vw, 50px) !important;
    line-height: 1.02 !important;
  }

  .ga-arena-head span,
  .ga-game-section-head span,
  .ga-game-final-cta-inner span,
  .ga-game-offer-body span {
    font-size: 11px !important;
    letter-spacing: 0.16em !important;
  }

  .ga-arena-card {
    border-radius: 22px !important;
  }

  .ga-arena-card-media {
    height: clamp(210px, 62vw, 300px) !important;
  }

  .ga-arena-card-number {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
  }

  .ga-arena-card-badge {
    min-height: 32px !important;
    padding: 0 11px !important;
    font-size: 10px !important;
  }

  .ga-arena-card-body {
    padding: 20px !important;
    gap: 18px !important;
  }

  .ga-arena-card-body h3 {
    font-size: clamp(26px, 8.8vw, 38px) !important;
    line-height: 1 !important;
  }

  .ga-arena-card-body p {
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  .ga-arena-card-footer {
    min-height: 44px !important;
    font-size: 12px !important;
  }

  .ga-adventure-wrap {
    gap: 30px !important;
  }

  .ga-adventure-media {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16) !important;
  }

  .ga-adventure-content h2 {
    font-size: clamp(36px, 11.5vw, 54px) !important;
    line-height: 1.03 !important;
    margin-bottom: 22px !important;
  }

  .ga-adventure-content p {
    font-size: 14.8px !important;
    line-height: 1.62 !important;
  }

  .ga-adventure-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 28px !important;
  }

  .ga-adventure-actions a {
    min-width: 0 !important;
    width: 100% !important;
    padding-bottom: 13px !important;
    font-size: 14px !important;
  }

  .ga-game-offer-media {
    height: clamp(200px, 58vw, 290px) !important;
  }

  .ga-game-offer-body {
    padding: 20px !important;
  }

  .ga-game-offer-body h3 {
    font-size: 28px !important;
    line-height: 1 !important;
  }

  .ga-game-final-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .ga-game-final-actions a {
    width: 100% !important;
  }
}

/* =========================================================
   LOW-END MOBILE / REDUCED MOTION
   ========================================================= */

@media (max-width: 640px), (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .ga-game-hero-slide,
  .ga-arena-card,
  .ga-game-offer-card,
  .ga-adventure-media,
  .ga-mobile-drawer,
  .ga-mobile-drawer-overlay {
    transition-duration: 0.18s !important;
  }

  .ga-arena-card:hover,
  .ga-game-offer-card:hover,
  .ga-game-hero-link:hover,
  .ga-adventure-actions a:hover {
    transform: none !important;
  }

  .ga-arena-section,
  .ga-adventure-section,
  .ga-game-offers-section,
  .ga-game-final-cta {
    content-visibility: visible;
  }
}

/* =========================================================
   GAME ADDA CUSTOMER MY BOOKINGS PAGE
   Recent/upcoming + past booking history
   ========================================================= */

.ga-bookings-page {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 6vw, 76px) 0 86px;
  color: #ffffff;
}

.ga-bookings-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 163, 26, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(22, 17, 14, 0.96), rgba(8, 8, 8, 0.96));
  border: 1px solid rgba(255, 163, 26, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.ga-bookings-kicker,
.ga-bookings-section-head span {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffa31a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ga-bookings-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.ga-bookings-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.ga-bookings-main-btn {
  flex: 0 0 auto;
  min-width: 170px;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #080808;
  background: #ffa31a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(255, 163, 26, 0.22);
}

.ga-bookings-main-btn:hover {
  background: #ff8d00;
}

.ga-bookings-filter-row {
  margin: 28px 0 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ga-bookings-filter-row a {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.ga-bookings-filter-row a:hover,
.ga-bookings-filter-row a.is-active {
  color: #080808;
  background: #ffa31a;
  border-color: #ffa31a;
}

.ga-bookings-section-head {
  margin: 40px 0 22px;
}

.ga-bookings-section-head-past {
  margin-top: 56px;
}

.ga-bookings-section-head h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(32px, 3.4vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.ga-bookings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.ga-booking-card {
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    #141414;
  border: 1px solid rgba(255, 163, 26, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.ga-booking-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.ga-booking-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #ffa31a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ga-booking-card h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.ga-booking-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ga-booking-details div {
  min-width: 0;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.ga-booking-details span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.ga-booking-details strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.ga-booking-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ga-booking-status-paid,
.ga-booking-status-booked,
.ga-booking-status-manual {
  color: #07140e;
  background: #20c997;
}

.ga-booking-status-pending_payment {
  color: #1c1300;
  background: #f6b73c;
}

.ga-booking-status-payment_expired,
.ga-booking-status-cancelled {
  color: #ffffff;
  background: #ff5d7a;
}

.ga-booking-warning {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #ffe5ac;
  background: rgba(246, 183, 60, 0.12);
  border: 1px solid rgba(246, 183, 60, 0.22);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.ga-bookings-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 28px;
  background: #141414;
  border: 1px solid rgba(255, 163, 26, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.ga-bookings-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.ga-bookings-table th,
.ga-bookings-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ga-bookings-table th {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ga-bookings-table td {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.ga-bookings-table tbody tr:last-child td {
  border-bottom: 0;
}

.ga-bookings-empty {
  padding: 38px;
  border-radius: 28px;
  text-align: center;
  background: #141414;
  border: 1px solid rgba(255, 163, 26, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.ga-bookings-empty-small {
  padding: 30px;
}

.ga-bookings-empty i {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #080808;
  background: #ffa31a;
  font-size: 22px;
}

.ga-bookings-empty h3 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
}

.ga-bookings-empty p {
  margin: 10px auto 20px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.ga-bookings-empty a {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #080808;
  background: #ffa31a;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}


/* ---------- mobile responsive ---------- */

@media (max-width: 980px) {
  .ga-bookings-page {
    width: min(100% - 28px, 1240px);
    padding-top: 34px;
  }

  .ga-bookings-hero {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .ga-bookings-main-btn {
    width: 100%;
  }

  .ga-bookings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ga-bookings-page {
    width: min(100% - 22px, 1240px);
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .ga-bookings-hero {
    padding: 24px;
    border-radius: 24px;
  }

  .ga-bookings-hero h1 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.02;
  }

  .ga-bookings-hero p {
    font-size: 14.5px;
  }

  .ga-bookings-filter-row {
    gap: 8px;
  }

  .ga-bookings-filter-row a {
    flex: 1 1 auto;
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

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

  .ga-booking-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .ga-booking-card h3 {
    font-size: 28px;
  }

  .ga-booking-details {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ga-booking-details div {
    padding: 12px;
    border-radius: 15px;
  }

  .ga-bookings-empty {
    padding: 28px 20px;
  }
}

/* =========================================================
   GAME ADDA MOBILE HERO/BANNER FINAL UI
   Matches designer mobile reference:
   - Full image background
   - Centered title/content
   - Orange second title line
   - Compact underline buttons
   - Dots at bottom
   - Desktop unchanged
   ========================================================= */

@media (max-width: 640px) {

  body.ga-home-body .ga-game-hero,
  body:has(.ga-game-home) .ga-game-hero {
    position: relative !important;
    width: 100% !important;
    height: 100svh !important;
    min-height: 720px !important;
    max-height: none !important;
    overflow: hidden !important;
    background: #050505 !important;
  }

  body.ga-home-body .ga-game-hero-slider,
  body.ga-home-body .ga-game-hero-slide,
  body.ga-home-body .ga-game-hero-bg,
  body:has(.ga-game-home) .ga-game-hero-slider,
  body:has(.ga-game-home) .ga-game-hero-slide,
  body:has(.ga-game-home) .ga-game-hero-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  body.ga-home-body .ga-game-hero-bg img,
  body:has(.ga-game-home) .ga-game-hero-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    display: block !important;
  }

  body.ga-home-body .ga-game-hero-overlay,
  body:has(.ga-game-home) .ga-game-hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.30) 0%,
        rgba(0, 0, 0, 0.38) 22%,
        rgba(0, 0, 0, 0.48) 48%,
        rgba(0, 0, 0, 0.60) 100%
      ) !important;
  }

  body.ga-home-body .ga-game-hero::after,
  body:has(.ga-game-home) .ga-game-hero::after {
    display: none !important;
  }

  body.ga-home-body .ga-game-hero-content,
  body:has(.ga-game-home) .ga-game-hero-content {
    position: relative !important;
    z-index: 5 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100svh !important;

    padding: 0 28px 96px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
  }

  body.ga-home-body .ga-game-hero-title,
  body:has(.ga-game-home) .ga-game-hero-title {
    width: 100% !important;
    max-width: 330px !important;
    margin: 0 auto !important;

    font-family: "Arial Black", Impact, system-ui, sans-serif !important;
    font-size: clamp(42px, 12.2vw, 58px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.055em !important;
    text-align: center !important;
    text-transform: uppercase !important;

    color: #ffffff !important;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55) !important;
  }

  body.ga-home-body .ga-game-hero-title span,
  body:has(.ga-game-home) .ga-game-hero-title span {
    display: block !important;
    margin: 0 !important;
  }

  body.ga-home-body .ga-game-title-white,
  body:has(.ga-game-home) .ga-game-title-white {
    color: #ffffff !important;
  }

  body.ga-home-body .ga-game-title-orange,
  body:has(.ga-game-home) .ga-game-title-orange {
    color: #ffa31a !important;
  }

  body.ga-home-body .ga-game-hero-text,
  body:has(.ga-game-home) .ga-game-hero-text {
    width: 100% !important;
    max-width: 310px !important;
    margin: 26px auto 0 !important;

    color: #ffffff !important;
    text-align: center !important;
    font-size: 15px !important;
    line-height: 1.72 !important;
    font-weight: 800 !important;

    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.70) !important;
  }

  body.ga-home-body .ga-game-hero-actions,
  body:has(.ga-game-home) .ga-game-hero-actions {
    width: 100% !important;
    max-width: 260px !important;
    margin: 46px auto 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 18px !important;
  }

  body.ga-home-body .ga-game-hero-link,
  body:has(.ga-game-home) .ga-game-hero-link {
    width: auto !important;
    min-width: 150px !important;
    max-width: 190px !important;

    padding: 0 0 12px !important;
    margin: 0 auto !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #ffa31a !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 2px solid #ffa31a !important;
    border-radius: 0 !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
    text-align: center !important;

    box-shadow: none !important;
  }

  body.ga-home-body .ga-game-hero-link:hover,
  body:has(.ga-game-home) .ga-game-hero-link:hover {
    color: #ffffff !important;
    border-color: #ffffff !important;
    transform: none !important;
  }

  body.ga-home-body .ga-game-slider-dots,
  body:has(.ga-game-home) .ga-game-slider-dots {
    position: absolute !important;
    z-index: 8 !important;
    left: 50% !important;
    bottom: 34px !important;
    transform: translateX(-50%) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 13px !important;
  }

  body.ga-home-body .ga-game-dot,
  body:has(.ga-game-home) .ga-game-dot {
    width: 17px !important;
    height: 17px !important;
    border-radius: 50% !important;
    border: 1.8px solid #ffffff !important;
    background: transparent !important;
    padding: 0 !important;
    opacity: 1 !important;
  }

  body.ga-home-body .ga-game-dot.is-active,
  body.ga-home-body .ga-game-dot.active,
  body:has(.ga-game-home) .ga-game-dot.is-active,
  body:has(.ga-game-home) .ga-game-dot.active {
    background: #ffffff !important;
  }
}


/* Extra small mobile correction */
@media (max-width: 390px) {

  body.ga-home-body .ga-game-hero-content,
  body:has(.ga-game-home) .ga-game-hero-content {
    padding-left: 22px !important;
    padding-right: 22px !important;
    padding-bottom: 86px !important;
  }

  body.ga-home-body .ga-game-hero-title,
  body:has(.ga-game-home) .ga-game-hero-title {
    max-width: 300px !important;
    font-size: clamp(38px, 12vw, 52px) !important;
  }

  body.ga-home-body .ga-game-hero-text,
  body:has(.ga-game-home) .ga-game-hero-text {
    max-width: 292px !important;
    font-size: 14px !important;
    line-height: 1.68 !important;
  }

  body.ga-home-body .ga-game-hero-actions,
  body:has(.ga-game-home) .ga-game-hero-actions {
    margin-top: 38px !important;
  }
}

/* =========================================================
   GAME ADDA FOOTER MOBILE FLAME RESPONSIVE FIX
   Desktop footer remains unchanged.
   Fixes mobile flame/black abstract section crop and alignment.
   ========================================================= */

@media (max-width: 768px) {

  .ga-footer {
    position: relative !important;
    overflow: hidden !important;
    background: var(--ga-orange, #ff5a14) !important;
  }

  .ga-footer-flames {
    position: relative !important;
    width: 100% !important;
    height: 210px !important;
    min-height: 210px !important;
    overflow: hidden !important;
    background: #050505 !important;
    z-index: 1 !important;
  }

  .ga-flame {
    position: absolute !important;
    display: block !important;
    background: var(--ga-orange, #ff5a14) !important;
    z-index: 2 !important;
  }

  .ga-flame::before,
  .ga-flame::after {
    content: "" !important;
    position: absolute !important;
    display: block !important;
    background: #050505 !important;
    border-radius: 50% !important;
  }

  .ga-flame-1 {
    left: -42px !important;
    top: -44px !important;
    width: 176px !important;
    height: 176px !important;
    border-radius: 0 0 72% 38% / 0 0 62% 38% !important;
    transform: rotate(8deg) !important;
  }

  .ga-flame-1::before {
    width: 98px !important;
    height: 116px !important;
    left: 48px !important;
    top: 20px !important;
  }

  .ga-flame-1::after {
    width: 58px !important;
    height: 78px !important;
    right: -14px !important;
    bottom: 16px !important;
  }

  .ga-flame-2 {
    left: 96px !important;
    top: 28px !important;
    width: 116px !important;
    height: 162px !important;
    border-radius: 58% 42% 54% 46% / 56% 42% 58% 44% !important;
    transform: rotate(-12deg) !important;
  }

  .ga-flame-2::before {
    width: 54px !important;
    height: 86px !important;
    left: 34px !important;
    top: 56px !important;
  }

  .ga-flame-2::after {
    width: 44px !important;
    height: 66px !important;
    right: 6px !important;
    top: 60px !important;
  }

  .ga-flame-3 {
    left: 190px !important;
    top: 56px !important;
    width: 82px !important;
    height: 126px !important;
    border-radius: 62% 38% 58% 42% / 60% 44% 56% 40% !important;
    transform: rotate(13deg) !important;
  }

  .ga-flame-3::before {
    width: 38px !important;
    height: 72px !important;
    left: 24px !important;
    top: 34px !important;
  }

  .ga-flame-3::after {
    width: 32px !important;
    height: 54px !important;
    right: -5px !important;
    top: 38px !important;
  }

  .ga-flame-4 {
    right: 62px !important;
    top: 32px !important;
    width: 104px !important;
    height: 158px !important;
    border-radius: 64% 36% 60% 40% / 58% 44% 56% 42% !important;
    transform: rotate(16deg) !important;
  }

  .ga-flame-4::before {
    width: 50px !important;
    height: 88px !important;
    left: 30px !important;
    top: 54px !important;
  }

  .ga-flame-4::after {
    width: 38px !important;
    height: 64px !important;
    right: -3px !important;
    top: 58px !important;
  }

  .ga-flame-5 {
    right: -54px !important;
    top: -26px !important;
    width: 156px !important;
    height: 206px !important;
    border-radius: 66% 34% 58% 42% / 58% 42% 58% 42% !important;
    transform: rotate(-18deg) !important;
  }

  .ga-flame-5::before {
    width: 74px !important;
    height: 120px !important;
    left: 50px !important;
    top: 42px !important;
  }

  .ga-flame-5::after {
    width: 50px !important;
    height: 84px !important;
    left: 8px !important;
    bottom: 20px !important;
  }

  .ga-footer-content {
    position: relative !important;
    z-index: 4 !important;
    padding: 28px 22px 120px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    text-align: center !important;
  }

  .ga-footer-nav {
    margin: 0 !important;
  }

  .ga-footer-nav a {
    width: 100% !important;
    margin: 0 0 10px !important;
    text-align: center !important;
  }

  .ga-footer-col h3,
  .ga-footer-cta h3 {
    text-align: center !important;
  }

  .ga-footer-cta p {
    margin: 14px 0 18px !important;
    text-align: center !important;
  }

  .ga-footer-chat-btn {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .ga-social-row {
    justify-content: center !important;
  }

  .ga-footer-credit {
    width: min(324px, 100%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .ga-footer-big-text {
    left: 50% !important;
    right: auto !important;
    bottom: 36px !important;
    transform: translateX(-50%) !important;
    width: max-content !important;
    max-width: 92vw !important;
    font-size: clamp(46px, 15vw, 78px) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.05em !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  .ga-footer-bottom-credit {
    left: 50% !important;
    right: auto !important;
    bottom: 14px !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    padding: 0 14px !important;
    text-align: center !important;
    font-size: 10px !important;
  }
}

@media (max-width: 420px) {

  .ga-footer-flames {
    height: 205px !important;
    min-height: 205px !important;
  }

  .ga-flame-1 {
    left: -50px !important;
    width: 166px !important;
    height: 166px !important;
  }

  .ga-flame-2 {
    left: 76px !important;
    top: 30px !important;
  }

  .ga-flame-3 {
    left: 158px !important;
    top: 64px !important;
  }

  .ga-flame-4 {
    right: 36px !important;
    top: 34px !important;
  }

  .ga-flame-5 {
    right: -68px !important;
  }

  .ga-footer-content {
    padding: 24px 18px 116px !important;
    gap: 30px !important;
  }

  .ga-footer-big-text {
    font-size: clamp(44px, 14vw, 62px) !important;
    bottom: 35px !important;
  }

  .ga-footer-bottom-credit {
    font-size: 9.5px !important;
  }
}
/* =========================================================
   FIX PREVIOUS MOBILE FOOTER FLAME ISSUE
   Do not manually reshape individual flames.
   Keep flame artwork natural and only crop section cleanly.
   ========================================================= */

@media (max-width: 768px) {
  .ga-footer {
    overflow: hidden !important;
    background: #ff5a14 !important;
  }

  .ga-footer-flames {
    position: relative !important;
    height: 160px !important;
    min-height: 160px !important;
    overflow: hidden !important;
    background: #050505 !important;
  }

  .ga-flame {
    background: #ff5a14 !important;
  }

  .ga-flame,
  .ga-flame::before,
  .ga-flame::after {
    transform: none;
  }

  .ga-footer-content {
    position: relative !important;
    z-index: 5 !important;
    padding-top: 28px !important;
    text-align: center !important;
  }
}

/* =========================================================
   FINAL FIX: MOBILE FOOTER FLAME CLEAN RESPONSIVE VERSION
   Desktop footer unchanged.
   This removes broken individual mobile flame blobs.
   ========================================================= */

@media (max-width: 768px) {

  .ga-designer-footer {
    min-height: auto !important;
    padding-bottom: 88px !important;
    overflow: hidden !important;
    background: #ff5a14 !important;
  }

  .ga-footer-art {
    position: relative !important;
    height: 175px !important;
    min-height: 175px !important;
    overflow: hidden !important;
    background: #080808 !important;
  }

  /* Remove all broken individual flame blobs on mobile */
  .ga-art-wave,
  .ga-art-mask,
  .ga-art-face,
  .ga-art-flame,
  .ga-flame-1,
  .ga-flame-2,
  .ga-flame-3,
  .ga-flame-4,
  .ga-flame-5,
  .ga-art-wave::before,
  .ga-art-wave::after,
  .ga-art-mask::before,
  .ga-art-mask::after,
  .ga-art-flame::before,
  .ga-art-flame::after,
  .ga-flame-1::before,
  .ga-flame-1::after,
  .ga-flame-2::before,
  .ga-flame-2::after,
  .ga-flame-3::before,
  .ga-flame-3::after,
  .ga-flame-4::before,
  .ga-flame-4::after,
  .ga-flame-5::before,
  .ga-flame-5::after {
    display: none !important;
  }

  /* Clean orange flame/wave band */
  .ga-footer-art::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: -8% !important;
    right: -8% !important;
    bottom: -1px !important;
    height: 132px !important;
    background: #ff5a14 !important;
    z-index: 2 !important;
    clip-path: polygon(
      0 60%,
      6% 28%,
      13% 55%,
      20% 24%,
      27% 52%,
      35% 32%,
      43% 58%,
      51% 25%,
      59% 54%,
      67% 30%,
      75% 57%,
      84% 24%,
      92% 51%,
      100% 28%,
      100% 100%,
      0 100%
    ) !important;
  }

  /* Soft black cutouts, controlled and responsive */
  .ga-footer-art::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 42px !important;
    width: 320px !important;
    height: 95px !important;
    transform: translateX(-50%) !important;
    z-index: 3 !important;
    background:
      radial-gradient(circle at 16% 50%, #080808 0 18px, transparent 19px),
      radial-gradient(circle at 33% 60%, #080808 0 22px, transparent 23px),
      radial-gradient(circle at 50% 48%, #080808 0 24px, transparent 25px),
      radial-gradient(circle at 67% 58%, #080808 0 22px, transparent 23px),
      radial-gradient(circle at 84% 50%, #080808 0 18px, transparent 19px);
    pointer-events: none !important;
  }

  .ga-footer-content {
    position: relative !important;
    z-index: 5 !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 24px 18px 110px !important;
    text-align: center !important;
    background: #ff5a14 !important;
  }

  .ga-footer-nav {
    margin: 0 !important;
  }

  .ga-footer-nav a {
    width: max-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .ga-footer-col h3,
  .ga-footer-cta h3 {
    text-align: center !important;
  }

  .ga-footer-cta p {
    text-align: center !important;
    margin: 14px 0 18px !important;
  }

  .ga-footer-chat-btn {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .ga-social-row {
    justify-content: center !important;
  }

  .ga-footer-credit {
    width: min(330px, 100%) !important;
    white-space: normal !important;
    flex-wrap: wrap !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .ga-footer-big-text {
    left: 50% !important;
    right: auto !important;
    bottom: 38px !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    white-space: nowrap !important;
    font-size: clamp(50px, 16vw, 72px) !important;
    line-height: 0.86 !important;
    letter-spacing: -0.05em !important;
  }

  .ga-footer-bottom-credit {
    left: 50% !important;
    right: auto !important;
    bottom: 13px !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 24px) !important;
    white-space: normal !important;
    text-align: center !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 420px) {
  .ga-footer-art {
    height: 165px !important;
    min-height: 165px !important;
  }

  .ga-footer-art::before {
    height: 124px !important;
  }

  .ga-footer-art::after {
    width: 285px !important;
    bottom: 38px !important;
  }

  .ga-footer-content {
    padding: 22px 16px 106px !important;
  }

  .ga-footer-big-text {
    font-size: clamp(48px, 15vw, 62px) !important;
    bottom: 36px !important;
  }

  .ga-footer-bottom-credit {
    font-size: 9.5px !important;
  }
}

/* =========================================================
   FORGOT PASSWORD / OTP / RESET PASSWORD PAGES
   Uses existing ga-auth-* structure.
   Safe to paste at bottom of style.css.
   ========================================================= */

.ga-auth-screen {
  min-height: calc(100vh - 80px);
  width: 100%;
  padding: 48px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 77, 77, 0.15), transparent 36%),
    linear-gradient(135deg, #120b1f 0%, #090812 45%, #171024 100%);
}

.ga-auth-shell {
  width: min(1120px, 100%);
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.ga-auth-left {
  position: relative;
  padding: 42px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 193, 7, 0.14), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 28%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.ga-auth-left::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -120px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.12);
  filter: blur(8px);
}

.ga-auth-left::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255, 77, 77, 0.15);
  filter: blur(6px);
}

.ga-auth-back {
  position: relative;
  z-index: 2;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.25s ease;
}

.ga-auth-back:hover {
  color: #111111;
  background: #ffc107;
  border-color: #ffc107;
  transform: translateX(-3px);
}

.ga-auth-brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 24px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ga-auth-brand-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #111111;
  background: linear-gradient(135deg, #ffc107, #ff8a00);
  box-shadow: 0 18px 35px rgba(255, 193, 7, 0.25);
}

.ga-auth-brand-icon i {
  font-size: 26px;
}

.ga-auth-copy {
  position: relative;
  z-index: 2;
  max-width: 470px;
}

.ga-auth-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #ffc107;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ga-auth-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.ga-auth-copy p {
  margin: 20px 0 0;
  max-width: 410px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.75;
}

.ga-auth-right {
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 14, 0.58);
}

.ga-auth-card {
  width: min(430px, 100%);
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ga-auth-card-head {
  margin-bottom: 26px;
}

.ga-auth-card-head span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.16);
  color: #8a5b00;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ga-auth-card-head h2 {
  margin: 0;
  color: #15121d;
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.ga-auth-card-head p {
  margin: 12px 0 0;
  color: #686274;
  font-size: 14px;
  line-height: 1.6;
}

.ga-auth-form {
  display: grid;
  gap: 17px;
}

.ga-auth-field {
  display: grid;
  gap: 8px;
}

.ga-auth-field label {
  color: #201b2d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.ga-auth-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid #ded9e8;
  background: #fbfaff;
  color: #15121d;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  transition: 0.22s ease;
}

.ga-auth-field input::placeholder {
  color: #9b95a8;
  font-weight: 600;
}

.ga-auth-field input:focus {
  border-color: #ffc107;
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(255, 193, 7, 0.18),
    0 12px 24px rgba(18, 11, 31, 0.08);
}

.ga-auth-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffc107, #ff8a00);
  color: #161008;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(255, 138, 0, 0.28);
  transition: 0.24s ease;
}

.ga-auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(255, 138, 0, 0.36);
}

.ga-auth-submit:active {
  transform: translateY(0);
}

.ga-auth-switch,
.ga-auth-staff-link {
  margin-top: 22px;
  text-align: center;
}

.ga-auth-switch p {
  margin: 0;
  color: #746f7f;
  font-size: 14px;
  font-weight: 700;
}

.ga-auth-switch a,
.ga-auth-staff-link a {
  color: #d78300;
  font-weight: 950;
  text-decoration: none;
}

.ga-auth-switch a:hover,
.ga-auth-staff-link a:hover {
  color: #111111;
  text-decoration: underline;
}

.ga-auth-staff-link {
  margin-top: -4px;
  text-align: right;
}

.ga-auth-staff-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

/* OTP field polish */
#otp {
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.35em;
  font-weight: 950;
}

/* Flash messages inside auth pages, if rendered from base.html */
.ga-auth-screen .alert,
.ga-auth-screen .flash,
.ga-auth-screen .toast {
  border-radius: 14px;
}

/* Responsive */
@media (max-width: 920px) {
  .ga-auth-screen {
    padding: 28px 14px;
    align-items: flex-start;
  }

  .ga-auth-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 26px;
  }

  .ga-auth-left {
    min-height: 360px;
    padding: 30px;
  }

  .ga-auth-right {
    padding: 26px;
  }

  .ga-auth-card {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .ga-auth-screen {
    padding: 18px 10px;
  }

  .ga-auth-shell {
    border-radius: 22px;
  }

  .ga-auth-left {
    min-height: 310px;
    padding: 24px;
  }

  .ga-auth-brand {
    font-size: 19px;
  }

  .ga-auth-brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .ga-auth-copy h1 {
    font-size: 36px;
  }

  .ga-auth-copy p {
    font-size: 14px;
  }

  .ga-auth-right {
    padding: 18px;
  }

  .ga-auth-card {
    padding: 22px;
    border-radius: 22px;
  }

  .ga-auth-card-head h2 {
    font-size: 30px;
  }

  .ga-auth-field input,
  .ga-auth-submit {
    min-height: 50px;
  }

  #otp {
    font-size: 19px;
    letter-spacing: 0.24em;
  }
}

/* =========================================================
   GAME ADDA LEGAL / RAZORPAY POLICY PAGES + FOOTER LINKS
   ========================================================= */
.ga-footer-policy-strip {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 32px));
  margin: 8px auto 0;
  padding: 8px 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.ga-footer-policy-strip a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ga-footer-policy-strip a:hover {
  color: #ffa31a;
  transform: translateY(-1px);
}

.ga-policy-page {
  min-height: 100vh;
  padding: clamp(48px, 6vw, 86px) 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 163, 26, 0.14), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(124, 92, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #080808 0%, #111111 42%, #f4f4f4 42%, #f4f4f4 100%);
  color: #171717;
}

.ga-policy-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.ga-policy-hero {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 163, 26, 0.18), rgba(255, 255, 255, 0.04)),
    #101010;
  color: #ffffff;
  border: 1px solid rgba(255, 163, 26, 0.22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.ga-policy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #ffa31a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ga-policy-kicker i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #080808;
  background: #ffa31a;
}

.ga-policy-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.ga-policy-hero p {
  max-width: 850px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.ga-policy-updated {
  display: inline-flex;
  margin-top: 20px !important;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 163, 26, 0.14);
  border: 1px solid rgba(255, 163, 26, 0.2);
  color: #ffd38a !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ga-policy-card {
  margin-top: 26px;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.ga-policy-card h2 {
  margin: 28px 0 8px;
  color: #171717;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 950;
}

.ga-policy-card h2:first-child {
  margin-top: 0;
}

.ga-policy-card p {
  margin: 0;
  color: #555555;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
}

@media (max-width: 700px) {
  .ga-footer-policy-strip {
    padding: 14px 10px;
    gap: 10px 12px;
  }

  .ga-footer-policy-strip a {
    font-size: 10px;
    letter-spacing: 0.05em;
  }

  .ga-policy-page {
    padding: 34px 0 52px;
  }

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

/* Footer copyright + policy links fixed bottom layout */
.ga-footer-legal-bottom {
  position: relative;
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 0 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.ga-footer-legal-bottom .ga-footer-bottom-credit {
  position: static !important;
  z-index: 21;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.ga-footer-legal-bottom .ga-footer-bottom-credit a {
  color: #ffffff;
  font-weight: 950;
  text-decoration: none;
}

.ga-footer-legal-bottom .ga-footer-bottom-credit a:hover {
  color: #ffa31a;
}

.ga-footer-legal-bottom .ga-footer-policy-strip {
  position: static !important;
  z-index: 21;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  text-align: center;
}

.ga-footer-legal-bottom .ga-footer-policy-strip a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ga-footer-legal-bottom .ga-footer-policy-strip a:hover {
  color: #ffa31a;
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .ga-footer-legal-bottom {
    width: min(100% - 24px, 1120px);
    margin-top: 12px;
    padding-bottom: 16px;
    gap: 8px;
  }

  .ga-footer-legal-bottom .ga-footer-bottom-credit {
    font-size: 12px;
  }

  .ga-footer-legal-bottom .ga-footer-policy-strip {
    gap: 7px 12px;
  }

  .ga-footer-legal-bottom .ga-footer-policy-strip a {
    font-size: 10px;
    letter-spacing: 0.04em;
  }
}

/* =========================================================
   FOOTER FINAL FIX - CREDIT BLACK CENTER + POLICY BELOW
   ========================================================= */

.ga-footer-big-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0 !important;
}

.ga-footer-legal-bottom {
  position: relative !important;
  z-index: 50 !important;
  width: 100%;
  margin: 0 auto !important;
  padding: 0 16px 18px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-align: center !important;
  clear: both !important;
}

.ga-footer-legal-bottom .ga-footer-bottom-credit {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  transform: none !important;

  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;

  display: block !important;
  text-align: center !important;

  color: #000000 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.ga-footer-legal-bottom .ga-footer-bottom-credit a {
  color: #000000 !important;
  font-weight: 950 !important;
  text-decoration: none !important;
}

.ga-footer-legal-bottom .ga-footer-bottom-credit a:hover {
  color: #000000 !important;
  text-decoration: underline !important;
}

.ga-footer-legal-bottom .ga-footer-policy-strip {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  transform: none !important;

  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 8px 18px !important;

  text-align: center !important;
}

.ga-footer-legal-bottom .ga-footer-policy-strip a {
  color: #000000 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.ga-footer-legal-bottom .ga-footer-policy-strip a:hover {
  color: #000000 !important;
  text-decoration: underline !important;
  transform: none !important;
}

@media (max-width: 700px) {
  .ga-footer-legal-bottom {
    padding: 0 12px 16px !important;
    gap: 7px !important;
  }

  .ga-footer-legal-bottom .ga-footer-bottom-credit {
    font-size: 13px !important;
  }

  .ga-footer-legal-bottom .ga-footer-policy-strip {
    gap: 6px 12px !important;
  }

  .ga-footer-legal-bottom .ga-footer-policy-strip a {
    font-size: 10px !important;
    letter-spacing: 0.03em !important;
  }
}

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

.contact-captcha-box {
  margin-top: 18px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff8df, #fff2bd);
  border: 1px solid rgba(255, 193, 7, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 12px;
}

.contact-captcha-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border-radius: 15px;
  background: #111111;
  color: #ffffff;
}

.contact-captcha-question span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.contact-captcha-question strong {
  color: #ffc107;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.contact-captcha-help {
  margin: 0;
  color: #6e5a13;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}


/* =========================================================
   ADMIN CONTACT MESSAGES PAGE
   ========================================================= */

.contact-msg-page {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px) 0;
}

.contact-msg-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.contact-msg-header h1 {
  margin: 6px 0 8px;
  color: #111111;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.contact-msg-header p {
  margin: 0;
  color: #626262;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
}

.contact-msg-summary {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-msg-stat {
  min-width: 105px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-msg-stat strong {
  display: block;
  color: #111111;
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
}

.contact-msg-stat span {
  display: block;
  margin-top: 6px;
  color: #777777;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-msg-stat.unread {
  background: #fff6dc;
  border-color: rgba(255, 163, 26, 0.35);
}

.contact-msg-stat.unread strong {
  color: #b86d00;
}

.contact-msg-stat.read {
  background: #ecfdf3;
  border-color: rgba(34, 197, 94, 0.25);
}

.contact-msg-stat.read strong {
  color: #15803d;
}

.contact-msg-toolbar {
  margin-bottom: 22px;
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.contact-msg-filter-form {
  display: grid;
  grid-template-columns: 1fr 180px auto auto;
  gap: 12px;
  align-items: center;
}

.contact-msg-search {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  background: #f6f6f6;
  border: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-msg-search i {
  color: #888888;
}

.contact-msg-search input,
.contact-msg-filter-form select {
  width: 100%;
  height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #171717;
  font-size: 14px;
  font-weight: 700;
}

.contact-msg-filter-form select {
  padding: 0 13px;
  border-radius: 16px;
  background: #f6f6f6;
  border: 1px solid #e8e8e8;
}

.contact-msg-filter-btn,
.contact-msg-reset-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.contact-msg-filter-btn {
  background: #111111;
  color: #ffffff;
}

.contact-msg-reset-btn {
  background: #fff2cf;
  color: #7a4a00;
}

.contact-msg-grid {
  display: grid;
  gap: 18px;
}

.contact-msg-card {
  padding: 22px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.contact-msg-card.is-unread {
  border-color: rgba(255, 163, 26, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 163, 26, 0.08), transparent 42%),
    #ffffff;
}

.contact-msg-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.contact-msg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-msg-badge.unread {
  background: #fff0c7;
  color: #a35d00;
}

.contact-msg-badge.read {
  background: #dcfce7;
  color: #166534;
}

.contact-msg-card h2 {
  margin: 0;
  color: #111111;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.contact-msg-meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.contact-msg-meta span,
.contact-msg-date {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #686868;
  font-size: 13px;
  font-weight: 750;
}

.contact-msg-meta a {
  color: #333333;
  text-decoration: none;
}

.contact-msg-meta a:hover {
  color: #b86d00;
  text-decoration: underline;
}

.contact-msg-date {
  min-width: max-content;
  padding: 9px 11px;
  border-radius: 999px;
  background: #f6f6f6;
}

.contact-msg-body {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: #f7f7f7;
  border: 1px solid #eeeeee;
}

.contact-msg-body p {
  margin: 0;
  color: #333333;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 600;
  white-space: pre-wrap;
}

.contact-msg-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-msg-actions form {
  margin: 0;
}

.contact-msg-action-btn {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 13px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.contact-msg-action-btn.success {
  background: #dcfce7;
  color: #166534;
}

.contact-msg-action-btn.soft {
  background: #f1f1f1;
  color: #292929;
}

.contact-msg-action-btn.danger {
  background: #fee2e2;
  color: #991b1b;
}

.contact-msg-action-btn:hover {
  transform: translateY(-1px);
}

.contact-msg-empty {
  padding: 52px 24px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px dashed rgba(0, 0, 0, 0.18);
  text-align: center;
}

.contact-msg-empty i {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: #fff1cc;
  color: #b86d00;
  font-size: 30px;
}

.contact-msg-empty h2 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 26px;
  font-weight: 950;
}

.contact-msg-empty p {
  max-width: 560px;
  margin: 0 auto;
  color: #666666;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 650;
}

@media (max-width: 900px) {
  .contact-msg-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-msg-card-top {
    flex-direction: column;
  }

  .contact-msg-date {
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .contact-msg-page {
    width: min(100% - 22px, 1240px);
    padding: 22px 0 36px;
  }

  .contact-msg-summary {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .contact-msg-stat {
    min-width: 0;
    padding: 13px 8px;
    border-radius: 16px;
  }

  .contact-msg-stat strong {
    font-size: 23px;
  }

  .contact-msg-stat span {
    font-size: 9px;
  }

  .contact-msg-toolbar {
    padding: 12px;
    border-radius: 20px;
  }

  .contact-msg-card {
    padding: 16px;
    border-radius: 22px;
  }

  .contact-msg-card h2 {
    font-size: 21px;
  }

  .contact-msg-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-msg-actions form,
  .contact-msg-action-btn {
    width: 100%;
  }

  .contact-msg-action-btn {
    min-height: 42px;
  }

  .contact-captcha-question {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   ADMIN USERS - STAFF PASSWORD CHANGE FORM
   ========================================================= */

.staff-password-form {
  min-width: 360px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 8px;
}

.staff-password-form input {
  width: 100%;
  min-height: 38px;
  padding: 8px 11px;
  border-radius: 10px;
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #171717;
  font-size: 12px;
  font-weight: 700;
  outline: none;
}

.staff-password-form input:focus {
  border-color: #ffa31a;
  box-shadow: 0 0 0 3px rgba(255, 163, 26, 0.16);
}

.staff-password-form .btn.small {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .staff-password-form {
    min-width: 280px;
    grid-template-columns: 1fr;
  }

  .staff-password-form .btn.small {
    width: 100%;
  }
}
/* =========================================================
   GAME ADDA FOOTER MOBILE FIX ONLY
   Desktop footer design stays unchanged.
   Fixes mobile GAME ADDA text clipping/cutting.
   Paste at END of static/css/style.css
   ========================================================= */

@media (max-width: 768px) {

  .ga-designer-footer {
    position: relative !important;
    min-height: auto !important;
    overflow: hidden !important;
    background: #ff5a14 !important;
    padding-bottom: 28px !important;
  }

  .ga-footer-content {
    position: relative !important;
    z-index: 5 !important;
    padding-bottom: 44px !important;
  }

  .ga-footer-big-text {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    z-index: 4 !important;
    transform: none !important;

    display: block !important;
    width: 100% !important;
    max-width: 100% !important;

    margin: 34px auto 16px !important;
    padding: 0 14px !important;

    color: #080808 !important;
    font-family: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
    font-size: clamp(52px, 17vw, 92px) !important;
    line-height: 0.98 !important;
    font-weight: 400 !important;
    letter-spacing: -0.045em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    overflow: visible !important;
  }

  .ga-footer-legal-bottom {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    z-index: 8 !important;

    width: min(100% - 24px, 760px) !important;
    margin: 0 auto !important;
    padding: 0 0 28px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-align: center !important;
  }

  .ga-footer-bottom-credit {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;

    color: #080808 !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .ga-footer-policy-strip {
    position: relative !important;
    z-index: 9 !important;

    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px 14px !important;
    text-align: center !important;
  }

  .ga-footer-policy-strip a {
    color: #080808 !important;
    font-size: 11px !important;
    line-height: 1.25 !important;
    font-weight: 950 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 420px) {
  .ga-footer-big-text {
    font-size: clamp(44px, 16vw, 66px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.035em !important;
    margin-top: 30px !important;
    margin-bottom: 14px !important;
  }

  .ga-footer-bottom-credit {
    font-size: 12px !important;
  }

  .ga-footer-policy-strip a {
    font-size: 10.5px !important;
  }
}