/* =========================================================
   RVIP GAMEZONE — COMPLETE CSS
   Base Theme: #270000 (Deep Red/Maroon) + Gold Accent
   ========================================================= */

/* ─── ROOT TOKENS ──────────────────────────────────────── */
:root {
  --bg:           #1a0000;
  --bg-soft:      #270000;
  --panel:        rgba(255, 255, 255, 0.08);
  --panel-border: rgba(255, 255, 255, 0.14);

  --text:      #eaf0ff;
  --text-dark: #111827;
  --muted:     #c4a8a8;

  --primary:   #8d5d15;
  --primary-2: #c48a2a;
  --primary-3: #f4cf7b;
  --accent:    #3b82f6;
  --accent-2:  #7c3aed;
  --success:   #16a34a;
  --danger:    #ef4444;

  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.22);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.14);

  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --container: 1280px;
  --transition: 0.3s ease;
}

/* ─── BASIC RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body,
h1, h2, h3, h4, h5, h6,
p, a, span, li, ul, ol,
input, button, textarea, select,
label, small, strong, em {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
  line-height: 1.5;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(196, 138, 42, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(150, 30, 30, 0.18), transparent 28%),
    linear-gradient(180deg, #1a0000 0%, #270000 45%, #1f0000 100%);
  color: var(--text);
  font-size: 16px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { outline: none; border: none; background: none; }
ul, ol { list-style-position: outside; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #150000; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  border-radius: 999px;
}
::selection { background: rgba(244, 207, 123, 0.28); color: #fff; }

/* ─── COMMON SAFETY ────────────────────────────────────── */
.site-header, .hero-section, .app-info-section,
.nb9game-section, .site-footer, .container,
.hero-content, .container-nb9, .responsive-table {
  max-width: 100%;
}

/* ─── UTILITY ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ─── HEADER ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11000;
  isolation: isolate;
  padding: 14px 0;
  background:
    linear-gradient(135deg, rgba(30, 5, 5, 0.94), rgba(20, 5, 5, 0.94)),
    linear-gradient(90deg, #270000, #3d0000, #1a0000);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 207, 123, 0.75), transparent);
}

/* Logo */
.logo { flex-shrink: 0; }
.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.3));
}

/* Desktop Nav */
.main-nav { margin-left: auto; }
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-nav ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #f9fafb;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: #fff;
  border-color: rgba(244, 207, 123, 0.35);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 11001;
}
.hamburger:hover { background: rgba(255, 255, 255, 0.12); }
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 999px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── MOBILE MENU ──────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: min(320px, 86vw);
  max-width: 86vw;
  height: 100dvh;
  padding: 80px 22px 28px;
  background:
    linear-gradient(180deg, rgba(30, 5, 5, 0.98), rgba(20, 5, 5, 0.98)),
    linear-gradient(90deg, #270000, #3d0000, #1a0000);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transition: right 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.active {
  right: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.4), 0 0 0 100vmax rgba(0, 0, 0, 0.55);
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.mobile-menu ul li a {
  display: block;
  padding: 14px 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  transition: var(--transition);
}
.mobile-menu ul li a:hover,
.mobile-menu ul li a:focus {
  color: #fff;
  background: rgba(244, 207, 123, 0.12);
  border-color: rgba(244, 207, 123, 0.25);
  transform: translateX(-3px);
}
.close-btn {
  position: absolute;
  top: 18px; right: 18px;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  z-index: 2;
}
.close-btn:hover { background: rgba(255, 255, 255, 0.14); transform: rotate(90deg); }

@supports not (height: 100dvh) { .mobile-menu { height: 100vh; } }

