/* ============================================================
   SITE BUILD ID: r7v | CSS PREFIX: r7v_
   Jeetcity Australia — jeetcityaustraliacasino.com
   Theme: Dark Navy + Electric Green + Australian Gold
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Orbitron:wght@700;900&display=swap");

/* ── RESET & ROOT ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-bg: #0d1117;
  --c-bg2: #131a24;
  --c-bg3: #1a2333;
  --c-green: #3ddc5a;
  --c-green-d: #28a845;
  --c-gold: #f0b429;
  --c-gold-d: #c9900f;
  --c-purple: #6c3fc5;
  --c-text: #e2e8f0;
  --c-muted: #8899aa;
  --c-border: #1e2d3d;
  --c-card: #162032;
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.22s ease;
  --font-head: "Orbitron", sans-serif;
  --font-sub: "Rajdhani", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --shadow-glow: 0 0 24px rgba(61, 220, 90, 0.25);
  --shadow-gold: 0 0 24px rgba(240, 180, 41, 0.3);
}

html {
  scroll-behavior: smooth;
}
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--c-green);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-gold);
}
img {
  max-width: 100%;
  display: block;
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--c-bg2);
}
::-webkit-scrollbar-thumb {
  background: var(--c-green);
  border-radius: 3px;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-sub);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: var(--font-sub);
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
h3 {
  font-size: 1.25rem;
}
p {
  margin-bottom: 1rem;
  color: var(--c-text);
}
strong {
  color: var(--c-green);
  font-weight: 600;
}

/* ── UTILITY ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.r7v_sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.r7v_text-green {
  color: var(--c-green);
}
.r7v_text-gold {
  color: var(--c-gold);
}
.r7v_text-muted {
  color: var(--c-muted);
  font-size: 0.875rem;
}
.r7v_section {
  padding: 60px 0;
}
.r7v_section-sm {
  padding: 36px 0;
}
.r7v_divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 40px 0;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.r7v_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}
.r7v_btn-primary {
  background: var(--c-green);
  color: #0d1117;
  box-shadow: 0 4px 18px rgba(61, 220, 90, 0.35);
}
.r7v_btn-primary:hover {
  background: #52e870;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
  color: #0d1117;
}
.r7v_btn-gold {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-d));
  color: #0d1117;
  box-shadow: 0 4px 18px rgba(240, 180, 41, 0.35);
}
.r7v_btn-gold:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: #0d1117;
}
.r7v_btn-outline {
  background: transparent;
  border: 2px solid var(--c-green);
  color: var(--c-green);
}
.r7v_btn-outline:hover {
  background: var(--c-green);
  color: #0d1117;
}
.r7v_btn-lg {
  padding: 16px 40px;
  font-size: 1.15rem;
  border-radius: 10px;
}
.r7v_btn-full {
  width: 100%;
}

/* ── NAV / HEADER ────────────────────────────────────────── */
.r7v_nav {
  background: rgba(13, 17, 23, 0.97);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.r7v_nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.r7v_logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.r7v_logo span {
  color: var(--c-green);
}
.r7v_logo-icon {
  width: 38px;
  height: 38px;
  background: var(--c-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #0d1117;
  font-weight: 900;
}
.r7v_nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.r7v_nav-links a {
  color: var(--c-muted);
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.r7v_nav-links a:hover,
.r7v_nav-links a.active {
  color: #fff;
  background: var(--c-bg3);
}
.r7v_nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.r7v_hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.5rem;
}

/* ── HERO SECTION ────────────────────────────────────────── */
.r7v_hero {
  background: linear-gradient(135deg, #0d1117 0%, #0f1e2e 50%, #111827 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.r7v_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 30% 50%,
      rgba(61, 220, 90, 0.07) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 80% 30%,
      rgba(108, 63, 197, 0.1) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.r7v_hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 520px;
  gap: 0;
}
.r7v_hero-content {
  padding: 60px 50px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.r7v_hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 220, 90, 0.12);
  border: 1px solid rgba(61, 220, 90, 0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-family: var(--font-sub);
  font-weight: 600;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  width: fit-content;
}
.r7v_hero-badge::before {
  content: "●";
  font-size: 0.5rem;
  animation: r7v-pulse 1.5s infinite;
}
@keyframes r7v-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.r7v_hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.15;
}
.r7v_hero h1 em {
  font-style: normal;
  color: var(--c-green);
}
.r7v_hero-sub {
  font-size: 1.1rem;
  color: var(--c-muted);
  margin-bottom: 30px;
  max-width: 520px;
}
.r7v_hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.r7v_hero-stat {
  display: flex;
  flex-direction: column;
}
.r7v_hero-stat strong {
  font-family: var(--font-sub);
  font-size: 1.5rem;
  color: var(--c-gold);
  font-weight: 700;
}
.r7v_hero-stat span {
  font-size: 0.8rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.r7v_hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── REGISTER WIDGET (sidebar) ───────────────────────────── */
.r7v_register-panel {
  background: var(--c-bg3);
  border-left: 1px solid var(--c-border);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  position: relative;
}
.r7v_register-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-green), var(--c-gold));
}
.r7v_register-panel h3 {
  font-family: var(--font-sub);
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
}
.r7v_bonus-highlight {
  background: linear-gradient(
    135deg,
    rgba(61, 220, 90, 0.1),
    rgba(240, 180, 41, 0.1)
  );
  border: 1px solid rgba(61, 220, 90, 0.25);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: center;
}
.r7v_bonus-highlight strong {
  font-size: 1.3rem;
  display: block;
  color: var(--c-gold);
  font-family: var(--font-sub);
}
.r7v_bonus-highlight span {
  font-size: 0.8rem;
  color: var(--c-muted);
}
.r7v_steps {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
}
.r7v_step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--c-muted);
  text-align: center;
}
.r7v_step-icon {
  width: 42px;
  height: 42px;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.r7v_step-arrow {
  color: var(--c-border);
  font-size: 1.2rem;
  padding-bottom: 22px;
}
.r7v_register-note {
  font-size: 0.72rem;
  color: var(--c-muted);
  text-align: center;
  line-height: 1.5;
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.r7v_trust-bar {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 18px 0;
}
.r7v_trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.r7v_trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-muted);
}
.r7v_trust-item-icon {
  font-size: 1.3rem;
  color: var(--c-green);
}
.r7v_trust-item strong {
  color: #fff;
}

