:root {
  /* Olimpo Bet official palette (olimpo.bet/assets/css/base.css) */
  --brand-dark: #096045;
  --brand-darker: #00381c;
  --brand-primary: #005226;
  --brand-mid: #1a5738;
  --brand-green: #3cc666;
  --brand-green-hover: #2bb376;
  --brand-mint: #AFE67F;
  --brand-mint-light: #ECF9F0;
  --accent: #f8f538;
  --accent-hover: #f5c043;
  --accent-dim: rgba(248, 245, 56, 0.14);
  --green-dim: rgba(60, 198, 102, 0.14);

  --bg: #121212;
  --bg-card: #272B29;
  --bg-card-hover: #1a5738;
  --border: #00381c;
  --text: #E0E2E1;
  --text-muted: #c4c4c4;
  --green: #3cc666;
  --red: #ff3747;
  --red-dim: rgba(255, 55, 71, 0.12);
  --gradient: linear-gradient(135deg, #f8f538 0%, #f5c043 100%);
  --hero-glow: radial-gradient(ellipse at 50% 0%, rgba(60, 198, 102, 0.18) 0%, transparent 62%);
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --max-width: 1200px;
  --font: Arial, "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--brand-green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brand-mint); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-dark);
  border-bottom: 1px solid var(--brand-darker);
  box-shadow: 0 2px 12px rgba(0, 56, 28, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 38px;
  width: auto;
  max-width: 168px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar { display: none; }

.nav-link {
  color: var(--brand-mint-light);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: rgba(0, 0, 0, 0.18);
}

.header-cta { margin-left: auto; flex-shrink: 0; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-cta {
  background: var(--gradient);
  color: #1a1a1a;
  box-shadow: 0 2px 12px rgba(248, 245, 56, 0.28);
  font-weight: 700;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(248, 245, 56, 0.42);
  color: #1a1a1a;
  background: linear-gradient(135deg, #fff45a 0%, #f8f538 100%);
}

.btn-outline {
  background: transparent;
  color: var(--brand-mint-light);
  border: 1px solid var(--brand-green);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(60, 198, 102, 0.08);
}

.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  padding: 40px 0 0;
  background: var(--hero-glow);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 32px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand-mint); }

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, var(--brand-mint) 55%, var(--brand-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stars { color: var(--accent); letter-spacing: 2px; }

.hero-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Trust bar */
.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 20px;
  background: var(--brand-darker);
  border-top: 1px solid var(--brand-mid);
  border-bottom: 1px solid var(--brand-mid);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.trust-icon { font-size: 1rem; }

/* Main content layout */
.main-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 48px 20px;
}

.bonus-sidebar { position: relative; }

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.bonus-card.sticky { position: sticky; top: 80px; }

.bonus-card h3 {
  font-size: 1rem;
  color: var(--brand-green);
  margin-bottom: 8px;
}

.bonus-amount {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
}

.bonus-details {
  list-style: none;
  margin-bottom: 20px;
}

.bonus-details li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

/* Article */
.article-body { min-width: 0; }

.content-section {
  margin-bottom: 48px;
}

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-mid);
  color: var(--text);
}

.content-section h3 {
  font-size: 1.15rem;
  margin: 16px 0 8px;
}

.content-section p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.content-section ul, .content-section ol {
  margin: 12px 0;
  padding-left: 24px;
  color: var(--text-muted);
}

.content-section li { margin-bottom: 6px; }
.content-section li a { font-weight: 500; }

/* Comparison table */
.table-wrap { overflow-x: auto; margin-top: 16px; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--brand-darker);
  color: var(--accent);
  font-weight: 600;
}

.comparison-table td.highlight {
  color: var(--green);
  font-weight: 600;
}

.comparison-table tr:hover td {
  background: var(--bg-card-hover);
}

/* Payment grid */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.payment-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
  color: var(--text);
}

.payment-card:hover {
  border-color: var(--brand-green);
  background: var(--bg-card-hover);
  color: var(--brand-mint);
}

