/* =============================================
   CAIOLZE.COM — STYLES
   ============================================= */

/* ─── CUSTOM PROPERTIES ─────────────────────── */
:root {
  --bg-deepest:   #050b18;
  --bg-dark:      #0a0f1e;
  --bg-dark-alt:  #0d1526;
  --bg-footer:    #06091a;
  --gold:         #f0b429;
  --gold-light:   #ffd166;
  --gold-dim:     rgba(240, 180, 41, 0.25);
  --teal:         #00d4b4;
  --teal-dim:     rgba(0, 212, 180, 0.12);
  --green-badge:  #22c55e;
  --text-bright:  #f1f5f9;
  --text-body:    #cbd5e1;
  --text-muted:   #94a3b8;
  --border-faint: rgba(255, 255, 255, 0.07);
  --border-gold:  rgba(240, 180, 41, 0.28);
  --shadow-deep:  0 16px 48px rgba(0, 0, 0, 0.55);
  --shadow-card:  0 8px 32px rgba(0, 0, 0, 0.45),
                  0 2px 8px  rgba(0, 0, 0, 0.3);
  --radius-card:  18px;
  --radius-sm:    10px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --transition:   0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ─── CONTAINER ──────────────────────────────── */
.container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── STARFIELD CANVAS ───────────────────────── */
#starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  position: relative;
  z-index: 1;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 28px 120px;
  background:
    linear-gradient(180deg,
      #030914 0%,
      #060d1c 40%,
      #0a1628 70%,
      #0d1a30 100%);
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 20%,
      rgba(0, 212, 180, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 90%,
      rgba(240, 180, 41, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 70%,
      rgba(0, 100, 200, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

/* Horizontal shimmer line under hero */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-dim) 30%,
    rgba(0, 212, 180, 0.3) 50%,
    var(--gold-dim) 70%,
    transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s var(--ease-out) forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  letter-spacing: 0.025em;
  color: var(--text-bright);
  line-height: 1.1;
  text-shadow:
    0 0 60px rgba(0, 212, 180, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: heroEntrance 1s 0.3s var(--ease-out) forwards;
}

/* =============================================
   CASINO CARDS SECTION
   ============================================= */
#casinos {
  position: relative;
  z-index: 2;
  padding: 32px 0 56px;
  background: linear-gradient(180deg,
    #0d1a30 0%,
    #0a0f1e 50%,
    #0a0f1e 100%);
}

/* Card link — block-level anchor wrapping the card */
.casino-card {
  display: block;
  position: relative;
  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, 0.065) 0%,
      rgba(255, 255, 255, 0.018) 60%,
      rgba(240, 180, 41, 0.03) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 34px 30px 28px;
  box-shadow: var(--shadow-card);
  color: var(--text-bright);
  overflow: visible;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s ease;
  animation: cardSlideUp 0.85s 0.55s var(--ease-out) both;

  /* Glassmorphism */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.casino-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 180, 41, 0.65);
  box-shadow:
    var(--shadow-card),
    0 0 40px rgba(240, 180, 41, 0.12),
    0 0 80px rgba(0, 212, 180, 0.06);
}

/* Inner glow line at the top */
.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(240, 180, 41, 0.6),
    rgba(0, 212, 180, 0.5),
    rgba(240, 180, 41, 0.6),
    transparent);
  border-radius: 1px;
}

.card-badge {
  position: absolute;
  top: -14px;
  left: 26px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 3px 14px rgba(34, 197, 94, 0.4);
}

.card-body {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.card-logo {
  flex: 0 0 auto;
}

.card-logo img,
.card-logo-img {
  height: 54px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  /* Invert black PNG fallback so it's visible on dark background */
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.card-bonus {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 4px;
}

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

.bonus-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-bright);
  line-height: 1.4;
}

.card-rating {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
}

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

/* Single definition — block display inside flex row */
.star-img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  filter: drop-shadow(0 0 2px rgba(240, 180, 41, 0.5));
}

