/* Design: PREMIUM DARK — deep purple/black, subtle gold glow, elegant */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --bg: #0c0a14;
  --card: #15121e;
  --text: #f4f1f8;
  --muted: #8c8399;
  --gold: #c9a227;
  --purple: #6b5b95;
  --glow-gold: 0 0 25px rgba(201, 162, 39, 0.25), 0 0 50px rgba(201, 162, 39, 0.08);
  --radius: 10px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(107, 91, 149, 0.12), transparent 50%),
    url("bg-vip22777wins.png"),
    url("data:image/svg+xml,%3Csvg width='90' height='90' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='45' cy='45' r='18' fill='none' stroke='rgba(201,162,39,0.06)' stroke-width='1'/%3E%3Ccircle cx='45' cy='45' r='6' fill='rgba(201,162,39,0.03)'/%3E%3C/svg%3E");
  background-size: auto, cover, 90px 90px;
  background-position: center, center, 0 0;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}
h1, h2, h3 { font-family: 'Libre Baskerville', serif; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
a { color: var(--gold); text-decoration: none; }
a:hover { text-shadow: var(--glow-gold); }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.site-header {
  background: rgba(21, 18, 30, 0.95);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 4px 25px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem; flex-wrap: wrap; gap: 1rem; }
.site-logo { font-family: 'Libre Baskerville', serif; font-size: 1.4rem; color: var(--gold); text-shadow: 0 0 20px rgba(201, 162, 39, 0.2); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.75rem; border-radius: 10px; border: 1px solid rgba(201, 162, 39, 0.3); transition: background 0.2s, border-color 0.2s; }
.site-logo:hover { background: rgba(201, 162, 39, 0.08); border-color: rgba(201, 162, 39, 0.5); }
.site-logo-icon { display: inline-flex; flex-shrink: 0; }
.site-logo-icon-right { margin-left: 0.35rem; }
.site-logo-icon-above { display: block; margin: 0 auto 0.3rem; }
.site-logo-stacked { flex-direction: column; align-items: center; }
.site-header nav { display: flex; gap: 1.5rem; }
.site-header nav a { color: var(--muted); }
.site-header nav a:hover { color: var(--gold); }
.site-header [style*="font-size:0.75rem"] a { color: var(--muted); }
.site-header [style*="font-size:0.75rem"] a:hover { color: var(--gold); }

.hero { 
  padding: 2.5rem 1.5rem; 
  text-align: center; 
  margin: 2rem 0; 
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.06) 0%, transparent 100%); 
  border: 1px solid rgba(201, 162, 39, 0.25); 
  border-radius: var(--radius); 
  box-shadow: var(--glow-gold); 
}
.hero h1 { color: var(--gold); margin-bottom: 0.5rem; text-shadow: 0 0 25px rgba(201, 162, 39, 0.2); }
.hero p { color: var(--muted); max-width: 560px; margin: 0.5rem auto; }
.hero .disclaimer { font-size: 0.85rem; margin-top: 1.25rem; color: var(--muted); }

