/* ============================================================
   Casino Kingdom NZ — Main Stylesheet
   Domain: casinokingdom.poker  |  lang: en-NZ
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --gold: #FFD700;
  --gold-light: #FFE657;
  --gold-dark: #B8860B;
  --purple: #1a003a;
  --purple-mid: #2d0060;
  --purple-light: #4a0090;
  --purple-card: #230050;
  --red: #e63946;
  --green: #2dc653;
  --white: #ffffff;
  --grey-light: #e8e0f0;
  --grey: #9a8fb5;
  --font-main: 'Cinzel', 'Georgia', serif;
  --font-body: 'Open Sans', 'Arial', sans-serif;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
  --glow-gold: 0 0 20px rgba(255,215,0,0.45);
  --transition: all 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); text-decoration: underline; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  color: var(--gold);
  line-height: 1.25;
  letter-spacing: 1px;
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p { margin-bottom: 1rem; }

/* ---- Container ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-alt { background: var(--purple-mid); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0d0022 0%, #1a003a 100%);
  border-bottom: 2px solid var(--gold-dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
  padding: 0 20px;
}
.navbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}
.navbar-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.navbar-brand span { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-brand .brand-sub { font-size: 0.65rem; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-body); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: var(--grey-light);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(255,215,0,0.1);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer; font-weight: 700; border-radius: var(--radius); transition: var(--transition); text-decoration: none !important; white-space: nowrap; font-family: var(--font-body); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #1a003a;
  padding: 12px 28px;
  font-size: 0.95rem;
  box-shadow: var(--glow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255,215,0,0.7);
  color: #0d0022;
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  font-size: 0.9rem;
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--purple);
}
.btn-lg { padding: 16px 40px; font-size: 1.1rem; border-radius: 50px; }
.btn-xl { padding: 20px 56px; font-size: 1.25rem; border-radius: 50px; }

/* Hamburger mobile */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0022 0%, #1a003a 60%, #2d0060 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,0,34,0.92) 0%, rgba(26,0,58,0.55) 70%, transparent 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 20px 60px 40px;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a003a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.hero h1 span { color: var(--gold); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--grey-light);
  margin-bottom: 30px;
  max-width: 520px;
}
.hero-bonus-box {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-bonus-item { display: flex; align-items: center; gap: 12px; }
.hero-bonus-num {
  font-family: var(--font-main);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
}
.hero-bonus-txt { font-size: 0.82rem; color: var(--grey-light); line-height: 1.3; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 16px;
}
.hero-trust span { color: var(--gold); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: linear-gradient(90deg, #0d0022, #1a003a, #0d0022);
  border-top: 1px solid rgba(255,215,0,0.15);
  border-bottom: 1px solid rgba(255,215,0,0.15);
  padding: 18px 20px;
  overflow: hidden;
}
.trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--grey-light);
}
.trust-icon { font-size: 1.3rem; }

/* ============================================================
   BONUS CARDS
   ============================================================ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.bonus-card {
  background: var(--purple-card);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}
.bonus-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}
.bonus-card-icon { font-size: 2.6rem; margin-bottom: 12px; }
.bonus-card h3 { font-size: 1rem; color: var(--gold); margin-bottom: 8px; letter-spacing: 1px; text-transform: uppercase; }
.bonus-amount {
  font-family: var(--font-main);
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1;
}
.bonus-amount span { font-size: 1rem; color: var(--gold); }
.bonus-card p { font-size: 0.85rem; color: var(--grey); margin: 0 0 18px; }
.bonus-tag {
  display: inline-block;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ============================================================
   GAMES SECTION
   ============================================================ */