.payment-name { font-weight: 600; font-size: 0.95rem; }
.payment-time { font-size: 0.8rem; color: var(--green); }
.payment-min { font-size: 0.75rem; color: var(--text-muted); }

/* Pros / Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.pros-box, .cons-box {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.pros-box {
  background: var(--green-dim);
  border-color: rgba(60, 198, 102, 0.35);
}

.cons-box {
  background: var(--red-dim);
  border-color: rgba(255, 55, 71, 0.35);
}

.pros-box h3 { color: var(--green); margin-bottom: 12px; }
.cons-box h3 { color: var(--red); margin-bottom: 12px; }

.pros-box ul, .cons-box ul {
  list-style: none;
  padding: 0;
}

.pros-box li, .cons-box li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* FAQ */
.faq-list { margin-top: 16px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--brand-green);
  transition: transform 0.2s;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  padding: 0 20px 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Related */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.related-card {
  display: flex;
  align-items: center;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.related-card:hover {
  border-color: var(--brand-green);
  background: var(--green-dim);
  color: var(--brand-mint);
  transform: translateY(-2px);
}

/* Bottom CTA */
.bottom-cta {
  padding: 64px 20px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(9, 96, 69, 0.35) 0%, transparent 65%);
  border-top: 1px solid var(--brand-mid);
}

.bottom-cta h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.bottom-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  background: var(--brand-dark);
  border-top: 1px solid var(--brand-darker);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 6px; }

.footer-col a {
  color: var(--brand-mint-light);
  font-size: 0.85rem;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--brand-darker);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.disclaimer { font-size: 0.75rem !important; opacity: 0.7; }

/* Mobile sticky CTA */
.mobile-cta-bar {
  display: none;
}

/* Games showcase */
.games-showcase {
  padding: 56px 0 48px;
  background:
    linear-gradient(180deg, rgba(9, 96, 69, 0.22) 0%, transparent 100%),
    var(--bg);
  border-bottom: 1px solid var(--brand-mid);
}

.games-showcase-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.games-showcase-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-green);
  margin-bottom: 6px;
}

.games-showcase-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.games-showcase-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.games-showcase-more:hover { color: var(--accent-hover); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.game-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  color: var(--text);
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-green);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(60, 198, 102, 0.2);
  color: var(--text);
}

.game-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0d0d0d;
}

.game-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}

.game-card:hover .game-card-media img {
  transform: scale(1.06);
}

.game-card-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(0, 0, 0, 0.72);
  color: var(--accent);
  border: 1px solid rgba(248, 245, 56, 0.25);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 56, 28, 0.88) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-play {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gradient);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(248, 245, 56, 0.35);
}

.game-card-body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 68px;
}

.game-card-name {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.game-card-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.games-showcase-cta {
  margin-top: 32px;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .main-content { grid-template-columns: 1fr; }
  .bonus-sidebar { order: -1; }
  .bonus-card.sticky { position: static; }
  .pros-cons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { padding-bottom: 76px; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--brand-dark);
    border-bottom: 1px solid var(--brand-darker);
    padding: 12px;
  }

  .main-nav.open { display: flex; }

  .menu-toggle { display: block; }

  .header-cta {
    display: inline-flex;
    padding: 8px 14px;
    font-size: 0.78rem;
    margin-left: auto;
    flex-shrink: 0;
  }

  .logo img {
    height: 34px;
    max-width: 150px;
  }

  .header-inner { gap: 10px; padding: 10px 16px; }

  .site-header .header-inner { position: relative; }

  .mobile-cta-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(0, 56, 28, 0.96);
    border-top: 1px solid var(--brand-green);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
  }

  .mobile-cta-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 800;
  }

  .trust-bar { gap: 8px; }
  .trust-item { font-size: 0.7rem; }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }

  .games-showcase { padding: 40px 0 32px; }

  .hero-cta-group .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .bottom-cta .btn-lg {
    width: 100%;
    max-width: 360px;
  }
}