/* ── RATING CARD ─────────────────────────────────────────── */
.r7v_rating-section {
  background: var(--c-bg2);
}
.r7v_rating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.r7v_rating-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.r7v_rating-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-green);
}
.r7v_rating-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.r7v_rating-score {
  font-family: var(--font-sub);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}
.r7v_rating-label {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: 6px;
}
.r7v_stars {
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin: 8px 0 0;
}

/* ── SECTION TITLES ──────────────────────────────────────── */
.r7v_section-title {
  margin-bottom: 36px;
}
.r7v_section-title h2 {
  margin-bottom: 8px;
}
.r7v_section-title p {
  color: var(--c-muted);
  max-width: 600px;
  font-size: 0.95rem;
}
.r7v_section-title .r7v_tag {
  display: inline-block;
  background: rgba(61, 220, 90, 0.1);
  color: var(--c-green);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(61, 220, 90, 0.2);
}

/* ── BONUS CARDS ─────────────────────────────────────────── */
.r7v_bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.r7v_bonus-card {
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--c-green), var(--c-gold));
  transition: transform var(--transition);
}
.r7v_bonus-card:hover {
  transform: translateY(-5px);
}
.r7v_bonus-card-inner {
  background: var(--c-card);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 28px 24px;
  height: 100%;
}
.r7v_bonus-tag {
  display: inline-block;
  background: rgba(240, 180, 41, 0.15);
  color: var(--c-gold);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(240, 180, 41, 0.25);
}
.r7v_bonus-amount {
  font-family: var(--font-sub);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-green);
  line-height: 1;
  margin-bottom: 6px;
}
.r7v_bonus-spins {
  font-size: 1.1rem;
  color: var(--c-gold);
  font-family: var(--font-sub);
  font-weight: 600;
  margin-bottom: 16px;
}
.r7v_bonus-details {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.r7v_bonus-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--c-muted);
}
.r7v_bonus-details li::before {
  content: "✓";
  color: var(--c-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── PAYMENT TABLE ───────────────────────────────────────── */
.r7v_table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}
.r7v_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.r7v_table thead {
  background: var(--c-bg3);
}
.r7v_table th {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-border);
}
.r7v_table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(30, 45, 61, 0.5);
  color: var(--c-text);
}
.r7v_table tr:last-child td {
  border-bottom: none;
}
.r7v_table tr:hover td {
  background: rgba(26, 35, 51, 0.6);
}
.r7v_badge-instant {
  background: rgba(61, 220, 90, 0.12);
  color: var(--c-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(61, 220, 90, 0.2);
  white-space: nowrap;
}

/* ── GAME CARDS ──────────────────────────────────────────── */
.r7v_games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.r7v_game-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.r7v_game-card:hover {
  border-color: var(--c-green);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 220, 90, 0.15);
}
.r7v_game-thumb {
  aspect-ratio: 4/3;
  background: var(--c-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.r7v_game-top-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--c-green);
  color: #0d1117;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  font-family: var(--font-sub);
  text-transform: uppercase;
}
.r7v_game-info {
  padding: 12px;
}
.r7v_game-name {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}
.r7v_game-provider {
  font-size: 0.75rem;
  color: var(--c-muted);
}

