/* Design: GLASSMORPHISM LUXURY — soft gradients, gold accents, blur cards */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@400;500;600&display=swap');

:root {
  --bg: #0f0e17;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text: #f0ede8;
  --text-muted: #a09a8f;
  --gold: #d4af37;
  --gold-dim: #b8962e;
  --glow-gold: 0 0 30px rgba(212, 175, 55, 0.25), 0 0 60px rgba(212, 175, 55, 0.1);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(180, 150, 46, 0.05), transparent),
    url("bg-cashreelssss.png"),
    url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 20 A20 20 0 1 1 39.99 20' fill='none' stroke='rgba(212,175,55,0.07)' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='6' fill='none' stroke='rgba(212,175,55,0.05)'/%3E%3C/svg%3E");
  background-size: auto, auto, cover, 80px 80px;
  background-position: center, center, center, 0 0;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; }
h1 { font-size: clamp(1.85rem, 4vw, 2.75rem); }
a { color: var(--gold); text-decoration: none; transition: color 0.2s, text-shadow 0.2s; }
a:hover { color: #f0e090; text-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.site-header {
  background: rgba(15, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem;
  gap: 0.75rem;
}
.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
  transition: background 0.2s, border-color 0.2s;
}
.site-logo:hover { background: rgba(212, 175, 55, 0.08); border-color: rgba(212, 175, 55, 0.4); }
.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; flex-wrap: wrap; justify-content: center; }
.site-header nav a { color: var(--text-muted); font-weight: 500; }
.site-header nav a:hover { color: var(--gold); }
.site-header [style*="font-size:0.75rem"] a { color: var(--text-muted); font-size: 0.75rem; }
.site-header [style*="font-size:0.75rem"] a:hover { color: var(--gold); }

@keyframes cardStagger {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  margin: 2rem 0;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glow-gold);
  overflow: hidden;
}
.hero-full-bar .hero-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.hero-full-bar .hero-content {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.hero h1 { color: var(--gold); margin-bottom: 0.5rem; text-shadow: 0 0 25px rgba(212, 175, 55, 0.2); }
.hero-tagline { color: var(--text-muted); max-width: 560px; margin: 0.5rem auto 1rem; line-height: 1.5; }
.hero .disclaimer { font-size: 0.85rem; padding: 0.75rem; background: rgba(0,0,0,0.2); border-radius: 8px; color: var(--text-muted); margin: 0; }
.editor-pick-block {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
}
.editor-pick-block h2 { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.5rem; }
.editor-pick-block p { margin: 0; color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.content-block-long p { line-height: 1.65; }

.page-hero {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 2rem;
}
.page-hero h1 { color: var(--text); margin: 0 0 0.5rem; }
.page-hero .disclaimer { font-size: 0.85rem; color: var(--text-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(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  position: relative;
  animation: cardStagger 0.5s ease-out backwards;
}
.casino-card:nth-child(1){ animation-delay: 0.05s; }
.casino-card:nth-child(2){ animation-delay: 0.12s; }
.casino-card:nth-child(3){ animation-delay: 0.19s; }
.casino-card:nth-child(4){ animation-delay: 0.26s; }
.casino-card:nth-child(5){ animation-delay: 0.33s; }
.casino-card:nth-child(6){ animation-delay: 0.4s; }
.casino-card:hover {
  box-shadow: var(--glow-gold);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}
.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), var(--gold-dim));
  color: #0f0e17; z-index: 1;
}
.casino-card .logo-wrap {
  width: 100px;
  height: 64px;
  flex-shrink: 0;
  align-self: center;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--glass-border);
}
.casino-card .logo-wrap { border-radius: 14px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 2px 12px rgba(0,0,0,0.15); overflow: hidden; }
.casino-card .logo-wrap img { object-fit: contain; max-width: 100%; max-height: 100%; border-radius: 10px; }
.casino-card .info { flex: 1; min-width: 0; }
.casino-card h3 { margin: 0 0 0.25rem; font-size: 1.1rem; color: var(--text); }
.casino-card .meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.casino-card .casino-features {
  list-style: none; margin: 0 0 0.5rem; padding: 0; font-size: 0.8rem; color: var(--text-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.7rem;
}
.casino-card .card-desc {
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.45; margin-bottom: 0.5rem;
}
.casino-card .tcs { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.5rem; opacity: 0.9; }
.casino-card .rating { margin: 0.35rem 0 0.5rem; font-size: 0.8rem; color: var(--gold-dim); }
.casino-card .rating .bar { display: block; height: 6px; background: rgba(255,255,255,0.1); border-radius: 999px; overflow: hidden; margin-top: 4px; }
.casino-card .rating .bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); border-radius: 999px; }
.casino-card .cta {
  padding: 0.55rem 1.2rem;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: box-shadow 0.3s, background 0.3s;
}
.casino-card .cta:hover { background: rgba(212, 175, 55, 0.15); box-shadow: var(--glow-gold); }

