/* ==============================
   MPO188 Landing Page - Styles
   ============================== */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #070d1a;
  --bg-card:      #0d1829;
  --bg-alt:       #09111f;
  --blue-deep:    #0a1628;
  --blue-mid:     #1a3a6e;
  --blue-main:    #0ea5e9;
  --blue-light:   #38bdf8;
  --cyan:         #06b6d4;
  --cyan-light:   #67e8f9;
  --text:         #f0f8ff;
  --text-muted:   #7ba5c8;
  --text-dim:     #3d6080;
  --border:       rgba(56, 189, 248, 0.18);
  --border-hover: rgba(56, 189, 248, 0.4);
  --radius-sm:    0.4rem;
  --radius-md:    0.75rem;
  --radius-lg:    1.25rem;
  --radius-xl:    1.75rem;
  --shadow-blue:  0 4px 32px rgba(14, 165, 233, 0.25);
  --font:         'Inter', ui-sans-serif, system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}


/* ---- Typography ---- */
.text-gradient {
  background: linear-gradient(135deg, var(--blue-light), var(--cyan), var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--cyan-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-main), var(--cyan));
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-light), var(--cyan-light));
  box-shadow: 0 6px 28px rgba(14, 165, 233, 0.5);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(14, 165, 233, 0.1);
  color: var(--text);
  border-color: var(--border-hover);
}

.btn-outline {
  background: rgba(14, 165, 233, 0.08);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: rgba(14, 165, 233, 0.18);
  color: var(--text);
  border-color: var(--border-hover);
}

.btn-lg {
  padding: 0.85rem 2.2rem;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}


/* ---- Section Common ---- */
.section {
  padding: 5rem 1.5rem;
}

.section-alt {
  background: radial-gradient(ellipse 100% 60% at 50% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 70%),
              var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .badge {
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.section-footer {
  text-align: center;
  margin-top: 2.5rem;
}


/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(7, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(14, 165, 233, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(176, 213, 240, 0.8);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--cyan-light);
}

.nav-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(7, 13, 26, 0.98);
  backdrop-filter: blur(20px);
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  gap: 0.25rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile li a {
  display: block;
  padding: 0.7rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(56, 189, 248, 0.06);
  transition: color 0.2s;
}

.nav-mobile li a:hover {
  color: var(--cyan-light);
}

.nav-mobile-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.75rem;
}

.nav-mobile-actions .btn {
  flex: 1;
  justify-content: center;
}


/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(56, 189, 248, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 60%),
    var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(14, 165, 233, 0.12);
  top: 10%;
  left: 10%;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.1);
  bottom: 15%;
  right: 10%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 1.5rem 3rem;
  text-align: center;
}

.hero-content .badge {
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(176, 213, 240, 0.75);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  border: 1px solid var(--border);
  background: rgba(14, 165, 233, 0.07);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-value {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--cyan-light);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(56, 189, 248, 0.4);
  font-size: 0.7rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(56, 189, 248, 0.4));
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ==============================
   PROVIDER MARQUEE
   ============================== */
.marquee-wrapper {
  padding: 1rem 0;
  background: rgba(10, 22, 42, 0.6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
}

.marquee-item {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(123, 165, 200, 0.55);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ==============================
   GAMES SECTION
   ============================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.game-card:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.2);
  border-color: var(--border-hover);
}

.game-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover img {
  transform: scale(1.1);
}

.game-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #070d1a 0%, transparent 55%);
  pointer-events: none;
}

.game-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  color: #fff;
}