/* ── CONTENT BODY ────────────────────────────────────────── */
.r7v_content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.r7v_content-body h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
  padding-top: 8px;
  position: relative;
  padding-left: 16px;
}
.r7v_content-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--c-green);
  border-radius: 2px;
}
.r7v_content-body p {
  margin-bottom: 1.1rem;
  color: #c8d6e5;
  line-height: 1.75;
}
.r7v_content-body ul {
  margin: 16px 0 20px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.r7v_content-body ul li {
  padding-left: 24px;
  position: relative;
  color: #c8d6e5;
  font-size: 0.95rem;
}
.r7v_content-body ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--c-green);
}

/* ── SIDEBAR ─────────────────────────────────────────────── */
.r7v_sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.r7v_sidebar-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.r7v_sidebar-card h4 {
  font-family: var(--font-sub);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border);
}
.r7v_quick-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.r7v_quick-facts li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  gap: 10px;
}
.r7v_quick-facts li span:first-child {
  color: var(--c-muted);
}
.r7v_quick-facts li span:last-child {
  color: #fff;
  font-weight: 500;
  text-align: right;
}
.r7v_sidebar-cta {
  background: linear-gradient(
    135deg,
    rgba(61, 220, 90, 0.1),
    rgba(240, 180, 41, 0.08)
  );
  border: 1px solid rgba(61, 220, 90, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}
.r7v_sidebar-cta h4 {
  color: #fff;
  font-size: 1.1rem;
  border: none;
  padding: 0;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
}
.r7v_sidebar-cta p {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-bottom: 16px;
}
.r7v_sidebar-cta .r7v_bonus-amt-sm {
  font-family: var(--font-sub);
  font-size: 1.6rem;
  color: var(--c-green);
  display: block;
  margin-bottom: 4px;
}

/* ── PROMO SECTION ───────────────────────────────────────── */
.r7v_promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.r7v_promo-card {
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.r7v_promo-card.first {
  background: linear-gradient(135deg, #1a2d1a, #0f2010);
  border: 1px solid rgba(61, 220, 90, 0.3);
}
.r7v_promo-card.second {
  background: linear-gradient(135deg, #1e1a2d, #140f1e);
  border: 1px solid rgba(108, 63, 197, 0.3);
}
.r7v_promo-card.third {
  background: linear-gradient(135deg, #2d251a, #1e180f);
  border: 1px solid rgba(240, 180, 41, 0.3);
}
.r7v_promo-num {
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  opacity: 0.07;
  color: #fff;
  line-height: 1;
}
.r7v_promo-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-muted);
}
.r7v_promo-amount {
  font-family: var(--font-sub);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.r7v_promo-amount span {
  color: var(--c-green);
}
.r7v_promo-detail {
  font-size: 0.85rem;
  color: var(--c-muted);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.r7v_faq {
  background: var(--c-bg2);
}
.r7v_faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
}
.r7v_faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.r7v_faq-item:hover {
  border-color: rgba(61, 220, 90, 0.3);
}
.r7v_faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.r7v_faq-q:hover {
  color: var(--c-green);
}
.r7v_faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--c-bg3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--c-green);
  transition: transform var(--transition);
}
.r7v_faq-item.open .r7v_faq-icon {
  transform: rotate(45deg);
}
.r7v_faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 20px;
  color: var(--c-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.r7v_faq-item.open .r7v_faq-a {
  max-height: 300px;
  padding: 0 20px 18px;
}

/* ── CTA BANNER ──────────────────────────────────────────── */
.r7v_cta-banner {
  background: linear-gradient(135deg, #0f2212 0%, #112218 50%, #0a1a12 100%);
  border-top: 1px solid rgba(61, 220, 90, 0.2);
  border-bottom: 1px solid rgba(61, 220, 90, 0.2);
  position: relative;
  overflow: hidden;
}
.r7v_cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(61, 220, 90, 0.07) 0%,
    transparent 70%
  );
}
.r7v_cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 0;
  flex-wrap: wrap;
}
.r7v_cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}
.r7v_cta-text p {
  color: var(--c-muted);
  max-width: 500px;
  margin: 0;
}
.r7v_cta-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #080d13;
  border-top: 1px solid var(--c-border);
  padding: 50px 0 24px;
}
.r7v_footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.r7v_footer-brand p {
  color: var(--c-muted);
  font-size: 0.875rem;
  margin-top: 14px;
  line-height: 1.6;
}
.r7v_footer-col h5 {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-muted);
  margin-bottom: 16px;
}
.r7v_footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.r7v_footer-col ul li a {
  color: var(--c-muted);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.r7v_footer-col ul li a:hover {
  color: var(--c-green);
}
.r7v_footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.r7v_footer-bottom p {
  font-size: 0.8rem;
  color: var(--c-muted);
  margin: 0;
}
.r7v_rg-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.r7v_rg-badge {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-sub);
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.r7v_disclaimer {
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.78rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin-top: 24px;
}

/* ── STICKY CTA BAR (mobile) ─────────────────────────────── */
.r7v_sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 17, 23, 0.97);
  border-top: 2px solid var(--c-green);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  backdrop-filter: blur(8px);
  gap: 12px;
}
.r7v_sticky-bar-text {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}
.r7v_sticky-bar-text span {
  color: var(--c-green);
}

