/* ═══════════════════════════════════════════════════════════
   OasisFrei – main stylesheet
   Shared across all pages: index, kontakt, impressum, datenschutz, cookie-richtlinie
   ═══════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ───────────────────────── */
    :root {
      /* Brand */
      --primary:        #059669;
      --primary-hover:  #047857;
      --primary-dark:   #064e3b;
      --primary-light:  #ecfdf5;
      --primary-50:     #f0fdf4;
      --primary-100:    #d1fae5;
      --primary-200:    #a7f3d0;
      --primary-300:    #6ee7b7;
      --primary-500:    #10b981;

      /* Neutrals */
      --bg:             #ffffff;
      --bg-soft:        #f8fafc;
      --bg-card:        #ffffff;
      --bg-subtle:      #f1f5f9;

      --text:           #0f172a;
      --text-muted:     #475569;
      --text-dim:       #64748b;
      --text-faint:     #94a3b8;

      --border:         #e2e8f0;
      --border-strong:  #cbd5e1;
      --border-subtle:  #f1f5f9;

      /* Accents */
      --amber:          #f59e0b;
      --amber-bg:       #fef3c7;
      --red:            #dc2626;
      --red-bg:         #fee2e2;

      /* Typography */
      --font-display:   'Fraunces', Georgia, 'Times New Roman', serif;
      --font-body:      'Manrope', system-ui, -apple-system, sans-serif;

      /* Layout */
      --max-w:          1200px;
      --max-w-content:  920px;
      --nav-h:          72px;
      --radius-sm:      6px;
      --radius:         10px;
      --radius-md:      14px;
      --radius-lg:      20px;
      --radius-xl:      28px;

      /* Shadows */
      --shadow-xs:      0 1px 2px rgba(15,23,42,0.04);
      --shadow-sm:      0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.03);
      --shadow-md:      0 4px 12px rgba(15,23,42,0.06), 0 2px 4px rgba(15,23,42,0.04);
      --shadow-lg:      0 12px 28px rgba(15,23,42,0.08), 0 4px 12px rgba(15,23,42,0.04);
      --shadow-emerald: 0 10px 30px rgba(5,150,105,0.20);
      --shadow-emerald-soft: 0 6px 20px rgba(5,150,105,0.10);

      /* Transitions */
      --t-fast:         150ms ease;
      --t-base:         220ms cubic-bezier(0.4, 0, 0.2, 1);
      --t-slow:         400ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ── RESET ───────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.7;
      color: var(--text);
      background: var(--bg);
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--primary); text-decoration: none; transition: color var(--t-fast); }
    a:hover { color: var(--primary-hover); }
    ul, ol { list-style: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    table { border-collapse: collapse; width: 100%; }

    /* ── TYPOGRAPHY ──────────────────────────── */
    h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: 700;
      color: var(--text);
      line-height: 1.18;
      letter-spacing: -0.02em;
    }
    h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
    h2 { font-size: clamp(1.55rem, 3.3vw, 2.2rem); font-weight: 700; }
    h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); font-weight: 600; }
    p { color: var(--text-muted); margin-bottom: 1em; }
    p:last-child { margin-bottom: 0; }
    strong { color: var(--text); font-weight: 600; }

    /* ── LAYOUT ──────────────────────────────── */
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    .container-narrow { max-width: var(--max-w-content); margin: 0 auto; padding: 0 24px; }
    main { padding-top: var(--nav-h); }
    section { padding: 56px 0; }
    section.tight { padding: 36px 0; }

    /* ── HEADER / NAV ────────────────────────── */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: var(--nav-h);
      background: rgba(255,255,255,0.92);
      backdrop-filter: saturate(180%) blur(14px);
      -webkit-backdrop-filter: saturate(180%) blur(14px);
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center;
    }
    .site-header > .container { width: 100%; height: 100%; }
    .nav {
      height: 100%;
      display: flex; align-items: center;
      gap: 28px;
    }
    .nav__logo {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-display); font-weight: 800;
      font-size: 1.35rem; color: var(--text); letter-spacing: -0.02em;
      flex-shrink: 0;
      margin-right: auto; /* pushes everything else to the right */
      text-decoration: none;
    }
    .nav__logo:hover { color: var(--text); }
    .nav__logo em {
      color: var(--primary); font-style: normal;
    }
    .nav__logo-icon {
      width: 32px; height: 32px;
      background: linear-gradient(135deg, var(--primary), var(--primary-500));
      border-radius: 8px;
      display: inline-flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 800; font-size: 1.1rem;
      flex-shrink: 0;
    }
    .nav__links {
      display: flex; align-items: center; gap: 4px;
      list-style: none; padding: 0; margin: 0;
      flex-shrink: 0;
    }
    .nav__links li { list-style: none; flex-shrink: 0; }
    .nav__link {
      display: inline-flex; align-items: center;
      padding: 8px 14px; border-radius: 8px;
      color: var(--text); font-weight: 500; font-size: 0.95rem;
      text-decoration: none; white-space: nowrap;
      transition: background var(--t-fast), color var(--t-fast);
    }
    .nav__link:hover { color: var(--primary); background: var(--bg-soft); }
    .nav__link--active { color: var(--primary); background: var(--primary-light); }
    .nav__burger {
      display: none; width: 40px; height: 40px;
      border-radius: 8px; align-items: center; justify-content: center;
      transition: background var(--t-fast);
    }
    .nav__burger:hover { background: var(--bg-soft); }
    .nav__burger span {
      display: block; width: 20px; height: 2px;
      background: var(--text); border-radius: 2px;
      position: relative; transition: transform var(--t-base);
    }
    .nav__burger span::before,
    .nav__burger span::after {
      content: ''; position: absolute; left: 0; width: 20px; height: 2px;
      background: var(--text); border-radius: 2px;
      transition: transform var(--t-base), top var(--t-base);
    }
    .nav__burger span::before { top: -6px; }
    .nav__burger span::after { top: 6px; }
    .nav__burger.is-open span { background: transparent; }
    .nav__burger.is-open span::before { top: 0; transform: rotate(45deg); }
    .nav__burger.is-open span::after { top: 0; transform: rotate(-45deg); }

    .mobile-drawer {
      position: fixed; top: var(--nav-h); left: 0; right: 0;
      background: #fff; border-bottom: 1px solid var(--border);
      transform: translateY(-110%); transition: transform var(--t-base);
      z-index: 99; padding: 20px 24px; box-shadow: var(--shadow-lg);
    }
    .mobile-drawer.is-open { transform: translateY(0); }
    .mobile-drawer__list { display: flex; flex-direction: column; gap: 4px; }
    .mobile-drawer__link {
      display: block; padding: 12px 16px; border-radius: 10px;
      color: var(--text); font-weight: 500;
      transition: all var(--t-fast);
    }
    .mobile-drawer__link:hover { background: var(--bg-soft); }
    .mobile-drawer__link--active { color: var(--primary); background: var(--primary-light); }

    /* ── HERO (compact) ──────────────────────── */
    .hero {
      position: relative; padding: 40px 0 28px; overflow: hidden;
      background:
        radial-gradient(ellipse 60% 50% at 80% 0%, rgba(16,185,129,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 100%, rgba(5,150,105,0.06) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 1px 1px, rgba(15,23,42,0.05) 1px, transparent 0);
      background-size: 28px 28px;
      mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 70%);
      pointer-events: none;
    }
    .hero__inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
    .hero__badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 5px 12px; border-radius: 100px;
      background: var(--primary-light); color: var(--primary-dark);
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
      border: 1px solid var(--primary-200);
      margin-bottom: 16px;
    }
    .hero__badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--primary); box-shadow: 0 0 0 3px rgba(5,150,105,0.15);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 3px rgba(5,150,105,0.15); }
      50%      { box-shadow: 0 0 0 6px rgba(5,150,105,0.05); }
    }
    .hero h1 {
      font-style: italic; font-weight: 700;
      max-width: 880px; margin: 0 auto 14px;
      font-size: clamp(1.7rem, 4.2vw, 2.9rem);
    }
    .hero h1 em { color: var(--primary); font-style: italic; }
    .hero__lead {
      font-size: clamp(0.96rem, 1.4vw, 1.08rem);
      color: var(--text-muted); max-width: 700px; margin: 0 auto 18px;
      line-height: 1.6;
    }
    .hero__rail {
      display: inline-flex; flex-wrap: wrap; gap: 18px;
      justify-content: center; align-items: center;
      padding: 10px 20px; border-radius: 100px;
      background: rgba(255,255,255,0.7); border: 1px solid var(--border);
      backdrop-filter: blur(8px);
    }
    .hero__rail-item {
      display: inline-flex; align-items: baseline; gap: 6px;
      font-size: 0.86rem; color: var(--text-muted);
    }
    .hero__rail-num {
      font-family: var(--font-display); font-weight: 800;
      color: var(--primary); font-size: 0.98rem;
    }
    .hero__rail-sep { color: var(--border-strong); }

    /* ── BREADCRUMBS ─────────────────────────── */
    .breadcrumbs { padding: 18px 0 0; }
    .breadcrumbs__list { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.86rem; }
    .breadcrumbs__list li { display: inline-flex; align-items: center; gap: 8px; }
    .breadcrumbs__link { color: var(--text-dim); transition: color var(--t-fast); }
    .breadcrumbs__link:hover { color: var(--primary); }
    .breadcrumbs__sep { color: var(--text-faint); }
    .breadcrumbs__current { color: var(--text); font-weight: 500; }

    /* ── PROSE / ARTICLE ─────────────────────── */
    .prose { max-width: var(--max-w-content); margin: 0 auto; }
    .prose h2 { margin: 64px 0 16px; }
    .prose h2:first-child { margin-top: 0; }
    .prose h3 { margin: 36px 0 12px; }
    .prose p { font-size: 1.02rem; line-height: 1.75; }
    .prose ul { margin: 12px 0 16px; padding-left: 0; }
    .prose ul li {
      position: relative; padding: 8px 0 8px 32px;
      color: var(--text-muted); line-height: 1.7;
    }
    .prose ul li::before {
      content: ''; position: absolute; left: 6px; top: 18px;
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--primary); flex-shrink: 0;
    }
    .prose ul li strong { color: var(--text); }
    .prose a { font-weight: 500; border-bottom: 1px solid var(--primary-200); transition: all var(--t-fast); }
    .prose a:hover { border-bottom-color: var(--primary); }

    /* ── COMPACT TOP LIST (above the fold on mobile) ── */
    .top-list {
      max-width: var(--max-w-content); margin: 0 auto 28px;
      display: flex; flex-direction: column; gap: 8px;
    }
    .top-list__row {
      display: grid;
      grid-template-columns: 38px 96px 1fr auto;
      gap: 18px; align-items: center;
      padding: 12px 16px 12px 12px;
      background: #fff; border: 1px solid var(--border);
      border-radius: var(--radius-md);
      transition: all var(--t-base);
      position: relative;
    }
    .top-list__row:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary-200);
    }
    .top-list__row--top {
      border-color: var(--primary-200);
      background: linear-gradient(180deg, var(--primary-50) 0%, #fff 100%);
    }
    .top-list__row--top::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px; background: linear-gradient(180deg, var(--primary), var(--primary-500));
      border-radius: var(--radius-md) 0 0 var(--radius-md);
    }
    .top-list__rank {
      width: 38px; height: 38px; border-radius: 10px;
      background: var(--bg-soft); color: var(--text);
      display: grid; place-items: center;
      font-family: var(--font-display); font-weight: 800;
      font-size: 1.05rem; line-height: 1;
      border: 1px solid var(--border);
    }
    .top-list__row--top .top-list__rank {
      background: linear-gradient(135deg, var(--primary), var(--primary-500));
      color: #fff; border: none;
      box-shadow: var(--shadow-emerald-soft);
    }
    .top-list__logo {
      width: 96px; height: 44px;
      background: linear-gradient(135deg, #fff, var(--bg-soft));
      border: 1px solid var(--border);
      border-radius: 8px;
      display: grid; place-items: center;
      overflow: hidden; position: relative;
      transition: border-color var(--t-fast), box-shadow var(--t-fast);
    }
    .top-list__logo:hover {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(5,150,105,0.15);
    }
    .top-list__logo img {
      max-width: 84%; max-height: 80%;
      object-fit: contain; position: relative; z-index: 2;
    }
    .top-list__logo-fallback {
      position: absolute; inset: 0;
      display: grid; place-items: center;
      font-family: var(--font-display); font-weight: 700;
      font-size: 0.78rem; color: var(--text-dim);
      letter-spacing: -0.01em; text-align: center; padding: 0 4px; z-index: 1;
    }
    .top-list__body { min-width: 0; }
    .top-list__name {
      font-family: var(--font-display); font-weight: 700;
      font-size: 1.05rem; color: var(--text);
      line-height: 1.25; margin-bottom: 3px;
      letter-spacing: -0.01em;
    }
    .top-list__bonus {
      font-size: 0.84rem; color: var(--primary-dark);
      font-weight: 500; line-height: 1.4;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .top-list__stars {
      display: inline-flex; gap: 1px; margin-top: 4px;
      vertical-align: middle;
    }
    .top-list__stars svg { width: 11px; height: 11px; }
    .top-list__stars svg path { fill: var(--amber); }
    .top-list__score {
      display: inline-block; margin-left: 4px;
      font-size: 0.74rem; color: var(--text-dim); font-weight: 600;
      vertical-align: middle;
    }
    .top-list__cta {
      display: inline-flex; align-items: center; justify-content: center; gap: 6px;
      padding: 10px 18px; border-radius: 10px;
      background: var(--primary); color: #fff !important;
      font-weight: 600; font-size: 0.88rem;
      transition: all var(--t-base);
      box-shadow: var(--shadow-emerald-soft);
      white-space: nowrap;
    }
    .top-list__cta:hover {
      background: var(--primary-hover); transform: translateY(-1px);
      box-shadow: var(--shadow-emerald);
    }
    .top-list__cta svg { transition: transform var(--t-base); width: 12px; height: 12px; }
    .top-list__cta:hover svg { transform: translateX(2px); }

    /* Mobile: compress into 2 rows per item */
    @media (max-width: 600px) {
      .top-list__row {
        grid-template-columns: 36px 72px 1fr;
        grid-template-areas:
          "rank logo body"
          "cta  cta  cta";
        gap: 12px;
        padding: 12px 14px;
      }
      .top-list__rank { grid-area: rank; width: 36px; height: 36px; font-size: 1rem; }
      .top-list__logo { grid-area: logo; width: 72px; height: 38px; }
      .top-list__body { grid-area: body; }
      .top-list__name { font-size: 0.98rem; }
      .top-list__bonus { font-size: 0.78rem; -webkit-line-clamp: 2; }
      .top-list__cta { grid-area: cta; width: 100%; padding: 11px; font-size: 0.9rem; }
    }

    /* ── CASINO LIST (TOP 10) ─────────────────── */
    .top-section { padding: 56px 0 32px; background: var(--bg-soft); }
    .top-section__head { max-width: var(--max-w-content); margin: 0 auto 40px; text-align: center; }
    .top-section__head h2 { margin-bottom: 16px; }
    .top-section__head p { font-size: 1.02rem; max-width: 720px; margin: 0 auto; }

    .casino-list { display: flex; flex-direction: column; gap: 24px; max-width: var(--max-w-content); margin: 0 auto; }
    .casino-card {
      position: relative;
      background: #fff; border: 1px solid var(--border);
      border-radius: var(--radius-lg); overflow: hidden;
      transition: all var(--t-base);
    }
    .casino-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary-200);
    }
    .casino-card__inner { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; padding: 28px; align-items: center; }
    .casino-card__rank {
      width: 72px; height: 72px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-500));
      color: #fff; display: grid; place-items: center;
      font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
      box-shadow: var(--shadow-emerald-soft); flex-shrink: 0;
      position: relative;
    }
    .casino-card__rank--top { box-shadow: 0 0 0 4px rgba(5,150,105,0.10), var(--shadow-emerald); }
    .casino-card__body { min-width: 0; }
    .casino-card__title {
      font-family: var(--font-display); font-weight: 700;
      font-size: 1.45rem; color: var(--text); margin-bottom: 6px;
      letter-spacing: -0.01em;
    }
    .casino-card__bonus {
      color: var(--primary-dark); font-weight: 600;
      font-size: 1.02rem; margin-bottom: 10px;
    }
    .casino-card__rating { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; color: var(--text-dim); }
    .casino-card__stars { display: flex; gap: 1px; }
    .casino-card__stars svg { width: 16px; height: 16px; }
    .casino-card__stars svg.filled path { fill: var(--amber); }
    .casino-card__stars svg.empty path { fill: var(--border-strong); }
    .casino-card__cta { display: flex; flex-direction: column; gap: 8px; align-items: stretch; min-width: 180px; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 12px 22px; border-radius: 12px;
      font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
      transition: all var(--t-base); cursor: pointer;
      white-space: nowrap;
    }
    .btn--primary {
      background: var(--primary); color: #fff !important;
      box-shadow: var(--shadow-emerald-soft);
    }
    .btn--primary:hover {
      background: var(--primary-hover); transform: translateY(-1px);
      box-shadow: var(--shadow-emerald); color: #fff;
    }
    .btn--primary:hover svg { transform: translateX(2px); }
    .btn--primary svg { transition: transform var(--t-base); }
    .btn--ghost {
      background: transparent; color: var(--text-muted);
      border: 1px solid var(--border);
    }
    .btn--ghost:hover { color: var(--text); border-color: var(--border-strong); background: var(--bg-soft); }
    .btn--block { width: 100%; }

    .casino-card__details {
      padding: 0 28px 28px;
      border-top: 1px solid var(--border-subtle);
      margin-top: 0; padding-top: 24px;
    }
    .casino-card__screenshot {
      margin-bottom: 20px; border-radius: var(--radius-md); overflow: hidden;
      border: 1px solid var(--border);
      position: relative;
    }
    .casino-card__screenshot img { width: 100%; display: block; }
    .casino-card__screenshot a {
      display: block; line-height: 0; position: relative;
      transition: transform var(--t-base);
    }
    .casino-card__screenshot a::after {
      content: 'Zur Webseite →';
      position: absolute; right: 14px; bottom: 14px;
      padding: 7px 14px; border-radius: 8px;
      background: rgba(5,150,105,0.96); color: #fff;
      font-family: var(--font-body);
      font-size: 0.84rem; font-weight: 600; letter-spacing: 0.01em;
      opacity: 0; transform: translateY(4px);
      transition: opacity var(--t-base), transform var(--t-base);
      pointer-events: none;
      box-shadow: 0 6px 20px rgba(5,150,105,0.30);
    }
    .casino-card__screenshot:hover a::after {
      opacity: 1; transform: translateY(0);
    }
    .casino-card__screenshot:hover img { opacity: 0.96; transition: opacity var(--t-base); }
    .casino-card__description p { color: var(--text-muted); line-height: 1.7; }
    .casino-card__description p + p { margin-top: 12px; }

    /* Group divider */
    .group-divider {
      max-width: var(--max-w-content); margin: 48px auto 32px;
      text-align: center;
    }
    .group-divider h2 { font-size: 1.7rem; margin-bottom: 12px; }
    .group-divider p { color: var(--text-muted); max-width: 660px; margin: 0 auto; }

    /* ── COMPARISON TABLE ────────────────────── */
    .comparison-wrap { max-width: var(--max-w-content); margin: 0 auto; overflow-x: auto; }
    .comparison-table {
      width: 100%; min-width: 600px;
      background: #fff; border: 1px solid var(--border);
      border-radius: var(--radius-md); overflow: hidden;
      font-size: 0.94rem;
    }
    .comparison-table th, .comparison-table td {
      padding: 14px 18px; text-align: left;
      border-bottom: 1px solid var(--border-subtle);
    }
    .comparison-table thead th {
      background: var(--primary-light); color: var(--primary-dark);
      font-weight: 600; font-size: 0.88rem;
      letter-spacing: 0.02em; text-transform: uppercase;
    }
    .comparison-table tbody tr:last-child td { border-bottom: none; }
    .comparison-table tbody tr:hover { background: var(--bg-soft); }
    .comparison-table td:first-child { font-weight: 600; color: var(--text); }

    /* ── FAQ ────────────────────────────────── */
    .faq-list { max-width: var(--max-w-content); margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
    .faq-item {
      background: #fff; border: 1px solid var(--border);
      border-radius: var(--radius-md); padding: 22px 26px;
      transition: all var(--t-fast);
    }
    .faq-item:hover { border-color: var(--primary-200); box-shadow: var(--shadow-sm); }
    .faq-item h3 {
      font-size: 1.1rem; margin-bottom: 10px;
      color: var(--text); font-weight: 600;
      display: flex; gap: 12px; align-items: flex-start;
    }
    .faq-item h3::before {
      content: 'Q'; flex-shrink: 0;
      width: 26px; height: 26px; border-radius: 7px;
      background: var(--primary-light); color: var(--primary-dark);
      display: grid; place-items: center;
      font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
      margin-top: 2px;
    }
    .faq-item p { margin: 0; padding-left: 38px; line-height: 1.7; }

    /* ── RESPONSIBLE GAMBLING BANNER ─────────── */
    .rg-banner {
      max-width: var(--max-w-content); margin: 32px auto 0;
      padding: 22px 26px; border-radius: var(--radius-md);
      background: var(--amber-bg); border: 1px solid #fcd34d;
      display: flex; gap: 18px; align-items: flex-start;
    }
    .rg-banner__icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: #fff; border-radius: 10px;
      display: grid; place-items: center;
      font-size: 1.3rem;
    }
    .rg-banner h3 {
      font-size: 1.05rem; margin-bottom: 4px;
      color: #92400e; font-weight: 700;
    }
    .rg-banner p { color: #78350f; margin: 0; font-size: 0.94rem; line-height: 1.6; }
    .rg-banner a { color: #78350f; font-weight: 600; border-bottom: 1px solid #fcd34d; }
    .rg-banner a:hover { color: #92400e; }

    /* ── FOOTER ──────────────────────────────── */
    .site-footer {
      background: var(--text); color: #cbd5e1;
      padding: 64px 0 28px; margin-top: 80px;
    }
    .footer__grid {
      display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer__brand { max-width: 320px; }
    .footer__logo {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-display); font-weight: 800;
      font-size: 1.4rem; color: #fff; margin-bottom: 16px;
      letter-spacing: -0.02em;
    }
    .footer__logo em { color: var(--primary-300); font-style: normal; }
    .footer__tagline { color: #94a3b8; font-size: 0.92rem; line-height: 1.65; margin-bottom: 16px; }
    .footer__col h4 {
      font-family: var(--font-body); font-weight: 600;
      font-size: 0.84rem; color: #fff;
      letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px;
    }
    .footer__col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer__col a {
      color: #94a3b8; font-size: 0.92rem;
      transition: color var(--t-fast);
    }
    .footer__col a:hover { color: var(--primary-300); }
    .footer__rg {
      padding: 16px; background: rgba(245,158,11,0.08);
      border-radius: 10px; border: 1px solid rgba(245,158,11,0.2);
    }
    .footer__rg h4 { color: #fbbf24; margin-bottom: 8px; }
    .footer__rg p { color: #cbd5e1; font-size: 0.85rem; line-height: 1.6; margin: 0; }
    .footer__rg p + p { margin-top: 8px; }
    .footer__rg a { color: #fbbf24; font-weight: 500; }
    .footer__rg a:hover { color: #fde68a; }
    .footer__bottom {
      padding-top: 24px; border-top: 1px solid #1e293b;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 16px;
    }
    .footer__bottom p { color: #64748b; font-size: 0.85rem; margin: 0; }
    .footer__legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
    .footer__legal-links a { color: #94a3b8; font-size: 0.85rem; }
    .footer__legal-links a:hover { color: var(--primary-300); }
    .footer__18plus {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 4px 10px; border-radius: 6px;
      background: rgba(220,38,38,0.15); color: #fca5a5;
      font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
    }

    /* ── RESPONSIVE ──────────────────────────── */
    @media (max-width: 1024px) {
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer__brand { grid-column: 1 / -1; max-width: none; }
    }
    @media (max-width: 768px) {
      .nav__links { display: none; }
      .nav__burger { display: flex; }
      .hero { padding: 60px 0 40px; }
      .hero { padding: 32px 0 24px; }
      .casino-card__inner {
        grid-template-columns: auto 1fr; gap: 18px; padding: 22px;
      }
      .casino-card__cta { grid-column: 1 / -1; min-width: 0; }
      .casino-card__rank { width: 58px; height: 58px; font-size: 1.25rem; }
      .casino-card__title { font-size: 1.2rem; }
      .casino-card__details { padding: 0 22px 22px; padding-top: 20px; }
      .prose h2 { margin-top: 48px; }
      section { padding: 44px 0; }
      .top-section { padding: 44px 0 24px; }
    }
    @media (max-width: 520px) {
      .footer__grid { grid-template-columns: 1fr; gap: 32px; }
      .footer__bottom { flex-direction: column; align-items: flex-start; }
    }

    /* Reduce motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }

/* ═══════════════════════════════════════════
   SERVICE PAGES (kontakt / legal)
   ═══════════════════════════════════════════ */

/* Compact hero used on service pages */
.page-hero {
  position: relative;
  padding: 64px 0 32px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(16,185,129,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}
.page-hero__inner { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.page-hero h1 {
  font-style: italic; font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 12px auto 14px;
}
.page-hero h1 em { color: var(--primary); font-style: italic; }
.page-hero__lead {
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  color: var(--text-muted); max-width: 680px; margin: 0 auto;
  line-height: 1.65;
}
.page-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: 100px;
  background: var(--primary-light); color: var(--primary-dark);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid var(--primary-200);
}

/* Layout helpers for service pages */
.section-prose { padding: 48px 0; }
.section-prose:last-of-type { padding-bottom: 80px; }
.section-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  max-width: var(--max-w-content);
  margin: 0 auto 28px;
}
.section-card:last-child { margin-bottom: 0; }
.section-card h2 { margin: 0 0 14px; font-size: 1.4rem; }
.section-card h2:first-child { margin-top: 0; }
.section-card h3 { margin: 24px 0 10px; font-size: 1.08rem; }
.section-card p { color: var(--text-muted); line-height: 1.7; }
.section-card p + p { margin-top: 12px; }
.section-card ul { margin: 12px 0; padding-left: 0; }
.section-card ul li {
  position: relative; padding: 6px 0 6px 28px;
  color: var(--text-muted); line-height: 1.7;
}
.section-card ul li::before {
  content: ''; position: absolute; left: 6px; top: 16px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
}
.section-card address {
  font-style: normal; line-height: 1.8;
  background: var(--bg-soft);
  padding: 16px 20px; border-radius: var(--radius);
  border-left: 3px solid var(--primary);
  margin: 12px 0;
}
.section-card a {
  color: var(--primary); font-weight: 500;
  border-bottom: 1px solid var(--primary-200);
  transition: border-color var(--t-fast);
}
.section-card a:hover { border-bottom-color: var(--primary); }
.section-card a.no-underline { border-bottom: none; }

/* CONTACT FORM */
.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 620px; margin: 0 auto;
}
.contact-form__row { display: flex; flex-direction: column; gap: 6px; }
.contact-form__label {
  font-size: 0.88rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 4px;
}
.contact-form__label .req { color: var(--red); font-weight: 700; }
.contact-form__input,
.contact-form__textarea,
.contact-form__select {
  font-family: var(--font-body); font-size: 0.98rem;
  padding: 12px 14px; border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff; color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5,150,105,0.15);
}
.contact-form__textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.contact-form__checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.55;
  cursor: pointer;
}
.contact-form__checkbox input[type="checkbox"] {
  margin-top: 3px; flex-shrink: 0;
  width: 16px; height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}
.contact-form__submit {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 12px;
  background: var(--primary); color: #fff;
  font-weight: 600; font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-emerald-soft);
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.contact-form__submit:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-emerald);
}

/* Contact alternatives grid */
.contact-alt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.contact-alt__item {
  padding: 18px 20px; border-radius: var(--radius);
  background: var(--bg-soft); border: 1px solid var(--border);
}
.contact-alt__label {
  font-size: 0.78rem; font-weight: 600; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.contact-alt__value { color: var(--text); font-weight: 500; }
.contact-alt__value a { color: var(--primary); border-bottom: 1px solid var(--primary-200); }

/* Mobile tweaks */
@media (max-width: 600px) {
  .section-card { padding: 24px 22px; }
  .page-hero { padding: 48px 0 24px; }
}