.games-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,215,0,0.2);
  padding-bottom: 16px;
}
.tab-btn {
  background: rgba(255,215,0,0.06);
  border: 1px solid rgba(255,215,0,0.2);
  color: var(--grey-light);
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--purple);
  border-color: var(--gold);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--purple-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,215,0,0.15);
  transition: var(--transition);
  cursor: pointer;
}
.game-card:hover {
  transform: scale(1.04);
  border-color: var(--gold);
}
.game-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2d0060, #4a0090);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.game-info { padding: 10px 12px; }
.game-info h4 { font-size: 0.82rem; color: var(--white); margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
.game-info span { font-size: 0.72rem; color: var(--grey); }

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 30px 20px;
}
.step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 1.6rem;
  color: var(--purple);
  font-weight: 900;
  box-shadow: var(--glow-gold);
}
.step-card h3 { color: var(--gold); margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--grey-light); margin: 0; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background-image: url('../img/bonus-banner.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 60px 40px;
  margin: 40px 0;
}
.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,0,34,0.88) 0%, rgba(26,0,58,0.72) 100%);
}
.promo-banner-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.promo-banner h2 { color: var(--white); margin-bottom: 12px; }
.promo-banner h2 span { color: var(--gold); }
.promo-banner p { color: var(--grey-light); margin-bottom: 24px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 32px; }
.faq-item {
  border-bottom: 1px solid rgba(255,215,0,0.15);
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
  gap: 20px;
  transition: var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--grey-light);
  font-size: 0.92rem;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.review-card {
  background: var(--purple-card);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius);
  padding: 24px;
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--grey-light); margin-bottom: 14px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--purple);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-author-info strong { color: var(--white); font-size: 0.88rem; display: block; }
.review-author-info span { font-size: 0.75rem; color: var(--grey); }

/* ============================================================
   PAYMENT METHODS
   ============================================================ */
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.payment-item {
  background: var(--purple-card);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 0.85rem;
  color: var(--grey-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.payment-item:hover { border-color: var(--gold); color: var(--white); }
.payment-icon { font-size: 1.3rem; }

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-heading { text-align: center; margin-bottom: 8px; }
.section-heading h2 { margin-bottom: 12px; }
.section-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  margin: 0 auto 20px;
  border-radius: 3px;
}
.section-subtitle { color: var(--grey); font-size: 0.95rem; max-width: 560px; margin: 0 auto; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0d0022 0%, #2d0060 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '♛';
  position: absolute;
  font-size: 18rem;
  color: rgba(255,215,0,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section h2 span { color: var(--gold); }
.cta-section p { color: var(--grey-light); margin-bottom: 30px; font-size: 1.05rem; }
.cta-note { font-size: 0.78rem; color: var(--grey); margin-top: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #060012;
  border-top: 2px solid rgba(255,215,0,0.15);
  padding: 50px 20px 30px;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-desc { font-size: 0.85rem; color: var(--grey); margin-top: 14px; line-height: 1.7; }
.footer-col h4 {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  font-family: var(--font-main);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--grey); font-size: 0.85rem; }
.footer-col ul li a:hover { color: var(--gold); text-decoration: none; }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,215,0,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--grey); }
.footer-age {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: white;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: 6px;
}
.footer-logos { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.license-badge {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  color: var(--grey);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 6px;
}
.responsible-text {
  font-size: 0.75rem;
  color: var(--grey);
  text-align: center;
  max-width: 900px;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* ============================================================
   LOGIN PAGE SPECIFIC
   ============================================================ */
.login-section {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d0022 0%, #2d0060 100%);
  padding: 40px 20px;
}
.login-box {
  background: var(--purple-card);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 20px;
  padding: 44px 40px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.login-box h2 { text-align: center; margin-bottom: 6px; }
.login-sub { text-align: center; color: var(--grey); font-size: 0.88rem; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--grey-light); font-size: 0.85rem; margin-bottom: 6px; font-weight: 600; }
.form-group input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.12);
}
.form-group input::placeholder { color: var(--grey); }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--gold); cursor: pointer; }
.form-check label { font-size: 0.82rem; color: var(--grey); line-height: 1.5; cursor: pointer; }
.form-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,215,0,0.15); }
.form-divider span { color: var(--grey); font-size: 0.8rem; }
.form-link { text-align: center; font-size: 0.85rem; color: var(--grey); }
.register-bonus-bar {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.register-bonus-bar .rbb-icon { font-size: 2rem; flex-shrink: 0; }
.register-bonus-bar p { margin: 0; font-size: 0.82rem; color: var(--grey-light); }
.register-bonus-bar strong { color: var(--gold); }
.tabs-toggle { display: flex; background: rgba(255,255,255,0.05); border-radius: 10px; margin-bottom: 28px; overflow: hidden; }
.tab-toggle-btn {
  flex: 1;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  color: var(--grey);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  background: transparent;
}
.tab-toggle-btn.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--purple);
  border-radius: 8px;
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0d0022 0%, #2d0060 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-size: cover;
  background-position: center;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,215,0,0.4); }