.tag-hot     { background: #ef4444; }
.tag-new     { background: #22c55e; }
.tag-populer { background: #eab308; }
.tag-gacor   { background: #3b82f6; }

.game-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  z-index: 2;
}

.game-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.game-provider {
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-top: 2px;
}

.game-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.5);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}


/* ==============================
   BONUS SECTION
   ============================== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.bonus-card {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.07) 0%, rgba(6, 182, 212, 0.03) 100%);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.bonus-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-blue);
}

.bonus-badge {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan-light);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.bonus-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 1rem;
  background: rgba(14, 165, 233, 0.1);
  border-radius: var(--radius-md);
}

.bonus-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.bonus-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}


/* ==============================
   FEATURES SECTION
   ============================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s ease;
}

.feature-card:hover {
  border-color: var(--border-hover);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(6, 182, 212, 0.1));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--cyan);
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}


/* ==============================
   DEPOSIT SECTION
   ============================== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.payment-card {
  border: 1px solid var(--border);
  background: rgba(14, 165, 233, 0.05);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: border-color 0.2s ease;
}

.payment-card:hover {
  border-color: var(--border-hover);
}

.payment-abbr {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--cyan-light);
}

.payment-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
}

.payment-type {
  font-size: 0.62rem;
  color: var(--text-dim);
}

.payment-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.payment-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.payment-info-item svg {
  color: var(--cyan);
  flex-shrink: 0;
}


/* ==============================
   CTA SECTION
   ============================== */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1a3a6e 0%, #0d1f45 50%, #152d5c 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 0 80px rgba(14, 165, 233, 0.15);
}

.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 248, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 248, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.cta-icon {
  color: var(--cyan-light);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-desc {
  font-size: 0.95rem;
  color: rgba(176, 213, 240, 0.65);
  max-width: 520px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}


/* ==============================
   FOOTER
   ============================== */
.footer {
  border-top: 1px solid var(--border);
  background: #060c18;
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 40px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-btn:hover {
  border-color: var(--border-hover);
  color: var(--cyan);
  background: rgba(14, 165, 233, 0.15);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.83rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cyan-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text-dim);
}

.footer-contact svg {
  color: var(--cyan);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(56, 189, 248, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-license {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-license svg {
  color: rgba(6, 182, 212, 0.5);
}


/* ==============================
   SCROLL ANIMATIONS
   ============================== */
.scroll-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.scroll-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for grid children */
.games-grid   .scroll-anim:nth-child(2) { transition-delay: 0.07s; }
.games-grid   .scroll-anim:nth-child(3) { transition-delay: 0.14s; }
.games-grid   .scroll-anim:nth-child(4) { transition-delay: 0.21s; }
.games-grid   .scroll-anim:nth-child(5) { transition-delay: 0.28s; }
.games-grid   .scroll-anim:nth-child(6) { transition-delay: 0.35s; }
.bonus-grid   .scroll-anim:nth-child(2) { transition-delay: 0.1s;  }
.bonus-grid   .scroll-anim:nth-child(3) { transition-delay: 0.2s;  }
.bonus-grid   .scroll-anim:nth-child(4) { transition-delay: 0.3s;  }
.features-grid .scroll-anim:nth-child(2) { transition-delay: 0.1s; }
.features-grid .scroll-anim:nth-child(3) { transition-delay: 0.2s; }
.features-grid .scroll-anim:nth-child(4) { transition-delay: 0.3s; }
.payment-grid .scroll-anim:nth-child(2) { transition-delay: 0.05s; }
.payment-grid .scroll-anim:nth-child(3) { transition-delay: 0.10s; }
.payment-grid .scroll-anim:nth-child(4) { transition-delay: 0.15s; }
.payment-grid .scroll-anim:nth-child(5) { transition-delay: 0.20s; }
.payment-grid .scroll-anim:nth-child(6) { transition-delay: 0.25s; }
.payment-grid .scroll-anim:nth-child(7) { transition-delay: 0.30s; }
.payment-grid .scroll-anim:nth-child(8) { transition-delay: 0.35s; }

/* Hero animate */
.animate-fade-up {
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0);    }
}


/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .games-grid    { grid-template-columns: repeat(3, 1fr); }
  .bonus-grid    { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-grid  { grid-template-columns: repeat(4, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions { display: none; }
  .nav-toggle  { display: flex; }

  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .games-grid    { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid    { grid-template-columns: repeat(1, 1fr); }
  .features-grid { grid-template-columns: repeat(1, 1fr); }
  .payment-grid  { grid-template-columns: repeat(4, 1fr); }
  .footer-grid   { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .games-grid   { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions  { flex-direction: column; align-items: center; }
}