/* Global Casino Reviewz - Shared Styles */
:root {
  --navy: #0A0E27;
  --navy-2: #0F1433;
  --navy-3: #161B3D;
  --black: #05070F;
  --gold: #D4AF37;
  --gold-2: #E6C76A;
  --gold-3: #B8941F;
  --emerald: #00A86B;
  --emerald-2: #1FC489;
  --rose: #E5484D;
  --off-white: #F5F5F0;
  --muted: #8A8FA8;
  --muted-2: #5A5F77;
  --line: rgba(245, 245, 240, 0.08);
  --line-2: rgba(245, 245, 240, 0.14);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-2: rgba(255, 255, 255, 0.06);
  --shadow-gold: 0 12px 40px -12px rgba(212, 175, 55, 0.35);
  --max-w: 1280px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--off-white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Background glow */
body::before {
  content: '';
  position: fixed;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 1400px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }
.serif { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.02em; }
.mono { font-family: var(--font-mono); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

/* ─── Navbar ──────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 39, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.logo-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold-3));
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.12), 0 6px 20px -8px var(--gold);
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1.5px dashed rgba(10,14,39,0.6);
  border-radius: 50%;
}
.logo span { color: var(--off-white); }
.logo em { font-style: normal; color: var(--gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--off-white);
  opacity: 0.78;
  border-radius: 8px;
  transition: 0.18s ease;
  letter-spacing: 0.01em;
}
.nav-menu a:hover { opacity: 1; background: var(--glass); }
.nav-menu a.active { opacity: 1; color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 12px; }

/* Language selector */
.lang {
  position: relative;
}
.lang-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  font-size: 13px;
  color: var(--off-white);
  transition: 0.18s ease;
}
.lang-btn:hover { background: var(--glass); border-color: rgba(212,175,55,0.4); }
.lang-btn svg { width: 16px; height: 16px; }
.lang-flag { font-size: 14px; line-height: 1; }
.lang-menu {
  position: absolute;
  right: 0; top: calc(100% + 8px);
  width: 240px;
  max-height: 360px;
  overflow-y: auto;
  padding: 8px;
  background: rgba(15, 20, 51, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
  display: none;
  z-index: 200;
}
.lang.open .lang-menu { display: block; }
.lang-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--off-white);
  text-align: left;
  transition: 0.12s;
}
.lang-item:hover { background: var(--glass-2); }
.lang-item.active { color: var(--gold); }
.lang-item .flag { font-size: 16px; }
.lang-item .code { margin-left: auto; opacity: 0.5; font-size: 11px; font-family: var(--font-mono); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--navy);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 48px -12px rgba(212, 175, 55, 0.55);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}
.btn-ghost {
  background: var(--glass);
  border-color: var(--line-2);
  color: var(--off-white);
}
.btn-ghost:hover { background: var(--glass-2); border-color: rgba(212,175,55,0.4); }
.btn-emerald {
  background: var(--emerald);
  color: var(--off-white);
}
.btn-emerald:hover { background: var(--emerald-2); }

.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 16px 26px; font-size: 15px; }

.btn-arrow::after {
  content: '→';
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* Mobile nav */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line-2);
}
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--off-white);
  position: relative;
}
.hamburger span::before, .hamburger span::after {
  content: ''; position: absolute; left: 0;
  width: 18px; height: 1.5px; background: var(--off-white);
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }

/* ─── Stars ──────────────────────────────────── */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}
.stars-lg { font-size: 22px; }
.stars-sm { font-size: 12px; }
.stars .empty { color: rgba(212, 175, 55, 0.22); }

/* ─── Section ──────────────────────────────────── */
.section { padding: 96px 0; position: relative; }
.section-tight { padding: 56px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 720px;
}
.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
  margin-top: 12px;
}
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gold);
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding-bottom: 2px;
  transition: 0.2s;
}
.section-link:hover { border-bottom-color: var(--gold); gap: 10px; }

/* ─── Cards & Glass ──────────────────────────────────── */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: 0.25s ease;
}
.glass:hover {
  border-color: rgba(212,175,55,0.25);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

/* ─── Footer ──────────────────────────────────── */
.footer {
  margin-top: 80px;
  padding: 80px 0 40px;
  background: var(--black);
  border-top: 1px solid var(--line);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-col h4 {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; opacity: 0.78; transition: 0.18s; }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-brand p {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 14px;
  max-width: 320px;
}
.social {
  display: flex; gap: 8px;
}
.social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: 0.2s;
}
.social a:hover { border-color: var(--gold); color: var(--gold); }
.social svg { width: 16px; height: 16px; }

.disclaimer {
  margin-top: 40px;
  padding: 24px;
  border-radius: 12px;
  background: rgba(229, 72, 77, 0.06);
  border: 1px solid rgba(229, 72, 77, 0.2);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.disclaimer .age {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--rose);
  font-size: 14px;
}
.disclaimer p {
  margin: 0;
  font-size: 13px;
  color: rgba(245, 245, 240, 0.72);
  line-height: 1.6;
}
.disclaimer strong { color: var(--off-white); }

.copyline {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  color: var(--muted);
}
.copyline a { opacity: 0.7; }
.copyline a:hover { color: var(--gold); opacity: 1; }
.copyline ul { display: flex; gap: 20px; list-style: none; padding: 0; margin: 0; }

/* ─── Cookie banner ──────────────────────────────────── */
.cookie {
  position: fixed;
  left: 24px; bottom: 24px;
  max-width: 460px;
  padding: 20px 24px;
  background: rgba(15, 20, 51, 0.96);
  backdrop-filter: blur(24px);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.7);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: cookieIn 0.5s ease 1s backwards;
}
@keyframes cookieIn { from { opacity: 0; transform: translateY(20px); } }
.cookie-title { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.cookie p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.6; }
.cookie-actions { display: flex; gap: 8px; }
.cookie.hidden { display: none; }

/* ─── Trust bar ──────────────────────────────────── */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.trust-item {
  background: var(--navy);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-item .num {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.trust-item .lbl { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; height: 64px; }
  .nav-menu, .lang-btn span { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .copyline { flex-direction: column; align-items: flex-start; }
  .cookie { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  
  /* Logo: hide full text, show GCR abbreviation on mobile */
  .logo > div:not(.logo-mark) { display: none; }
  .logo::after {
    content: 'GCR';
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--gold);
  }
}

/* ═══ Hero — ka homepage scoped ═══════════════════ */
.ka-hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
}
.ka-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(212,175,55,0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0,168,107,0.06), transparent 60%);
  pointer-events: none;
}
.ka-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.ka-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.ka-hero h1 em { font-style: italic; color: var(--gold); position: relative; }
.ka-hero h1 em::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0.04em;
  height: 0.08em;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.ka-hero .lead {
  font-size: 18px;
  color: rgba(245,245,240,0.72);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.ka-hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ka-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .ka-hero { padding: 48px 0 64px; }
  .ka-hero h1 { font-size: 36px; }
  .ka-hero .lead { font-size: 16px; }
}