/* ============================================================
   INFO BOX
   ============================================================ */
.info-box {
  background: rgba(255,215,0,0.06);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.info-box p { margin: 0; font-size: 0.9rem; color: var(--grey-light); }
.info-box strong { color: var(--gold); }

/* ============================================================
   TABLE
   ============================================================ */
.ck-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.ck-table th {
  background: rgba(255,215,0,0.12);
  color: var(--gold);
  font-family: var(--font-main);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.ck-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,215,0,0.08);
  color: var(--grey-light);
  font-size: 0.88rem;
}
.ck-table tr:hover td { background: rgba(255,215,0,0.04); }
.ck-table .highlight { color: var(--gold); font-weight: 700; }

/* ============================================================
   PROS / CONS
   ============================================================ */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.pros-box, .cons-box {
  border-radius: var(--radius);
  padding: 24px;
}
.pros-box { background: rgba(45,198,83,0.08); border: 1px solid rgba(45,198,83,0.25); }
.cons-box { background: rgba(230,57,70,0.08); border: 1px solid rgba(230,57,70,0.2); }
.pros-box h4 { color: var(--green); margin-bottom: 14px; }
.cons-box h4 { color: var(--red); margin-bottom: 14px; }
.pros-box ul, .cons-box ul { list-style: none; }
.pros-box ul li, .cons-box ul li { font-size: 0.88rem; color: var(--grey-light); padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; }
.pros-box ul li::before { content: '✓'; color: var(--green); flex-shrink: 0; font-weight: 700; }
.cons-box ul li::before { content: '✗'; color: var(--red); flex-shrink: 0; font-weight: 700; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--purple);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-gold);
  z-index: 999;
  transition: var(--transition);
}
#scrollTop:hover { transform: scale(1.12); }
#scrollTop.visible { display: flex; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: #0d0022;
    padding: 20px;
    border-bottom: 2px solid var(--gold-dark);
    z-index: 999;
  }
  .nav-links.open + .nav-cta {
    display: flex;
    position: absolute;
    top: calc(72px + 180px);
    left: 0; right: 0;
    background: #0d0022;
    padding: 16px 20px;
    justify-content: center;
    z-index: 999;
  }
  .hero-content { padding: 40px 20px; }
  .hero-bonus-box { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .login-box { padding: 30px 22px; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-xl { padding: 16px 36px; font-size: 1.05rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,215,0,0.4); }
  50% { box-shadow: 0 0 40px rgba(255,215,0,0.8); }
}
.pulse { animation: pulse-glow 2.5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float { animation: float 3.5s ease-in-out infinite; }

/* ============================================================
   RATING STARS
   ============================================================ */
.rating { display: flex; align-items: center; gap: 6px; }
.stars { color: var(--gold); letter-spacing: 3px; }
.rating-score { font-family: var(--font-main); font-size: 1.1rem; color: var(--gold); }
.rating-count { font-size: 0.78rem; color: var(--grey); }

/* ---- Scroll reveal utility ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