.casino-card:hover .star-img:nth-child(1) { animation: starPop 0.3s 0.0s  ease both; }
.casino-card:hover .star-img:nth-child(2) { animation: starPop 0.3s 0.05s ease both; }
.casino-card:hover .star-img:nth-child(3) { animation: starPop 0.3s 0.1s  ease both; }
.casino-card:hover .star-img:nth-child(4) { animation: starPop 0.3s 0.15s ease both; }
.casino-card:hover .star-img:nth-child(5) { animation: starPop 0.3s 0.2s  ease both; }

.score {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(240, 180, 41, 0.4);
}

.card-cta {
  flex: 0 0 auto;
}

.btn-play {
  display: inline-block;
  background: linear-gradient(135deg, #f0b429, #e8a016);
  color: #1a0e00;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(240, 180, 41, 0.35);
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
  animation: pulse 2.8s 1.4s ease-in-out infinite;
}

.casino-card:hover .btn-play {
  background: linear-gradient(135deg, #ffd166, #f0b429);
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(240, 180, 41, 0.5);
  animation: none;
}

/* =============================================
   CONTENT SECTIONS
   ============================================= */
.content-section {
  position: relative;
  z-index: 1;
  padding: 72px 0;
  background-color: var(--bg-dark);
}

.content-section + .content-section {
  border-top: 1px solid var(--border-faint);
}

.content-section--alt {
  background-color: var(--bg-dark-alt);
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  letter-spacing: 0.05em;
  color: var(--teal);
  margin-bottom: 28px;
  line-height: 1.15;
  position: relative;
  padding-bottom: 18px;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.content-section p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 780px;
}

.content-section p:last-child {
  margin-bottom: 0;
}

/* ─── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   18+ DISCLAIMER BAR
   ============================================= */
.disclaimer-bar {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(10, 10, 22, 0.98) 0%,
      rgba(14, 14, 26, 0.98) 100%);
  border-top: 1px solid rgba(240, 180, 41, 0.18);
  border-bottom: 1px solid rgba(240, 180, 41, 0.18);
  padding: 22px 0;
}

.disclaimer-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.age-badge-img {
  flex-shrink: 0;
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(240, 180, 41, 0.3));
}

.disclaimer-inner p {
  font-size: 0.79rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.disclaimer-inner strong {
  color: var(--gold);
  font-weight: 600;
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  position: relative;
  z-index: 1;
  background-color: var(--bg-footer);
  padding: 60px 0 36px;
  border-top: 1px solid var(--border-faint);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.07em;
  color: var(--teal);
  margin-bottom: 14px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.07em;
  color: var(--gold);
  margin: 22px 0 10px;
}

.footer-col p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}

/* Responsible gambling banners row */
.footer-responsible {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-faint);
}

.footer-responsible-link {
  display: inline-block;
  transition:
    opacity 0.3s ease,
    transform 0.3s var(--ease-out);
}

.footer-responsible-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.footer-responsible-link img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* Regulatory logos row */
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-faint);
}

.footer-logo-link {
  display: inline-block;
  transition:
    opacity 0.3s ease,
    transform 0.3s var(--ease-out);
}

.footer-logo-link:hover {
  opacity: 0.8;
  transform: translateY(-2px) scale(1.06);
}

.footer-logo-link img {
  height: 64px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: brightness(1.05);
}

/* Helpline block */
.footer-helpline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius-card);
}

.helpline-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.helpline-number {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.07em;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 16px rgba(240, 180, 41, 0.3);
}

.helpline-text {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Footer nav links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 16px;
  margin-bottom: 28px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-links-sep {
  color: rgba(148, 163, 184, 0.25);
  font-size: 1rem;
}

.copyright {
  text-align: center;
  font-size: 0.73rem;
  color: rgba(148, 163, 184, 0.35);
  letter-spacing: 0.04em;
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: #0e1627;
  border-top: 1px solid var(--border-gold);
  border-radius: 16px 16px 0 0;
  padding: 20px 32px;
  transform: translateY(110%);
  transition: transform 0.55s var(--ease-out);
  box-shadow:
    0 -8px 40px rgba(0, 0, 0, 0.55),
    0 -1px 0 rgba(240, 180, 41, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1 1 0;
  min-width: 0;
}

.cookie-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

.cookie-text p a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--gold) 0%, #e8a016 100%);
  color: #160c00;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    filter 0.2s ease,
    transform 0.2s var(--ease-out),
    box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(240, 180, 41, 0.35);
}

