/* ============================================================
   MateBlisa — Style principal
   Dark/editorial betting aggregator
   ============================================================ */

/* --- Variables & reset --- */
:root {
  --bg:        #0d0d0d;
  --bg-card:   #151515;
  --bg-raised: #1c1c1c;
  --border:    #2a2a2a;
  --gold:      #c9932a;
  --gold-light:#e8b84b;
  --gold-dim:  #7a5a18;
  --text:      #e8e8e8;
  --text-muted:#8a8a8a;
  --text-dim:  #555;
  --danger:    #c0392b;
  --radius:    6px;
  --radius-lg: 12px;
  --transition: 0.22s ease;
  --shadow:    0 4px 24px rgba(0,0,0,0.55);
  --header-h:  68px;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-light); }

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

ul { list-style: none; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo span { color: var(--gold); }

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

.nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav a:hover,
.nav a.active {
  color: var(--text);
  background: var(--bg-raised);
}

.age-badge {
  background: var(--danger);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,147,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #0d0d0d;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: #0d0d0d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,147,42,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   OPERATORS / BOOKMAKERS SECTION
   ============================================================ */
.operators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.operator-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.operator-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.operator-card.featured {
  border-color: var(--gold-dim);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #0d0d0d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.operator-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.operator-logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: -0.05em;
}

.operator-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.operator-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.stars {
  display: flex;
  gap: 3px;
  align-items: center;
}

.star {
  color: var(--gold);
  font-size: 0.9rem;
}

.star.empty { color: var(--text-dim); }

.rating-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-left: 6px;
}

.bonus-box {
  background: rgba(201,147,42,0.08);
  border: 1px solid rgba(201,147,42,0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.bonus-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.bonus-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.bonus-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.operator-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.feature-icon {
  color: var(--gold);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.btn-cta {
  background: var(--gold);
  color: #0d0d0d;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: var(--radius);
  text-align: center;
  display: block;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-cta:hover {
  background: var(--gold-light);
  color: #0d0d0d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,147,42,0.35);
}

.card-disclaimer {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: -8px;
}

/* ============================================================
   HOW TO CHOOSE SECTION
   ============================================================ */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.criteria-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition);
}

.criteria-card:hover { border-color: var(--gold-dim); }

.criteria-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,147,42,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.criteria-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.criteria-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   TRUST / INFO STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 36px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.trust-icon {
  font-size: 1.5rem;
  opacity: 0.7;
}

.trust-item strong {
  color: var(--text);
  display: block;
  font-size: 0.92rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}

.page-hero .section-label { display: block; margin-bottom: 12px; }

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ============================================================
   CONTENT PROSE
   ============================================================ */
.prose {
  max-width: 760px;
}

.prose h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-top: 48px;
  margin-bottom: 14px;
}

.prose h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 10px;
}

.prose p {
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.75;
}

.prose ul {
  list-style: none;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prose ul li {
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
  font-size: 0.95rem;
}

.prose ul li::before {
  content: '▸';
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0;
}

.prose strong { color: var(--text); font-weight: 600; }

.prose a { color: var(--gold); }
.prose a:hover { color: var(--gold-light); text-decoration: underline; }

/* ============================================================
   CALLOUT BOXES
   ============================================================ */
.callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 24px 0;
}

.callout-danger {
  border-left-color: var(--danger);
  background: rgba(192,57,43,0.06);
}

.callout-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.callout-danger .callout-title { color: #e74c3c; }

.callout p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================================
   HOTLINE BOX
   ============================================================ */
.hotline-box {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.hotline-icon { font-size: 2.2rem; }

.hotline-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
}

.hotline-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  padding: 72px 0;
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-item-icon {
  width: 38px;
  height: 38px;
  background: rgba(201,147,42,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}

.info-item-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,147,42,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group textarea { min-height: 130px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #0d0d0d;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  font-family: inherit;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,147,42,0.3);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 12px;
  text-align: center;
}

/* Success message */
.form-success {
  display: none;
  background: rgba(201,147,42,0.08);
  border: 1px solid rgba(201,147,42,0.25);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--gold-light);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   ABOUT — VALUES GRID
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.value-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.value-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   TEAM / METHODOLOGY SECTION
   ============================================================ */
.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  max-width: 680px;
}

.method-step {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}

.method-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   RESPONSIBLE GAMBLING — RISKS
   ============================================================ */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 36px 0;
}

.risk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--danger);
  border-radius: var(--radius);
  padding: 20px 20px;
}

.risk-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.risk-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.orgs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.org-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.org-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,147,42,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.org-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.org-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.org-detail a { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-age {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 0.82rem;
  color: #e74c3c;
  font-weight: 600;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-legal {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 700px;
}

.footer-legal a { color: var(--text-dim); text-decoration: underline; }
.footer-legal a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
  white-space: nowrap;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: 0.4; }

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 4px;
    border-top: 1px solid var(--border);
    z-index: 99;
  }

  .nav.open { display: flex; }

  .nav a {
    width: 100%;
    font-size: 1rem;
    padding: 12px 16px;
  }

  .age-badge { margin-top: 16px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0;
  }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 0; }

  .hero-headline { font-size: 2.2rem; }
  .page-hero { padding: 48px 0 36px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .operators-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap { padding: 24px 20px; }

  .hotline-box { flex-direction: column; gap: 12px; }
}

@media (max-width: 400px) {
  .hero-stats { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-gold  { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }

/* ============================================================
   AGE GATE MODAL
   ============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(8px);
}

.age-gate.hidden {
  display: none;
}

.age-gate-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  text-align: center;
  animation: slideUp 0.4s ease;
}

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

.age-gate-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.age-gate-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.age-gate-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.age-gate-buttons {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.age-gate-btn {
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
  font-family: inherit;
}

.age-gate-btn-yes {
  background: var(--gold);
  color: #0d0d0d;
}

.age-gate-btn-yes:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 147, 42, 0.35);
}

.age-gate-btn-no {
  background: rgba(192, 57, 43, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(192, 57, 43, 0.3);
}

.age-gate-btn-no:hover {
  background: rgba(192, 57, 43, 0.25);
  border-color: rgba(192, 57, 43, 0.5);
}

/* ============================================================
   AGE GATE BLOCKED OVERLAY
   ============================================================ */
.age-gate-blocked {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(8px);
}

.age-gate-blocked-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  text-align: center;
  animation: slideUp 0.4s ease;
}

.age-gate-blocked-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  animation: pulse 0.5s ease;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.age-gate-blocked-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #e74c3c;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.age-gate-blocked-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.age-gate-blocked-hint {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.02em;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--bg-raised) 0%, var(--bg-card) 100%);
  border-top: 1px solid var(--border);
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
  animation: slideUpBanner 0.5s ease;
}

@keyframes slideUpBanner {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-content {
  flex: 1;
  min-width: 200px;
}

.cookie-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cookie-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--gold-light);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
  font-family: inherit;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--gold);
  color: #0d0d0d;
}

.cookie-btn-accept:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 147, 42, 0.35);
}

.cookie-btn-settings {
  background: rgba(201, 147, 42, 0.1);
  color: var(--gold);
  border: 1px solid rgba(201, 147, 42, 0.3);
}

.cookie-btn-settings:hover {
  background: rgba(201, 147, 42, 0.2);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .cookie-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .age-gate-modal {
    padding: 36px 28px;
    max-width: 90%;
  }
}