.hero-premium-line .hero-premium-tag { font-size: 0.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.5rem; display: block; }
.hero-premium-line .hero-body { margin: 0.75rem auto; }
.review-process-block { margin: 2rem 0; padding: 1.75rem; background: var(--card); border: 1px solid rgba(201, 162, 39, 0.2); border-radius: var(--radius); }
.review-process-block h2 { margin-top: 0; color: var(--gold); }
.review-process-block p { margin: 0; color: var(--text); }
.content-extra-short { margin-top: 2rem; }
.content-extra-short h2 { display: none; }
.footer-split-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; text-align: left; align-items: start; }
@media (max-width: 600px) { .footer-split-cols { grid-template-columns: 1fr; text-align: center; } }
.footer-split-cols .footer-col-left { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-split-cols .footer-col-left .footer-disclaimer { margin-top: 0; }
.footer-split-cols .footer-col-right { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-split-cols .footer-imgs-inline { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 0.5rem; }
.footer-split-cols .footer-imgs-inline img { border-radius: 6px; opacity: 0.9; }
.footer-split-cols a { color: var(--muted); }
.footer-split-cols a:hover { color: var(--gold); }
/* Footer: two columns with vertical divider */
.footer-split-cols {
  padding: 2rem 0;
  border-top: 2px solid rgba(201, 162, 39, 0.3);
}
.footer-split-cols .footer-col-left {
  padding-right: 2rem;
  border-right: 1px solid rgba(201, 162, 39, 0.2);
}
.footer-split-cols .footer-col-right { padding-left: 2rem; }
.footer-split-cols .footer-imgs-inline img { border: 1px solid rgba(201, 162, 39, 0.2); padding: 6px; border-radius: 6px; }
@media (max-width: 600px) {
  .footer-split-cols .footer-col-left { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(201, 162, 39, 0.2); padding-bottom: 1rem; }
  .footer-split-cols .footer-col-right { padding-left: 0; }
}
/* Content block variants */
.review-process-block { border-radius: 16px; padding: 2rem 2.5rem; border: 2px solid rgba(201, 162, 39, 0.25); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.content-block:nth-of-type(1) { border-radius: 8px 24px 8px 24px; max-width: 88%; }
.content-block:nth-of-type(2) { border-radius: 24px 8px 24px 8px; max-width: 90%; margin-left: auto; }
.content-extra-short { padding: 1rem 1.5rem; border-radius: 8px; background: rgba(201, 162, 39, 0.05); border: 1px dashed rgba(201, 162, 39, 0.2); }

@keyframes smoothReveal { from { opacity: 0; } to { opacity: 1; } }
.casino-card { animation: smoothReveal 0.6s ease-out backwards; }
.grid-wrapper .casino-card:nth-child(1) { animation-delay: 0.08s; }
.grid-wrapper .casino-card:nth-child(2) { animation-delay: 0.16s; }
.grid-wrapper .casino-card:nth-child(3) { animation-delay: 0.24s; }
.grid-wrapper .casino-card:nth-child(4) { animation-delay: 0.32s; }
.grid-wrapper .casino-card:nth-child(5) { animation-delay: 0.4s; }
.grid-wrapper .casino-card:nth-child(6) { animation-delay: 0.48s; }
.grid-wrapper .casino-card:nth-child(7) { animation-delay: 0.56s; }
.grid-wrapper .casino-card:nth-child(8) { animation-delay: 0.64s; }
.grid-wrapper .casino-card:nth-child(9) { animation-delay: 0.72s; }
.grid-wrapper .casino-card:nth-child(10) { animation-delay: 0.8s; }
.grid-wrapper .casino-card:nth-child(n+11) { animation-delay: 0.88s; }
.casino-card .cta { transition: box-shadow 0.3s, transform 0.2s; }
.casino-card:hover .cta { transform: scale(1.03); }

.page-hero { padding: 2rem 0 1.5rem; border-bottom: 1px solid rgba(201, 162, 39, 0.2); margin-bottom: 2rem; }
.page-hero h1 { color: var(--text); margin: 0 0 0.5rem; }
.page-hero .disclaimer { font-size: 0.85rem; color: var(--muted); margin: 0; }

.grid-wrapper { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin: 1.5rem 0; }
.casino-card {
  background: var(--card);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.casino-card:hover { box-shadow: var(--glow-gold); border-color: rgba(201, 162, 39, 0.4); }
.casino-card .logo-wrap {
  width: 120px; height: 72px;
  background: rgba(0,0,0,0.4);
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  display: flex; align-items: center; justify-content: center;
  padding: 10px; margin-bottom: 0.75rem;
}
.casino-card .logo-wrap { border-radius: 14px; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,0.04); }
.casino-card .logo-wrap img { object-fit: contain; max-width: 100%; max-height: 100%; border-radius: 10px; }
.casino-card h3 { margin: 0 0 0.35rem; font-size: 1.1rem; color: var(--text); }
.casino-card { position: relative; }
.casino-card .card-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem; border-radius: 6px; background: linear-gradient(135deg, var(--gold), #b8860b); color: #0a0a0f; z-index: 1;
}
.casino-card .meta, .casino-card .tcs { font-size: 0.8rem; color: var(--muted); }
.casino-card .casino-features { list-style: none; margin: 0 0 0.5rem; padding: 0; font-size: 0.8rem; color: var(--muted); }
.casino-card .casino-features li { padding: 0.15rem 0 0.15rem 1rem; position: relative; }
.casino-card .casino-features li::before { content: '▸'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; }
.casino-card .card-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.45; margin-bottom: 0.5rem; }
.casino-card .rating { font-size: 0.8rem; margin: 0.25rem 0 0.5rem; color: var(--gold); font-weight: 600; }
.casino-card .cta {
  display: inline-block; margin-top: 0.75rem; padding: 0.55rem 1.2rem;
  background: var(--gold);
  color: var(--bg);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: box-shadow 0.3s;
}
.casino-card .cta:hover { box-shadow: var(--glow-gold); }

.content-block { margin: 2rem 0; padding: 1.75rem; background: var(--card); border: 1px solid rgba(201, 162, 39, 0.15); border-radius: var(--radius); }
.content-block h2 { margin-top: 0; color: var(--gold); }
.content-block p { margin: 0; color: var(--text); }

.site-footer { margin-top: 3rem; padding: 2rem 0; border-top: 1px solid rgba(201, 162, 39, 0.2); background: rgba(21, 18, 30, 0.9); }
.footer-inner { text-align: center; }
.footer-inner a { color: var(--muted); }
.footer-inner a:hover { color: var(--gold); }
.footer-inner > div[style*="display:flex"] img { border-radius: 6px; opacity: 0.9; }
.footer-disclaimer { font-size: 0.75rem; color: var(--muted); margin-top: 1rem; }
.footer-note { font-size: 0.75rem; color: var(--muted); margin: 0.5rem 0 0; opacity: 0.9; }

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(21, 18, 30, 0.98);
  border-top: 1px solid var(--gold);
  padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  z-index: 1000;
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { margin: 0; color: var(--text); }
.cookie-banner button { padding: 0.5rem 1.25rem; background: var(--gold); color: var(--bg); border: none; border-radius: 8px; font-weight: 600; cursor: pointer; }
.cookie-banner button:hover { box-shadow: var(--glow-gold); }

.age-gate-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; z-index: 2000; }
.age-gate-overlay.hidden { display: none; }
.age-gate-box { background: var(--card); border: 1px solid var(--gold); border-radius: var(--radius); padding: 2.5rem; max-width: 400px; text-align: center; box-shadow: var(--glow-gold); }
.age-gate-box h2 { color: var(--gold); margin-top: 0; }
.age-gate-box p { color: var(--muted); }
.age-gate-box .buttons { margin-top: 1.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.age-gate-box button { padding: 0.7rem 1.5rem; border-radius: 8px; font-weight: 600; cursor: pointer; font-family: inherit; }
.age-gate-box .btn-confirm { background: var(--gold); color: var(--bg); border: none; }
.age-gate-box .btn-confirm:hover { box-shadow: var(--glow-gold); }
.age-gate-box .btn-leave { background: transparent; color: var(--muted); border: 2px solid var(--muted); }

main .container > p[style*="font-size: 0.8rem"] { color: var(--muted); margin-top: 2rem; }