.btn-cookie-accept:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(240, 180, 41, 0.5);
}

.btn-cookie-accept:active {
  transform: translateY(0);
}

.btn-cookie-more {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.btn-cookie-more:hover {
  color: var(--teal);
}

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-header {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #030914, #060d1c);
  border-bottom: 1px solid var(--border-faint);
  padding: 0;
}

.policy-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(240, 180, 41, 0.3);
  transition: color 0.25s ease;
}

.site-logo:hover {
  color: var(--gold-light);
}

.back-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-link::before {
  content: '←';
  font-size: 0.9rem;
}

.back-link:hover {
  color: var(--teal);
}

.policy-content {
  position: relative;
  z-index: 1;
  padding: 64px 0 96px;
  min-height: 62vh;
  background-color: var(--bg-dark);
}

.policy-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.05em;
  color: var(--teal);
  margin-bottom: 12px;
  line-height: 1.1;
}

.policy-content .policy-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-faint);
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 40px 0 14px;
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 720px;
}

.policy-content ul {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
  padding-left: 22px;
  max-width: 720px;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.policy-content a:hover {
  color: var(--gold);
}

/* =============================================
   ANIMATIONS & KEYFRAMES
   ============================================= */
@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

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

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

@keyframes pulse {
  0%   { box-shadow: 0 4px 16px rgba(240, 180, 41, 0.35); }
  50%  { box-shadow: 0 4px 28px rgba(240, 180, 41, 0.65), 0 0 40px rgba(240, 180, 41, 0.2); }
  100% { box-shadow: 0 4px 16px rgba(240, 180, 41, 0.35); }
}

@keyframes starPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4) rotate(15deg); }
  100% { transform: scale(1); }
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 900px) {
  .container { padding: 0 20px; }

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

/* =============================================
   RESPONSIVE — MOBILE (≤767px)
   ============================================= */
@media (max-width: 767px) {

  /* Hero: extra bottom padding creates space for card overlap */
  #hero {
    padding: 72px 20px 96px;
    min-height: 280px;
  }

  /* Casinos: negative margin pulls it up into hero territory */
  #casinos {
    margin-top: -76px;
    padding: 0 0 36px;
  }

  /* Container inside casinos has zero horizontal padding — full-width card */
  #casinos .container {
    padding: 0;
  }

  /* Casino card: full screen width, no side border-radius */
  .casino-card {
    border-radius: 14px;
    padding: 28px 18px 22px;
    margin: 0;
    animation-name: cardSlideUpMobile;
  }

  .card-badge {
    left: 18px;
  }

  .card-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .card-logo img,
  .card-logo-img {
    height: 44px;
    max-width: 140px;
  }

  .card-rating {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .score {
    font-size: 1.8rem;
  }

  .card-cta {
    width: 100%;
  }

  .btn-play {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 0.9rem;
  }

  /* Content sections */
  .content-section {
    padding: 52px 0;
  }

  .content-section h2 {
    font-size: 1.6rem;
  }

  /* Disclaimer */
  .disclaimer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Footer */
  .footer-logos {
    gap: 16px;
  }

  .footer-logo-link img {
    height: 50px;
  }

  .footer-responsible {
    gap: 14px;
  }

  .footer-responsible-link img {
    height: 48px;
    max-width: 140px;
  }

  .age-badge-img {
    height: 38px;
  }

  .footer-helpline {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 18px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-links-sep {
    display: none;
  }

  /* Cookie banner */
  #cookie-banner {
    padding: 18px 20px;
    border-radius: 12px 12px 0 0;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-icon {
    display: none;
  }

  .cookie-text p {
    font-size: 0.82rem;
  }

  .cookie-actions {
    width: 100%;
    gap: 10px;
  }

  .btn-cookie-accept {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
  }

  .btn-cookie-more {
    flex-shrink: 0;
  }

  /* Policy pages */
  .policy-header .container {
    height: 60px;
  }

  .site-logo {
    font-size: 1.5rem;
  }
}

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

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================= */
@media (max-width: 480px) {

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
  }

  .content-section h2 {
    font-size: 1.45rem;
  }

  .content-section p {
    font-size: 0.92rem;
  }
}
