/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background-color: #1a1a2e;
  color: #e8e8ec;
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --gold: #D9B361;
  --gold-light: #e5c77d;
  --gold-gradient: linear-gradient(135deg, #D9B361, #e5c77d);
  --gold-gradient-text: linear-gradient(135deg, #D9B361 0%, #e5c77d 50%, #D9B361 100%);
  --bg: #1a1a2e;
  --surface: #232338;
  --card: #2a2a40;
  --card-hover: #33334d;
  --border: rgba(217, 179, 97, 0.25);
  --text: #e8e8ec;
  --text-muted: #9a9ab0;
  --text-secondary: #b0b0c4;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.2; }
.text-gold { color: var(--gold); }
.text-gradient {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-gold {
  background: var(--gold-gradient);
  color: #1a1a2e;
}
.btn-gold:hover {
  box-shadow: 0 6px 30px rgba(217, 179, 97, 0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(217, 179, 97, 0.08);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(217, 179, 97, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 20px;
}
.logo-icon {
  font-size: 26px;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text { background: var(--gold-gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
nav { display: flex; align-items: center; gap: 32px; }
nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
nav a:hover { color: var(--gold); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(217, 179, 97, 0.1) 0%, transparent 70%),
              linear-gradient(180deg, #232338 0%, #1a1a2e 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D9B361' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 179, 97, 0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero h2 {
  font-size: clamp(36px, 6vw, 72px);
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.trust-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.trust-badge .icon { font-size: 16px; }
.hero-offer {
  display: inline-block;
  background: rgba(217, 179, 97, 0.06);
  border: 1px solid rgba(217, 179, 97, 0.25);
  border-radius: 16px;
  padding: 24px 40px;
  margin-bottom: 36px;
}
.offer-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 7vw, 80px);
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.offer-sub {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: 4px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; background: var(--border); display: none; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  background: rgba(217, 179, 97, 0.08);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.section-header h2 { font-size: clamp(26px, 4vw, 42px); margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); max-width: 560px; margin: 0 auto; font-size: 16px; }

/* ===== GAMES SECTION ===== */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-tab {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active {
  background: var(--gold-gradient);
  color: #1a1a2e;
  border-color: transparent;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.game-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 16px 48px rgba(217,179,97,0.15);
}
.game-card.hidden { display: none; }
.game-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.game-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .game-img-wrap img { transform: scale(1.07); }
.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-overlay .btn { width: 100%; justify-content: center; }
.game-info { padding: 14px 16px; }
.game-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.game-provider { font-size: 12px; color: var(--text-muted); }
.game-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold-gradient);
  color: #1a1a2e;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.games-cta { text-align: center; margin-top: 40px; }
.games-cta p { color: var(--text-muted); font-size: 14px; margin-top: 12px; }

/* ===== BONUS SECTION ===== */
.bonus-section { background: var(--surface); }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bonus-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(217,179,97,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(217, 179, 97, 0.15);
}
.bonus-tag {
  display: inline-block;
  background: var(--gold-gradient);
  color: #1a1a2e;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.bonus-card h3 { font-size: 22px; margin-bottom: 8px; }
.bonus-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 48px;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.bonus-sub { font-weight: 700; font-size: 16px; color: var(--gold-light); margin-bottom: 16px; }
.bonus-details { margin: 16px 0; }
.bonus-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bonus-detail:last-child { border-bottom: none; }
.bonus-detail .check { color: var(--gold); font-size: 16px; }
.bonus-tcs { font-size: 11px; color: var(--text-muted); margin-top: 16px; }

/* ===== FEATURES SECTION ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(217,179,97,0.12);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(217, 179, 97, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===== PROVIDERS ===== */
.providers-section { background: var(--surface); }
.providers-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.provider-pill {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-secondary);
  transition: var(--transition);
}
.provider-pill:hover {
  border-color: var(--border);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(217, 179, 97, 0.1);
}

/* ===== EXPERT REVIEW ===== */
.review-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(217, 179, 97, 0.08);
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 36px;
  font-size: 100px;
  font-family: Georgia, serif;
  color: rgba(217, 179, 97, 0.15);
  line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 20px; }
.star { font-size: 20px; color: var(--gold); }
.review-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.reviewer-name { font-weight: 700; font-size: 15px; color: var(--gold); }
.reviewer-title { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ===== FAQ ===== */
.faq-list { max-width: 740px; margin: 0 auto; }
details {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
details[open] { border-color: var(--border); }
summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
details[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== RESPONSIBLE GAMBLING ===== */
.rg-banner {
  background: rgba(255, 80, 80, 0.08);
  border-top: 1px solid rgba(255, 80, 80, 0.2);
  border-bottom: 1px solid rgba(255, 80, 80, 0.2);
  padding: 24px 0;
}
.rg-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.rg-icon { font-size: 22px; }
.rg-text { font-size: 13px; color: var(--text-secondary); }
.rg-text strong { color: #e8e8ec; }
.rg-text a { color: var(--gold); text-decoration: underline; }

/* ===== FOOTER ===== */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-license { display: flex; gap: 16px; flex-wrap: wrap; }
.license-badge {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.license-badge span { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* ===== ARTICLE SECTION ===== */
.article-section { background: var(--surface); }
.article-content { max-width: 860px; margin: 0 auto; }
.article-h1 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 20px; }
.article-content h2 { font-size: clamp(17px, 2.2vw, 22px); margin: 36px 0 12px; color: var(--text); }
.article-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.article-list { padding-left: 20px; margin-bottom: 14px; }
.article-list li { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 6px; }
.article-list li::marker { color: var(--gold); }
.article-table-wrap { overflow-x: auto; margin-top: 16px; border-radius: var(--radius); }
.article-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.article-table th {
  background: rgba(217, 179, 97, 0.1);
  color: var(--gold);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.article-table td {
  padding: 11px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.article-table tr:last-child td { border-bottom: none; }
.article-table tr:hover td { background: rgba(217,179,97,0.03); }

/* ===== FAQ SUBHEADING ===== */
.faq-subheading {
  font-size: 18px;
  color: var(--gold);
  margin: 32px 0 16px;
  padding-left: 4px;
  border-left: 3px solid var(--gold);
}

/* ===== INNER PAGES ===== */
.page-hero {
  background: var(--surface);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.page-hero p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 16px; }
.page-breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.page-breadcrumb a { color: var(--gold); }
.page-content { max-width: 860px; margin: 0 auto; padding: 60px 20px; }
.page-content h2 {
  font-size: clamp(20px, 3vw, 28px);
  margin: 40px 0 16px;
  color: var(--text);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.page-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.page-content p { font-size: 15px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 16px; }
.page-content ul, .page-content ol { padding-left: 24px; margin-bottom: 20px; }
.page-content li { font-size: 15px; color: var(--text-secondary); margin-bottom: 8px; line-height: 1.7; }
.page-content li::marker { color: var(--gold); }
.page-content strong { color: var(--text); }
.page-content a { color: var(--gold); text-decoration: underline; }
.page-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 14px; }
.page-content th { background: rgba(217,179,97,0.1); color: var(--gold); padding: 12px 16px; text-align: left; font-weight: 700; }
.page-content td { padding: 11px 16px; color: var(--text-secondary); border-bottom: 1px solid rgba(255,255,255,0.06); }
.page-content .info-box {
  background: rgba(217,179,97,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}
.page-content .info-box p { margin-bottom: 0; }
.page-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }

/* ===== AUTHOR PAGE ===== */
.author-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 40px;
}
.author-avatar-lg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.author-meta { flex: 1; }
.author-name-lg { font-size: 26px; font-family: 'Montserrat', sans-serif; font-weight: 800; margin-bottom: 6px; }
.author-role { color: var(--gold); font-weight: 600; font-size: 15px; margin-bottom: 16px; }
.author-stats { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 16px; }
.author-stat { font-size: 13px; color: var(--text-muted); }
.author-stat strong { display: block; font-size: 22px; color: var(--gold); font-family: 'Montserrat', sans-serif; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeInUp 0.7s ease both; }
.hero-content > * { animation: fadeInUp 0.7s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  nav { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .review-card { padding: 28px; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-offer { padding: 20px 24px; }
  .offer-amount { font-size: 52px; }
}

/* ==========================================================
   ENGAGEMENT WIDGETS
   Promo Popup | Spin Wheel | Live Chat
========================================================== */

/* ---------- Shared overlay ---------- */
.eng-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.eng-overlay.active { opacity: 1; visibility: visible; }

/* ---------- Wheel FAB ---------- */
.wheel-fab {
  position: fixed;
  left: 24px;
  bottom: 100px;
  z-index: 8000;
  background: linear-gradient(135deg,#D9B361,#e5c77d);
  color: #1a1a2e;
  border: none;
  border-radius: 50px;
  padding: 12px 18px 12px 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 20px rgba(217,179,97,.45);
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity .4s, transform .4s;
  font-family: inherit;
}
.wheel-fab .fab-icon { font-size: 22px; line-height: 1; }
.wheel-fab.visible { opacity: 1; transform: translateX(0); }
.wheel-fab:hover { background: linear-gradient(135deg,#b89a3d,#c9a44e); transform: scale(1.05) translateX(0); }

/* Wheel modal */
.wheel-modal {
  background: #2a2a40;
  border-radius: 20px;
  padding: 36px 28px 28px;
  max-width: 380px;
  width: 92%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 60px rgba(217,179,97,.3);
  animation: slideUp .35s ease;
}
.wheel-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  font-size: 26px; color: #999; cursor: pointer;
}
.wheel-close:hover { color: #e8e8ec; }
.wheel-modal h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px; font-weight: 900;
  color: #e8e8ec; margin-bottom: 6px;
}
.wheel-modal > p { color: #9a9ab0; font-size: 14px; margin-bottom: 20px; }
.wheel-container {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: #d4af37;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}
#wheelCanvas { display: block; border-radius: 50%; }
.wheel-spin-btn { width: 100%; font-size: 17px; padding: 14px; }
.wheel-spin-btn:disabled { opacity: .5; cursor: not-allowed; }
.wheel-small { font-size: 12px; color: #aaa; margin-top: 12px; margin-bottom: 0; }

/* Wheel result */
.wheel-result-modal {
  background: #2a2a40;
  border-radius: 20px;
  padding: 48px 36px 36px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 60px rgba(217,179,97,.3);
  animation: popIn .4s cubic-bezier(.175,.885,.32,1.275);
}
.wheel-result-icon { font-size: 56px; margin-bottom: 16px; }
.wheel-result-modal h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px; font-weight: 900;
  color: #e8e8ec; margin-bottom: 10px;
}
.wheel-result-modal p { color: #b0b0c4; font-size: 16px; margin-bottom: 24px; }
.wheel-result-modal p strong { color: #D9B361; font-size: 20px; }
.wheel-result-modal .btn { width: 100%; display: block; font-size: 17px; padding: 14px; margin-bottom: 10px; }
.wheel-result-close {
  background: none; border: none;
  color: #aaa; font-size: 14px; cursor: pointer;
  font-family: inherit; text-decoration: underline;
}
.wheel-result-close:hover { color: #e8e8ec; }

/* ---------- Live Chat ---------- */
.chat-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 8500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.chat-fab {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg,#D9B361,#e5c77d);
  color: #1a1a2e;
  border: none;
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(217,179,97,.45);
  position: relative;
  font-family: inherit;
  transition: transform .2s, background .2s;
}
.chat-fab .fab-icon { font-size: 22px; line-height: 1; }
.chat-fab:hover { background: linear-gradient(135deg,#b89a3d,#c9a44e); transform: scale(1.05); }
.chat-fab.open { border-radius: 50px 50px 50px 4px; }
.chat-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  animation: pulse 1.5s infinite;
}

/* Chat panel */
.chat-panel {
  background: #2a2a40;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 12px 48px rgba(217,179,97,.2);
  width: 340px;
  max-height: 480px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.97);
  transition: opacity .3s, visibility .3s, transform .3s;
}
.chat-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.chat-header {
  background: linear-gradient(135deg,#D9B361,#e5c77d);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-agent { display: flex; align-items: center; gap: 10px; }
.chat-agent-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #fff;
  flex-shrink: 0;
}
.chat-agent-name { font-weight: 700; font-size: 14px; color: #fff; }
.chat-agent-status { font-size: 12px; color: rgba(255,255,255,.8); margin-top: 2px; }
.chat-close-btn {
  background: none; border: none;
  color: rgba(255,255,255,.8); font-size: 22px;
  cursor: pointer; line-height: 1; padding: 0;
}
.chat-close-btn:hover { color: #fff; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg { display: flex; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.5;
}
.chat-msg.agent .chat-bubble {
  background: #2a2a40;
  color: #e8e8ec;
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg,#D9B361,#e5c77d);
  color: #fff;
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.chat-bubble.typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
}
.chat-bubble.typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #e5c77d;
  animation: typingDot 1.2s infinite;
  display: block;
}
.chat-bubble.typing span:nth-child(2) { animation-delay: .2s; }
.chat-bubble.typing span:nth-child(3) { animation-delay: .4s; }

/* Quick replies */
.chat-quick-replies {
  padding: 0 14px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.chat-qr {
  background: #2a2a40;
  border: 1.5px solid #4a4a60;
  color: #D9B361;
  border-radius: 50px;
  padding: 6px 13px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s;
}
.chat-qr:hover { background: #D9B361; color: #fff; border-color: #D9B361; }

/* Chat input */
.chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 14px;
  border-top: 1px solid #33334d;
}
.chat-input {
  flex: 1;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 9px 15px;
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
  color: #e8e8ec;
  transition: border-color .2s;
}
.chat-input:focus { border-color: #e5c77d; }
.chat-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg,#D9B361,#e5c77d);
  color: #fff;
  border: none;
  font-size: 17px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s;
}
.chat-send:hover { transform: scale(1.1); }

/* ---------- Keyframes ---------- */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.8); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30%            { transform: translateY(-5px); opacity: 1; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

/* ---------- Wheel promo layout ---------- */
.wheel-promo {
  max-width: 620px;
  width: 94%;
  padding: 32px 36px 28px;
}
.wheel-promo-header {
  text-align: center;
  margin-bottom: 24px;
}
.wheel-promo-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #e8e8ec;
  margin: 12px 0 8px;
  line-height: 1.25;
}
.wheel-promo-header > p {
  color: #9a9ab0;
  font-size: 14px;
  margin: 0;
}
.wheel-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.wheel-prizes-list {
  padding: 4px 0;
}
.wheel-prizes-title {
  font-weight: 700;
  font-size: 13px;
  color: #D9B361;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 12px;
}
.wheel-prizes-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.wheel-prizes-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #e8e8ec;
}
.prize-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.wheel-spin-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ---------- Mobile adjustments ---------- */
@media (max-width: 600px) {
  .wheel-layout { grid-template-columns: 1fr; }
  .wheel-prizes-list { order: 2; }
  .wheel-spin-area { order: 1; }
  .wheel-promo { padding: 24px 20px 20px; }
}
@media (max-width: 480px) {
  .chat-panel { width: calc(100vw - 48px); }
  .wheel-modal { padding: 24px 18px 20px; }
  .wheel-fab { left: 16px; bottom: 90px; }
  .chat-widget { bottom: 16px; right: 16px; }
}
