/* =============================================
   Casino Pregled HR – Main Stylesheet
   Color palette: Navy #0D1B2A, Gold #C9A84C, 
   Light #F5F0E8, White #FFFFFF
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  color: #1a2332;
  background: #F5F0E8;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s; }
ul { list-style: none; }

/* ── CSS Variables ───────────────────────── */
:root {
  --navy:   #0D1B2A;
  --navy2:  #162436;
  --gold:   #C9A84C;
  --gold2:  #e8c76a;
  --cream:  #F5F0E8;
  --white:  #FFFFFF;
  --text:   #1a2332;
  --muted:  #5a6a7a;
  --border: #ddd6c8;
  --shadow: 0 4px 24px rgba(13,27,42,.12);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ── Utility Classes ─────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); font-size: .9rem; }

/* ── Typography ──────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--muted); font-size: 1.05rem; max-width: 640px; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-lg { padding: 16px 38px; font-size: 1.05rem; }

/* ── Header & Navigation ─────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  transition: all .3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
/* ── Logo image variant ───────────────────── */
.logo img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  flex-shrink: 0;
  object-fit: contain;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.logo-text { color: var(--white); }
.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--white);
}
.logo-text span {
  display: block;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .2s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold);
  background: rgba(201,168,76,.1);
}

.header-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
  display: block;
}

/* ── Hero Section ────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,27,42,.92) 0%, rgba(13,27,42,.75) 50%, rgba(13,27,42,.88) 100%),
    url('https://images.unsplash.com/photo-1605870445919-838d190e8e1b?w=1800&q=80') center/cover no-repeat;
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: floatBg 8s ease-in-out infinite;
}
.hero-particles::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  bottom: -100px; left: -50px;
  animation: floatBg 10s ease-in-out infinite reverse;
}
@keyframes floatBg {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 38px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Trust Bar ───────────────────────────── */
.trust-bar {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.trust-item i { color: var(--gold); font-size: 1rem; }

/* ── Casino Cards ────────────────────────── */
.casino-grid { display: grid; gap: 28px; }

.casino-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--border);
  position: relative;
}
.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,27,42,.18);
}

.card-rank {
  position: absolute;
  top: 20px; left: 20px;
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .95rem;
  z-index: 2;
}

.casino-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 28px 28px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.casino-logo-wrap {
  width: 90px; height: 56px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 6px;
  overflow: hidden;
}
.casino-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.casino-logo-wrap .logo-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.2;
}

.casino-header-info { flex: 1; }
.casino-name {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.casino-license {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: .72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
}
.casino-rating { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.stars { color: var(--gold); font-size: .85rem; letter-spacing: 1px; }
.rating-num { color: var(--white); font-weight: 700; font-size: 1.05rem; }
.rating-count { color: rgba(255,255,255,.5); font-size: .78rem; }

.casino-card-body { padding: 24px 28px; }
.casino-bonus-box {
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(201,168,76,.03));
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.bonus-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.bonus-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}
.bonus-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 5px;
}

.casino-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .83rem;
  color: var(--muted);
}
.feature-item i { color: var(--gold); font-size: .9rem; flex-shrink: 0; }

.casino-card-footer {
  padding: 0 28px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.casino-card-footer .btn { flex: 1; justify-content: center; }
.terms-note {
  font-size: .7rem;
  color: var(--muted);
  padding: 8px 28px 16px;
  border-top: 1px solid var(--border);
}

/* ── Featured Badge ──────────────────────── */
.featured-badge {
  position: absolute;
  top: 0; right: 28px;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 8px 8px;
}

/* ── Why Section ─────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all .3s;
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.04));
  border: 2px solid rgba(201,168,76,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gold);
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); }
.why-card p { font-size: .88rem; color: var(--muted); }

/* ── Guide Section ───────────────────────── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.guide-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 30px;
  transition: all .3s;
}
.guide-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(201,168,76,.35);
}
.guide-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(201,168,76,.3);
  line-height: 1;
  margin-bottom: 12px;
}
.guide-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.guide-card p { color: rgba(255,255,255,.6); font-size: .88rem; }

/* ── Regulators Bar ──────────────────────── */
.regulators-section { padding: 56px 0; background: var(--white); }
.regulators-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.regulators-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.regulator-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  transition: all .25s;
  white-space: nowrap;
}
.regulator-badge:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,168,76,.15);
}
.regulator-badge i { color: var(--gold); font-size: .9rem; }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: .8rem;
  border: 2px solid var(--gold);
}
.regulator-badge--img {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  transition: all .25s;
}
.regulator-badge--img:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(201,168,76,.18);
  transform: translateY(-2px);
}