.content-block {
  margin: 2rem 0;
  padding: 1.75rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.content-block h2 { color: var(--gold); margin-top: 0; }
.content-block p { margin: 0; color: var(--text); }

.site-footer {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--glass-border);
  background: rgba(15, 14, 23, 0.9);
  backdrop-filter: blur(12px);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
.footer-disclaimer-top { flex-direction: column; text-align: center; gap: 1.25rem; }
.footer-disclaimer-top .footer-disclaimer { order: -1; margin: 0; font-size: 0.75rem; color: var(--text-muted); max-width: 520px; margin-left: auto; margin-right: auto; }
.footer-disclaimer-top .footer-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; }
.footer-disclaimer-top .footer-nav a { color: var(--text-muted); }
.footer-disclaimer-top .footer-nav a:hover { color: var(--gold); }
.footer-disclaimer-top .footer-regulatory { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; font-size: 0.9rem; }
.footer-disclaimer-top .footer-regulatory a { color: var(--text-muted); }
.footer-disclaimer-top .footer-regulatory a:hover { color: var(--gold); }
.footer-disclaimer-top .footer-logos { display: flex; gap: 10px; justify-content: center; }
.footer-disclaimer-top .footer-logos img { border-radius: 6px; opacity: 0.9; }
/* Footer layout: top stripe + 3 distinct sections */
.site-footer {
  border-top: 3px solid var(--gold);
  padding-top: 0;
}
.footer-disclaimer-top .footer-disclaimer {
  padding: 1rem 1.5rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
}
.footer-disclaimer-top .footer-regulatory { border-top: 1px solid var(--glass-border); padding-top: 1.25rem; width: 100%; }
.footer-disclaimer-top .footer-logos { border-top: 1px solid var(--glass-border); padding-top: 1.25rem; width: 100%; }
/* Content block variants */
.content-block:first-of-type { border-radius: 999px; padding: 1.25rem 2rem; max-width: 90%; margin-left: auto; margin-right: auto; }
.editor-pick-block { border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; margin-left: 0; padding-left: 1.5rem; }
.content-block:nth-of-type(3) { border-radius: 8px; box-shadow: inset 0 0 0 2px var(--glass-border); }
.footer-inner .regulatory-row { display: flex; flex-wrap: wrap; gap: 1rem; width: 100%; justify-content: center; }
.footer-inner .regulatory-row a { color: var(--text-muted); font-size: 0.9rem; }
.footer-inner .regulatory-row a:hover { color: var(--gold); }
.footer-inner > div[style*="display:flex"] img { border-radius: 6px; opacity: 0.9; }
.footer-inner nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-inner nav a { color: var(--text-muted); }
.footer-disclaimer { font-size: 0.75rem; color: var(--text-muted); width: 100%; margin-top: 1rem; text-align: center; }
.footer-note { font-size: 0.75rem; color: var(--text-muted); margin: 0.75rem auto 0; max-width: 420px; text-align: center; opacity: 0.9; }
.footer-credit { font-size: 0.75rem; color: var(--text-muted); margin: 0.75rem auto 0; text-align: center; opacity: 0.9; }
.footer-credit a { color: var(--text-muted); }
.footer-credit a:hover { color: var(--gold); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 14, 23, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--gold);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 1000;
  box-shadow: 0 -10px 40px rgba(212, 175, 55, 0.1);
}
.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: 10px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.cookie-banner button:hover { box-shadow: var(--glow-gold); }

.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(10px);
}
.age-gate-overlay.hidden { display: none; }
.age-gate-box {
  background: var(--glass);
  backdrop-filter: blur(24px);
  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(--text-muted); }
.age-gate-box .buttons { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.age-gate-box button {
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  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(--text-muted); border: 2px solid var(--text-muted); }

main .container > h2 { color: var(--text); margin-top: 2rem; }