/* ─── HERO SECTION ─────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 72px 20px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 207, 123, 0.18), transparent 25%),
    radial-gradient(circle at 80% 30%, rgba(180, 40, 40, 0.22), transparent 25%),
    linear-gradient(135deg, #1a0000 0%, #2f0000 55%, #1f0000 100%);
}
.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}
.hero-section::before {
  width: 220px; height: 220px;
  top: -70px; left: -50px;
  background: rgba(244, 207, 123, 0.25);
}
.hero-section::after {
  width: 240px; height: 240px;
  bottom: -80px; right: -50px;
  background: rgba(200, 50, 50, 0.28);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 34px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-lg);
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.hero-logo {
  width: 380px; height: 380px;
  margin: 18px 0 20px;
  object-fit: contain;
  border-radius: 50%;
  padding: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28), inset 0 1px 1px rgba(255,255,255,0.12);
}
.hero-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 8px;
}
.hero-download-text {
  font-size: 1rem;
  color: #c9d3ee;
  margin-bottom: 26px;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 420px;
  margin-top: 8px;
}
.download-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 28px rgba(141, 93, 21, 0.30), inset 0 1px 0 rgba(255,255,255,0.14);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  animation: btnPulse 2.4s ease-in-out infinite;
}
.download-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.26), transparent);
  transition: 0.7s ease;
}
.download-btn:hover::before { transform: translateX(120%); }
.download-btn:hover,
.download-btn:focus {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #a86d16, #f1bc49);
  box-shadow: 0 18px 35px rgba(141, 93, 21, 0.40), 0 0 0 4px rgba(244, 207, 123, 0.14);
}
.hero-description {
  margin-top: 28px;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.8;
  color: #d7def4;
}
.hero-description strong { font-weight: 700; color: #fff; }

@keyframes btnPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* ─── APP INFO SECTION ─────────────────────────────────── */
.app-info-section {
  padding: 72px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)), #f5f7fb;
  text-align: center;
}
.section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.responsive-table {
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.responsive-table table {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.10);
}
.responsive-table th,
.responsive-table td {
  padding: 16px 18px;
  text-align: left;
  color: #1f2937;
  border-bottom: 1px solid #e5e7eb;
}
.responsive-table tr:last-child td { border-bottom: none; }
.responsive-table th {
  font-weight: 700;
  text-align: center;
  color: #111827;
  background: linear-gradient(135deg, #f8fafc, #edf2ff);
}
.responsive-table td { background: #fff; }
.responsive-table tr:hover td { background: #fafcff; }
.responsive-table a {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}
.responsive-table a:hover { color: #0f3fb8; text-decoration: underline; }
.app-description {
  max-width: 840px;
  margin: 24px auto 0;
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
}

/* ─── NB9 / CONTENT SECTION ────────────────────────────── */
.nb9game-section {
  padding: 76px 20px;
  background:
    radial-gradient(circle at top right, rgba(150, 30, 30, 0.10), transparent 22%),
    radial-gradient(circle at bottom left, rgba(244, 207, 123, 0.10), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.container-nb9 {
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px;
  background: linear-gradient(255deg, #3d0000, #6b2020);
  border-radius: 28px;
  border: 1px solid rgba(255, 100, 100, 0.10);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
.nb9-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.nb9-desc {
  max-width: 860px;
  margin: 0 auto 34px;
  font-size: 16px;
  line-height: 1.8;
  color: #d6dee9;
  text-align: center;
}
.nb9-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 20px;
  padding: 28px 30px;
  margin-bottom: 22px;
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.nb9-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--primary-2));
}
.nb9-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.18);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.10);
}
.nb9-card h3 {
  font-size: 20px;
  line-height: 1.35;
  color: #0f172a;
  margin-bottom: 14px;
  font-weight: 800;
}
.nb9-card p, .nb9-card li { font-size: 16px; line-height: 1.75; color: #334155; }
.nb9-card ul, .nb9-card ol { margin-top: 12px; margin-left: 22px; }
.nb9-card li + li { margin-top: 8px; }
.nb9-card a { color: #1d4ed8; font-weight: 700; text-decoration: none; transition: var(--transition); }
.nb9-card a:hover { color: #0f3fb8; text-decoration: underline; }
.nb9-warning { background: linear-gradient(180deg, #fff8f8, #fffdfd); border-color: rgba(239, 68, 68, 0.15); }
.nb9-warning::before { background: linear-gradient(90deg, #ef4444, #f97316); }
.nb9-warning h3 { color: #b91c1c; }

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer {
  position: relative;
  padding: 28px 0;
  text-align: center;
  color: #e5e7eb;
  font-size: 15px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, #1a0000, #270000, #1a0000);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: min(380px, 60%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(244, 207, 123, 0.8), transparent);
}
.site-footer a { color: #f4cf7b; text-decoration: none; font-weight: 700; transition: var(--transition); }
.site-footer a:hover { color: #ffffff; }
.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  text-align: center;
  padding: 0 20px;
}

/* ─── SLIDER SECTION ───────────────────────────────────── */
.section.slider__section {
  padding: 72px 20px;
  background:
    radial-gradient(circle at 15% 20%, rgba(244, 207, 123, 0.10), transparent 22%),
    linear-gradient(180deg, #1a0000 0%, #270000 100%);
}
.slider__wrapper { justify-content: center; }
.slider__column { width: 100%; max-width: 980px; margin: 0 auto; }
.splide__track { overflow: hidden; border-radius: 24px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.40); }
.splide__list { list-style: none; }
.splide__slide img { width: 100%; height: auto; display: block; border-radius: 24px; object-fit: cover; }

/* ─── FEATURES SECTION ─────────────────────────────────── */
.goplay-features-section {
  padding: 84px 20px 48px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

/* ─── STEPS SECTION ────────────────────────────────────── */
.goplay-steps-section {
  padding: 48px 20px 84px;
  background: linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.08);
  margin-top: 12px;
}

/* Headings inside features + steps */
.goplay-features-section .nb9-title,
.goplay-steps-section .nb9-title {
  color: #0f172a;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 14px;
  text-align: center;
}
.goplay-features-section .nb9-desc,
.goplay-steps-section .nb9-desc {
  max-width: 820px;
  margin: 0 auto 34px;
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}
.goplay-features-section .container-nb9,
.goplay-steps-section .container-nb9 { max-width: 1140px; }

/* Grid */
.feature-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

/* Cards */
.feature-card,
.step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: all 0.3s ease;
}
.feature-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.10);
  border-color: rgba(59, 130, 246, 0.20);
}
.feature-card h3,
.step-card h3 {
  color: #0f172a;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
}
.feature-card p,
.step-card p { color: #475569; font-size: 15.5px; line-height: 1.8; margin: 0; }

/* Step badge */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #8d5d15, #c48a2a);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(141, 93, 21, 0.22);
}

/* Container info */
.container-info { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.info-box-mini { margin-top: 24px; max-width: 860px; }

/* ─── BONUS SECTION ────────────────────────────────────── */
.goplay-bonus-section {
  padding: 70px 20px;
  background: linear-gradient(180deg, #f5f7fb 0%, #eef2fb 100%);
}
.bonus-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.bonus-step-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bonus-step-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(141, 93, 21, 0.12); }
.bonus-step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #8d5d15, #c48a2a);
  color: #fff;
  font-size: 20px; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.bonus-step-card h3 { font-size: 16px; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.bonus-step-card p { font-size: 14px; color: #64748b; line-height: 1.7; }
.bonus-highlight-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, #1a0000 0%, #2f0000 100%);
  border: 1px solid rgba(244, 207, 123, 0.2);
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.bonus-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(244, 207, 123, 0.15);
  border: 1px solid rgba(244, 207, 123, 0.3);
  color: #f4cf7b;
  font-size: 13px; font-weight: 700;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}
.bonus-highlight-left h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: #fff; font-weight: 800; margin-bottom: 10px; }
.bonus-highlight-left p { color: rgba(255,255,255,0.70); font-size: 15px; margin-bottom: 16px; max-width: 100%; }
.bonus-list { list-style: none; padding: 0; }
.bonus-list li { color: rgba(255,255,255,0.85); font-size: 14.5px; margin-bottom: 8px; max-width: 100%; }
.bonus-highlight-right { display: flex; flex-direction: column; align-items: center; gap: 14px; flex-shrink: 0; }
.bonus-code-display {
  color: #f4cf7b; font-size: 15px; font-weight: 700; letter-spacing: 1px;
  background: rgba(244, 207, 123, 0.10);
  padding: 8px 18px; border-radius: 10px;
  border: 1px dashed rgba(244, 207, 123, 0.4);
}

/* ─── REFERRAL SECTION ─────────────────────────────────── */
.goplay-referral-section { padding: 70px 20px; background: #fff; }
.referral-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.referral-how-box,
.referral-benefits-box {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 32px 28px;
}
.referral-how-box h3,
.referral-benefits-box h3 { font-size: 20px; font-weight: 800; color: #0f172a; margin-bottom: 20px; }
.referral-steps-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.referral-steps-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: #475569; line-height: 1.7; max-width: 100%; }
.ref-num {
  min-width: 28px; height: 28px;
  background: linear-gradient(135deg, #8d5d15, #c48a2a);
  color: #fff; font-size: 13px; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.referral-benefit-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.referral-benefit-list li { font-size: 15px; color: #475569; line-height: 1.7; max-width: 100%; }
.referral-note-box {
  background: rgba(141, 93, 21, 0.06);
  border: 1px solid rgba(141, 93, 21, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13.5px; color: #7a5010; line-height: 1.6;
}

/* ─── SPORTS SECTION ───────────────────────────────────── */
.goplay-sports-section {
  padding: 70px 20px;
  background:
    radial-gradient(circle at top right, rgba(150, 30, 30, 0.07), transparent 24%),
    radial-gradient(circle at bottom left, rgba(196, 138, 42, 0.07), transparent 24%),
    linear-gradient(180deg, #f5f7fb 0%, #eef2fb 100%);
}
.sports-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sport-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 28px 20px 24px;
  display: flex; flex-direction: column; align-items: flex-start;
  box-shadow: 0 8px 24px rgba(15,23,42,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.sport-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #8d5d15, #c48a2a, #f4cf7b);
}
.sport-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(141,93,21,0.13); }
.sport-emoji { font-size: 36px; margin-bottom: 14px; line-height: 1; }
.sport-card h3 { font-size: 18px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.sport-leagues-tag {
  font-size: 12px; color: #8d5d15; font-weight: 700;
  background: rgba(141, 93, 21, 0.08);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 12px; display: inline-block; max-width: 100%;
}
.sport-card p { font-size: 14px; color: #64748b; line-height: 1.7; flex: 1; margin-bottom: 18px; max-width: 100%; }
.sport-play-btn {
  display: inline-block; padding: 10px 18px;
  background: linear-gradient(135deg, #8d5d15, #c48a2a);
  color: #fff; font-size: 13.5px; font-weight: 700;
  border-radius: 10px; text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease; margin-top: auto;
}
.sport-play-btn:hover { opacity: 0.88; transform: translateX(3px); }

/* ─── FAQ SECTION ──────────────────────────────────────── */
.goplay-faq-section { padding: 70px 20px; background: #fff; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: #f8faff; border: 1px solid #e2e8f0;
  border-radius: 16px; overflow: hidden; transition: border-color 0.3s ease;
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: rgba(141, 93, 21, 0.30); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: transparent; border: none; cursor: pointer;
  font-size: 16px; font-weight: 700; color: #0f172a;
  text-align: left; line-height: 1.5; transition: background 0.2s ease;
}
.faq-question:hover { background: rgba(141, 93, 21, 0.04); }
.faq-question[aria-expanded="true"] { color: #8d5d15; }
.faq-icon {
  min-width: 28px; height: 28px;
  background: linear-gradient(135deg, #8d5d15, #c48a2a);
  color: #fff; font-size: 18px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s ease; line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #c48a2a, #f4cf7b);
}
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { font-size: 15px; color: #475569; line-height: 1.8; max-width: 100%; }

/* ─── CTA BANNER ───────────────────────────────────────── */
.goplay-cta-banner {
  padding: 70px 20px;
  background: linear-gradient(135deg, #1a0000 0%, #2f0000 50%, #1a0000 100%);
  border-top: 1px solid rgba(244,207,123,0.15);
  border-bottom: 1px solid rgba(244,207,123,0.15);
}
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner-text { flex: 1; min-width: 280px; }
.cta-banner-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 12px; }
.cta-banner-text p { color: rgba(255,255,255,0.72); font-size: 15.5px; line-height: 1.7; margin-bottom: 20px; max-width: 100%; }
.cta-checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.cta-checklist li { color: rgba(255,255,255,0.85); font-size: 15px; max-width: 100%; }
.cta-banner-action { display: flex; flex-direction: column; align-items: center; gap: 14px; flex-shrink: 0; min-width: 240px; }
.cta-code-box {
  color: #f4cf7b; font-size: 16px; font-weight: 700;
  background: rgba(244,207,123,0.10); padding: 10px 20px;
  border-radius: 12px; border: 1px dashed rgba(244,207,123,0.4);
  letter-spacing: 1px; text-align: center;
}
.cta-main-btn { width: 100%; text-align: center; }
.cta-disclaimer-note { font-size: 12px; color: rgba(255,255,255,0.45); text-align: center; margin: 0; max-width: 100%; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════ */

/* ─── max-width: 1024px ──────────────────────────────── */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-section { padding: 60px 18px; }
  .container-nb9 { padding: 32px 24px; }
  .container { width: 100%; max-width: 100%; }
  .bonus-cards-row { grid-template-columns: repeat(2, 1fr); }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .referral-grid { grid-template-columns: 1fr; }
}

/* ─── max-width: 768px ───────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .site-header { padding: 12px 0; }
  .logo img { height: 42px; }
  .hero-content { padding: 28px 16px; border-radius: 22px; }
  .hero-logo { width: 110px; height: 110px; }
  .hero-buttons { max-width: 100%; }
  .download-btn { width: 100%; font-size: 16px; padding: 14px 18px; }
  .section-title { margin-bottom: 22px; }
  .responsive-table table { font-size: 14px; }
  .responsive-table th, .responsive-table td { padding: 13px 12px; }
  .container-nb9 { padding: 26px 18px; border-radius: 22px; }
  .nb9-card { padding: 22px 18px; border-radius: 16px; }
  .nb9-card h3 { font-size: 18px; }
  .nb9-card p, .nb9-card li, .app-description { font-size: 15px; }
  .container-info { padding: 0 16px; }
  .section.slider__section { padding: 56px 16px; }
  .goplay-features-section { padding: 56px 16px 30px; }
  .goplay-steps-section { padding: 30px 16px 56px; }
  .goplay-bonus-section,
  .goplay-referral-section,
  .goplay-sports-section,
  .goplay-faq-section,
  .goplay-cta-banner { padding: 52px 16px; }
  .feature-grid, .steps-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 24px; }
  .feature-card, .step-card { padding: 22px 18px; border-radius: 18px; }
  .feature-card h3, .step-card h3 { font-size: 18px; }
  .feature-card p, .step-card p { font-size: 15px; line-height: 1.7; }
  .goplay-features-section .nb9-desc,
  .goplay-steps-section .nb9-desc { margin-bottom: 24px; font-size: 15px; }
  .splide__track, .splide__slide img { border-radius: 18px; }
  .bonus-highlight-box { flex-direction: column; padding: 28px 22px; text-align: center; }
  .bonus-list { text-align: left; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-checklist { text-align: left; }
  .cta-banner-action { width: 100%; }
  .cta-main-btn { width: 100%; }
  .faq-question { font-size: 15px; padding: 16px 18px; }
}

/* ─── max-width: 600px ───────────────────────────────── */
@media (max-width: 600px) {
  .footer-container { flex-direction: column; gap: 6px; font-size: 14px; }
  .mobile-menu { width: min(300px, 88vw); max-width: 88vw; right: -320px; }
  .bonus-cards-row { grid-template-columns: 1fr; }
  .sports-grid { grid-template-columns: 1fr; }
}

/* ─── max-width: 480px ───────────────────────────────── */
@media (max-width: 480px) {
  .logo img { height: 36px; }
  .hero-section { padding: 42px 14px; }
  .hero-title { font-size: 1.65rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-download-text, .hero-description { font-size: 14px; }
  .hero-logo { width: 175px; height: 175px; }
  .download-btn { min-height: 52px; font-size: 15px; border-radius: 14px; }
  .section-title { font-size: 1.45rem; }
  .nb9-title { font-size: 1.55rem; }
}