/* ── CTA Banner ──────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f47 50%, var(--navy) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::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='%23C9A84C' 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");
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner .btn { position: relative; }

/* ── Footer ──────────────────────────────── */
.site-footer {
  background: #0a1520;
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: .88rem; margin: 16px 0 24px; color: rgba(255,255,255,.55); max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  transition: all .25s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); max-width: 680px; }
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.age-stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-weight: 800;
  font-size: .75rem;
  color: var(--gold);
}

/* ── Page Hero (inner pages) ─────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 580px; }

/* ── About Page Specific ─────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 14px 20px;
  color: var(--white);
}
.about-image-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
}
.about-image-badge span { font-size: .78rem; color: rgba(255,255,255,.7); }

.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--muted); margin-bottom: 18px; font-size: .97rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.value-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all .3s;
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.value-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.value-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: .82rem; color: var(--muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all .3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  border: 3px solid rgba(201,168,76,.2);
}
.team-card h4 { color: var(--navy); margin-bottom: 5px; }
.team-role { font-size: .82rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; display: block; }
.team-card p { font-size: .82rem; color: var(--muted); }

.methodology-list { list-style: none; }
.methodology-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.methodology-list li:last-child { border-bottom: none; }
.meth-num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.meth-content h4 { color: var(--navy); margin-bottom: 4px; }
.meth-content p { font-size: .88rem; color: var(--muted); }

/* ── Contact Page ────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
}
.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05));
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: .9rem; color: var(--navy); margin-bottom: 4px; }
.contact-info-item a, .contact-info-item p { font-size: .88rem; color: var(--muted); }
.contact-info-item a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .93rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Responsible Gaming Page ─────────────── */
.rg-intro {
  background: linear-gradient(135deg, rgba(201,168,76,.08), transparent);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 40px;
}
.rg-intro p { font-size: 1.02rem; color: var(--text); line-height: 1.8; }

.rg-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.rg-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all .3s;
}
.rg-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.rg-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.04));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 18px;
}
.rg-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.rg-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

.org-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.org-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all .3s;
}
.org-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.org-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.org-card img {
  display: block;
  margin: 0 auto 12px;
  max-height: 44px;
  max-width: 100%;
  object-fit: contain;
}
.org-card h4 { font-size: .95rem; color: var(--navy); margin-bottom: 8px; }
.org-card p { font-size: .8rem; color: var(--muted); margin-bottom: 14px; }
.org-card a {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 14px;
  border-radius: 4px;
  transition: all .2s;
}
.org-card a:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── Disclosure Banner ───────────────────── */
.disclosure-bar {
  background: #fff8e6;
  border-top: 3px solid var(--gold);
  padding: 16px 0;
  font-size: .8rem;
  color: #6b5310;
  text-align: center;
}
.disclosure-bar a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* ── Breadcrumb ──────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ── Mobile Menu Overlay ─────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  padding: 100px 40px 40px;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .close-btn {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ── Scroll Animations ───────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-height: 360px; }
  .about-image img { height: 360px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  
  .section { padding: 56px 0; }
  
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .stat-num { font-size: 1.6rem; }
  
  .casino-features { grid-template-columns: 1fr; }
  .casino-card-footer { flex-direction: column; }
  .casino-card-footer .btn { width: 100%; }
  
  .why-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .org-grid { grid-template-columns: 1fr 1fr; }
  .rg-cards-grid { grid-template-columns: 1fr; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-badge { font-size: .72rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .regulators-grid { gap: 10px; }
  .regulator-badge { font-size: .72rem; padding: 8px 12px; }
  .org-grid { grid-template-columns: 1fr; }
}