/* ── WINNER TICKER ───────────────────────────────────────── */
.r7v_ticker {
  background: var(--c-bg3);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
  overflow: hidden;
}
.r7v_ticker-inner {
  display: flex;
  gap: 60px;
  animation: r7v-scroll 30s linear infinite;
  white-space: nowrap;
}
@keyframes r7v-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.r7v_ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--c-muted);
  font-family: var(--font-sub);
}
.r7v_ticker-item strong {
  color: var(--c-gold);
}
.r7v_ticker-item span {
  color: var(--c-green);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes r7v-fadeup {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.r7v_fadeup {
  animation: r7v-fadeup 0.55s ease both;
}
.r7v_delay-1 {
  animation-delay: 0.1s;
}
.r7v_delay-2 {
  animation-delay: 0.2s;
}
.r7v_delay-3 {
  animation-delay: 0.3s;
}

/* ── HIGHLIGHT BOX ───────────────────────────────────────── */
.r7v_highlight-box {
  background: linear-gradient(
    135deg,
    rgba(61, 220, 90, 0.06),
    rgba(240, 180, 41, 0.04)
  );
  border: 1px solid rgba(61, 220, 90, 0.2);
  border-left: 3px solid var(--c-green);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 24px 0;
}
.r7v_highlight-box p {
  margin: 0;
  color: var(--c-text);
  font-size: 0.95rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .r7v_hero-grid {
    grid-template-columns: 1fr;
  }
  .r7v_register-panel {
    border-left: none;
    border-top: 1px solid var(--c-border);
    max-width: 480px;
    margin: 0 auto;
    padding: 40px;
  }
  .r7v_hero-content {
    padding: 50px 0 30px;
  }
  .r7v_content-layout {
    grid-template-columns: 1fr;
  }
  .r7v_sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .r7v_promo-grid {
    grid-template-columns: 1fr;
  }
  .r7v_footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .r7v_btn {
    padding: 8px;
    font-size: 10px;
  }

  .r7v_nav-links {
    display: none;
  }
  .r7v_hamburger {
    display: block;
  }
  .r7v_trust-items {
    justify-content: flex-start;
  }
  .r7v_rating-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .r7v_bonus-grid {
    grid-template-columns: 1fr;
  }
  .r7v_games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .r7v_footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .r7v_cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .r7v_cta-buttons {
    justify-content: center;
  }
  .r7v_sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 68px;
  }
  .r7v_hero-stats {
    gap: 20px;
  }
  .r7v_footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .r7v_games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .r7v_rating-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .r7v_steps {
    gap: 4px;
  }
}
