
    :root {
      --gold: #F5C200;
      --gold-soft: #f8d54a;
      --black: #0a0a0a;
      --black-2: #111111;
      --black-3: #171717;
      --white: #f8f8f8;
      --muted: #b5b5b5;
      --muted-2: #8d8d8d;
      --line: rgba(245, 194, 0, 0.14);
      --line-strong: rgba(245, 194, 0, 0.28);
      --card: rgba(255,255,255,0.03);
      --card-2: rgba(255,255,255,0.02);
      --shadow: 0 22px 60px rgba(0,0,0,0.28);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --max: 1280px;
      /* Design Tokens — steuerbar via Admin Style Editor */
      --section-padding: 72px;
      --card-padding: var(--card-padding);
      --grid-gap: var(--grid-gap);
      --font-base: 16px;
      --font-nav: 14px;
    
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --card-padding: var(--card-padding);
  --grid-gap: var(--grid-gap);
  --font-base: 16px;
  --line: rgba(255,255,255,0.07);
  --max: 1280px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --muted-2: #888;
  --gold-soft: #f8d54a;
}

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: radial-gradient(circle at top, rgba(245,194,0,0.08), transparent 26%), linear-gradient(180deg, #090909 0%, #0d0d0d 100%);
      color: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

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

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

    button,
    input,
    select {
      font: inherit;
    }

    .container {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }

    .section {
      padding: var(--section-padding) 0;
    }

    .section-head {
      display: grid;
      gap: 12px;
      margin-bottom: 26px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .eyebrow::before {
      content: '';
      width: 18px;
      height: 1px;
      background: currentColor;
      opacity: 0.7;
    }

    h1, h2, h3, h4 {
      line-height: 0.98;
      letter-spacing: -0.04em;
      font-weight: 900;
    }

    p {
      color: var(--muted);
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 80;
      backdrop-filter: blur(16px);
      background: rgba(10,10,10,0.88);
      border-bottom: 1px solid var(--line);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 14px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .logo-box {
      width: 44px;
      height: 44px;
      border-radius: 13px;
      border: 1px solid rgba(245,194,0,0.24);
      background: linear-gradient(135deg, rgba(245,194,0,0.22), rgba(245,194,0,0.05));
      display: grid;
      place-items: center;
      color: var(--gold);
      font-size: 20px;
      flex-shrink: 0;
    }

    .brand-copy {
      min-width: 0;
    }

    .brand-kicker {
      font-size: 11px;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 2px;
    }

    .brand-title {
      font-size: 18px;
      font-weight: 900;
      white-space: nowrap;
    }

    .nav {
      display: none;
      align-items: center;
      gap: 22px;
    }

    .nav a {
      font-size: var(--font-nav);
      color: var(--muted);
      font-weight: 700;
      transition: color 0.18s ease;
    }

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

    .nav .pill {
      color: var(--gold);
      border: 1px solid rgba(245,194,0,0.28);
      padding: 10px 14px;
      border-radius: 999px;
    }

    .ticker {
      border-bottom: 1px solid var(--line);
      overflow: hidden;
      background: #0d0d0d;
    }

    .ticker-track {
      display: flex;
      gap: 28px;
      white-space: nowrap;
      padding: 10px 0;
      animation: ticker 28s linear infinite;
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 700;
      color: #dfdfdf;
    }

    .ticker-badge {
      color: var(--black);
      background: var(--gold);
      padding: 5px 8px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .hero {
      padding: 36px 0 42px;
    }

    .hero-grid {
      display: grid;
      gap: 20px;
    }

    .hero-main,
    .hero-side,
    .card,
    .dark-panel,
    .pricing-card,
    .feature-card,
    .news-card,
    .event-card,
    .spot-card,
    .testimonial,
    .dashboard-card,
    .faq-item,
    .step-card,
    .audience-card,
    .cta-box,
    .stats-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
      border: 1px solid rgba(245,194,0,0.12);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .hero-main {
      overflow: hidden;
    }

    .hero-top {
      min-height: 260px;
      position: relative;
      padding: 18px;
      border-bottom: 1px solid var(--line);
      background:
        radial-gradient(circle at top right, rgba(245,194,0,0.26), transparent 34%),
        radial-gradient(circle at bottom left, rgba(245,194,0,0.12), transparent 30%),
        linear-gradient(135deg, #151515, #090909 74%);
      display: flex;
      align-items: flex-end;
    }

    .hero-top::after {
      content: 'MÜNCHEN';
      position: absolute;
      right: 18px;
      top: 18px;
      font-size: clamp(28px, 7vw, 90px);
      line-height: 0.9;
      font-weight: 900;
      color: rgba(245,194,0,0.08);
      letter-spacing: -0.06em;
      pointer-events: none;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      position: relative;
      z-index: 1;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(10,10,10,0.76);
      border: 1px solid rgba(245,194,0,0.18);
      color: var(--gold);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .hero-content {
      padding: 22px 18px 24px;
      display: grid;
      gap: var(--grid-gap);
    }

    .hero-content h1 {
      font-size: clamp(36px, 8vw, 82px);
    }

    .hero-subline {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: clamp(19px, 3vw, 27px);
      color: #eee3a8;
      max-width: 820px;
    }

    .hero-copy {
      max-width: 760px;
      font-size: var(--font-base);
      color: #d8d8d8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .btn-gold,
    .btn-dark,
    .btn-outline {
      border: none;
      border-radius: 999px;
      padding: 14px 18px;
      font-weight: 800;
      cursor: pointer;
      transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }

    .btn-gold {
      background: var(--gold);
      color: var(--black);
      box-shadow: 0 12px 26px rgba(245,194,0,0.18);
    }

    .btn-dark {
      background: #101010;
      color: var(--white);
      border: 1px solid rgba(245,194,0,0.2);
    }

    .btn-outline {
      background: transparent;
      color: var(--gold);
      border: 1px solid rgba(245,194,0,0.28);
    }

    .btn-gold:hover,
    .btn-dark:hover,
    .btn-outline:hover {
      transform: translateY(-2px);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 6px;
    }

    .stats-card {
      padding: var(--card-padding);
      border-radius: 20px;
      background: rgba(255,255,255,0.02);
    }

    .stats-number {
      color: var(--gold);
      font-size: 26px;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 6px;
    }

    .stats-label {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .hero-side {
      padding: 18px;
      display: grid;
      gap: var(--grid-gap);
      align-self: stretch;
    }

    .waitlist-form,
    .mini-form {
      display: grid;
      gap: 10px;
    }

    .input,
    .select {
      width: 100%;
      background: #101010;
      color: var(--white);
      border: 1px solid rgba(245,194,0,0.18);
      padding: 14px 15px;
      border-radius: 14px;
      outline: none;
    }

    .input:focus,
    .select:focus {
      border-color: rgba(245,194,0,0.5);
      box-shadow: 0 0 0 4px rgba(245,194,0,0.07);
    }

    .side-label {
      font-size: 12px;
      color: var(--gold);
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: 0.12em;
    }

    .side-title {
      font-size: 28px;
      line-height: 1;
      letter-spacing: -0.04em;
      font-weight: 900;
    }

    .side-copy {
      font-size: 14px;
      color: var(--muted);
    }

    .side-list {
      display: grid;
      gap: 10px;
    }

    .side-list-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #ddd;
      font-size: 14px;
    }

    .side-list-item i {
      font-style: normal;
      color: var(--gold);
      margin-top: 1px;
    }

    .news-grid,
    .events-grid,
    .spots-grid,
    .features-grid,
    .steps-grid,
    .audience-grid,
    .pricing-grid,
    .testimonials-grid,
    .footer-grid {
      display: grid;
      gap: var(--grid-gap);
    }

    .news-card,
    .event-card,
    .spot-card,
    .feature-card,
    .step-card,
    .audience-card,
    .pricing-card,
    .testimonial,
    .dashboard-card,
    .faq-item {
      padding: var(--card-padding);
      transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }

    .news-card:hover,
    .event-card:hover,
    .spot-card:hover,
    .feature-card:hover,
    .step-card:hover,
    .audience-card:hover,
    .pricing-card:hover,
    .testimonial:hover,
    .dashboard-card:hover,
    .faq-item:hover {
      transform: translateY(-4px);
      border-color: rgba(245,194,0,0.22);
      background: rgba(245,194,0,0.04);
    }

    .news-hero {
      min-height: 178px;
      border-radius: var(--radius-lg);
      margin-bottom: 14px;
      background:
        radial-gradient(circle at top right, rgba(245,194,0,0.25), transparent 32%),
        linear-gradient(135deg, #1d1d1d, #111 70%);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding: 14px;
      border: 1px solid rgba(245,194,0,0.08);
      overflow: hidden;
    }

    .emoji-thumb {
      font-size: 36px;
    }

    .kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 800;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .news-title,
    .event-title,
    .spot-title,
    .feature-title,
    .step-title,
    .audience-title,
    .pricing-title,
    .faq-title {
      font-size: 24px;
      line-height: 1.05;
      margin-bottom: 10px;
    }

    .news-meta,
    .event-meta,
    .spot-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 14px;
      color: var(--muted-2);
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .news-copy,
    .event-copy,
    .spot-copy,
    .feature-copy,
    .step-copy,
    .audience-copy,
    .pricing-copy,
    .testimonial-copy,
    .faq-copy {
      font-size: 14px;
      color: var(--muted);
    }

    .filter-row {
      display: grid;
      gap: 10px;
      margin-bottom: 18px;
    }

    .chip-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .chip {
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(245,194,0,0.18);
      color: #eadf9a;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      background: rgba(255,255,255,0.02);
    }

    .chip.active {
      background: var(--gold);
      color: var(--black);
      border-color: var(--gold);
    }

    .event-card {
      display: grid;
      gap: 14px;
    }

    .event-top {
      min-height: 160px;
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at top left, rgba(245,194,0,0.22), transparent 32%),
        linear-gradient(135deg, #1d1d1d, #111111 72%);
      padding: var(--card-padding);
      border: 1px solid rgba(245,194,0,0.08);
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
    }

    .date-pill {
      padding: 10px 12px;
      background: rgba(10,10,10,0.78);
      border: 1px solid rgba(245,194,0,0.18);
      border-radius: var(--radius-md);
      text-align: center;
      min-width: 68px;
    }

    .date-pill strong {
      display: block;
      font-size: 24px;
      line-height: 1;
      color: var(--gold);
    }

    .date-pill span {
      font-size: 10px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.09em;
      font-weight: 800;
    }

    .map-box {
      min-height: 260px;
      border-radius: 24px;
      border: 1px solid rgba(245,194,0,0.12);
      background:
        linear-gradient(135deg, rgba(245,194,0,0.08), transparent 35%),
        linear-gradient(180deg, #131313 0%, #0e0e0e 100%);
      position: relative;
      overflow: hidden;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
    }

    .map-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(245,194,0,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,194,0,0.06) 1px, transparent 1px);
      background-size: 38px 38px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
    }

    .map-pin {
      position: absolute;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 10px rgba(245,194,0,0.12);
    }

    .map-label {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: var(--card-padding);
    }

    .map-label h3 {
      font-size: clamp(28px, 4vw, 40px);
      margin-bottom: 8px;
    }

    .dashboard-wrap {
      display: grid;
      gap: 18px;
      align-items: start;
    }

    .dashboard-card {
      overflow: hidden;
      padding: 0;
    }

    .dashboard-bar {
      padding: 14px 16px;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      background: rgba(255,255,255,0.02);
    }

    .dashboard-bar strong {
      font-size: calc(var(--font-base) - 1px);
      color: var(--white);
    }

    .status-pill {
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(245,194,0,0.12);
      color: var(--gold);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .dashboard-grid {
      display: grid;
      gap: 14px;
      padding: var(--card-padding);
    }

    .dashboard-panel {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(245,194,0,0.08);
      border-radius: var(--radius-lg);
      padding: 14px;
      display: grid;
      gap: 10px;
    }

    .dashboard-panel-title {
      font-size: 14px;
      font-weight: 800;
      color: var(--white);
    }

    .dashboard-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .metric-box {
      background: #0e0e0e;
      border: 1px solid rgba(245,194,0,0.08);
      border-radius: var(--radius-md);
      padding: 12px;
    }

    .metric-number {
      color: var(--gold);
      font-size: 22px;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 6px;
    }

    .metric-label {
      color: var(--muted);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 800;
    }

    .mini-list {
      display: grid;
      gap: 10px;
    }

    .mini-row {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(245,194,0,0.08);
      background: rgba(255,255,255,0.02);
      color: #e4e4e4;
      font-size: 13px;
      font-weight: 700;
    }

    .progress {
      height: 8px;
      width: 100%;
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      overflow: hidden;
    }

    .progress > span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), var(--gold-soft));
    }

    .pricing-card {
      display: grid;
      gap: var(--grid-gap);
      position: relative;
      overflow: hidden;
    }

    .pricing-card.featured {
      border-color: rgba(245,194,0,0.38);
      background: linear-gradient(180deg, rgba(245,194,0,0.08), rgba(255,255,255,0.02));
      transform: translateY(-4px);
    }

    .pricing-badge {
      position: absolute;
      right: 14px;
      top: 14px;
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--black);
      background: var(--gold);
      padding: 6px 8px;
      border-radius: 999px;
    }

    .price {
      display: flex;
      align-items: flex-end;
      gap: 8px;
    }

    .price strong {
      font-size: 42px;
      color: var(--white);
      line-height: 0.9;
    }

    .price span {
      font-size: 13px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .pricing-list {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .pricing-list li {
      padding-left: 22px;
      position: relative;
      color: #dbdbdb;
      font-size: 14px;
    }

    .pricing-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: 900;
    }

    .step-number {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--black);
      background: var(--gold);
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .testimonial-copy {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 21px;
      line-height: 1.45;
      color: #f1e5a8;
      margin-bottom: 14px;
    }

    .testimonial-author {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .faq-item {
      display: grid;
      gap: 10px;
    }

    .faq-title {
      font-size: 20px;
      margin-bottom: 0;
    }

    .gold-section {
      background: linear-gradient(135deg, var(--gold), #f6d03d 65%);
      color: var(--black);
    }

    .gold-section p,
    .gold-section .eyebrow,
    .gold-section .eyebrow::before,
    .gold-section .pricing-copy,
    .gold-section .feature-copy {
      color: rgba(10,10,10,0.78);
    }

    .gold-section .cta-box {
      background: rgba(255,255,255,0.28);
      border-color: rgba(10,10,10,0.08);
      box-shadow: none;
    }

    .footer {
      padding: 36px 0 44px;
      border-top: 1px solid var(--line);
      background: #0a0a0a;
    }

    .footer-copy p {
      max-width: 460px;
      margin-top: 10px;
      font-size: 14px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: var(--muted);
      font-weight: 700;
    }

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

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

    @media (min-width: 760px) {
      .topbar-inner {
        padding: 18px 0;
      }

      .hero-top {
        min-height: 360px;
        padding: 24px;
      }

      .hero-content,
      .hero-side,
      .news-card,
      .event-card,
      .spot-card,
      .feature-card,
      .step-card,
      .audience-card,
      .pricing-card,
      .testimonial,
      .faq-item {
        padding: 22px;
      }

      .hero-grid,
      .dashboard-wrap,
      .pricing-grid,
      .steps-grid,
      .audience-grid,
      .testimonials-grid,
      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .news-grid,
      .events-grid,
      .spots-grid,
      .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .filter-row {
        grid-template-columns: 1.1fr 0.9fr 0.9fr;
        align-items: center;
      }
    }

    @media (min-width: 1100px) {
      .nav {
        display: flex;
      }

      .hero-grid {
        grid-template-columns: 1.45fr 0.78fr;
      }

      .news-grid {
        grid-template-columns: 1.2fr 0.9fr 0.9fr;
      }

      .events-grid,
      .spots-grid,
      .features-grid,
      .pricing-grid,
      .steps-grid,
      .audience-grid,
      .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .dashboard-wrap {
        grid-template-columns: 1.1fr 0.9fr;
      }

      .footer-grid {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: start;
      }
    }
  
.card-link { cursor: pointer; position: relative; z-index: 1; display: block; text-decoration: none; }

.result-card, .news-card, .event-card, .spot-card {
  cursor: pointer;
  position: relative;
  z-index: 1;
}

/* ── Clickable Cards Fix ── */
.card-link,
a.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.result-card,
.news-card,
.event-card,
.spot-card,
.spot-title {
  cursor: pointer;
}
.card-link:hover .result-card,
.card-link:hover .news-card,
.card-link:hover .event-card {
  border-color: rgba(245,194,0,.3);
  transform: translateY(-2px);
  transition: border-color .2s, transform .2s;
}

/* ── MOBILE FIXES ── */
@media (max-width: 768px) {
  .card-grid { grid-template-columns: 1fr !important; }
  .grid-3 { grid-template-columns: 1fr !important; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .page-layout { grid-template-columns: 1fr !important; }
  .fr { grid-template-columns: 1fr !important; }
  .two-col { grid-template-columns: 1fr !important; }
  .ph { flex-direction: column; align-items: flex-start; }
  .tb-uname { display: none; }
}

/* ── TOUCH TARGETS ── */
button,
.btn-gold,
.btn-outline,
.btn-dark,
.card-link,
.nb,
.row-item { min-height: 44px; }

/* ── CLICKABLE CARDS (full override) ── */
.card-link,
a.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}
.card-link:hover .result-card,
.card-link:hover .news-card,
.card-link:hover .event-card,
.card-link:hover .spot-card {
  border-color: rgba(245,194,0,.3);
  transform: translateY(-2px);
  transition: border-color .2s, transform .2s;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(245,194,0,.2); border-radius: 4px; }

/* ── PERFORMANCE ── */
* { -webkit-tap-highlight-color: transparent; }

/* ── PREMIUM ANIMATIONS ── */

/* Cards — enhanced transitions */
.news-card, .event-card, .spot-card, .result-card, .list-card {
  transition: transform .22s cubic-bezier(.4,0,.2,1),
              border-color .22s ease,
              box-shadow .22s ease;
}
.news-card:hover, .event-card:hover, .spot-card:hover, .result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,194,0,.28);
  box-shadow: 0 20px 48px rgba(0,0,0,.4);
}

/* Buttons — premium feel */
.btn-gold, .btn-outline, .btn-dark {
  transition: transform .18s cubic-bezier(.4,0,.2,1), opacity .18s ease, box-shadow .18s ease;
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .18s ease;
}
.btn-gold:hover::after { opacity: 1; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,194,0,.3); }
.btn-outline:hover { transform: translateY(-2px); background: rgba(245,194,0,.08); }

/* Nav underline animation */
.nav a {
  position: relative;
  transition: color .18s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .22s cubic-bezier(.4,0,.2,1);
  border-radius: 2px;
}
.nav a:hover::after { width: 100%; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }

/* ── GOLD GRADIENT TEXT ── */
.gold-text {
  background: linear-gradient(135deg, #F5C200, #f8d54a 50%, #F5C200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LOADING SKELETON ── */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,.04) 25%, rgba(255,255,255,.08) 50%, rgba(255,255,255,.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-lg, 18px);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── MOBILE EXTENDED ── */
@media (max-width: 768px) {
  .hero-actions { flex-direction: column; }
  .inline-cta { flex-direction: column; }
  .btn-gold, .btn-outline, .btn-dark { width: 100%; justify-content: center; text-align: center; }
}

/* ── GLASSMORPHISM TOPBAR ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .3s ease, backdrop-filter .3s ease,
              border-bottom-color .3s ease, box-shadow .3s ease;
  background: rgba(9,9,9,.8);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: rgba(9,9,9,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,.06);
  box-shadow: 0 1px 0 rgba(245,194,0,.06);
}

/* ── FINAL POLISH 2026 ── */
:root {
  --surface-0: #090909;
  --surface-1: #0e0e0e;
  --surface-2: #141414;
  --surface-3: #1a1a1a;
  --border-subtle: rgba(255,255,255,.06);
  --border-medium: rgba(255,255,255,.1);
  --border-gold: rgba(245,194,0,.2);
}
.gold-gradient {
  background: linear-gradient(135deg, #F5C200 0%, #f8e070 50%, #F5C200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
::selection { background: rgba(245,194,0,.25); color: #F0EEE8; }
*:focus-visible { outline: 2px solid rgba(245,194,0,.6); outline-offset: 3px; border-radius: 4px; }
.date-pill {
  background: rgba(9,9,9,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,194,0,.2);
  border-radius: 12px;
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}
.date-pill strong { font-size: 18px; font-weight: 900; color: #F5C200; line-height: 1; }
.date-pill span { font-size: 10px; font-weight: 700; color: #888; text-transform: uppercase; }
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: #F5C200;
  border-radius: 1px;
  margin-right: 6px;
  vertical-align: middle;
}
.scroll-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-row > * { flex: 0 0 280px; scroll-snap-align: start; }
img { max-width: 100%; height: auto; }
img[loading="lazy"] { opacity: 0; transition: opacity .4s ease; }
img.loaded { opacity: 1; }

/* ── SHARE BUTTON ── */
.share-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(9,9,9,.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F0EEE8;
  z-index: 3;
  transition: transform .18s ease, background .18s ease;
  flex-shrink: 0;
}
.share-btn:hover { transform: scale(1.12); background: rgba(9,9,9,.92); }
.share-btn:active { transform: scale(.96); }

/* ── SAVE/HERZ BUTTON ── */
.save-btn {
  position: absolute;
  top: 10px;
  right: 48px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(9,9,9,.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  z-index: 3;
  transition: transform .18s ease, color .18s ease, background .18s ease;
}
.save-btn:hover { transform: scale(1.12); color: #ef4444; }
.save-btn.saved { color: #ef4444; border-color: rgba(239,68,68,.3); background: rgba(239,68,68,.1); }
.save-btn svg { pointer-events: none; }

/* ── HEUTE SECTION ── */
.heute-section { padding: 24px 0 12px; border-bottom: 1px solid rgba(255,255,255,.05); }
.heute-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
.heute-title { font-size: clamp(22px,4vw,30px); font-weight: 900; letter-spacing: -.04em; margin: 0 0 4px; line-height: 1; }
.heute-sub { font-size: 12px; color: #666; margin: 0; }
.heute-all { font-size: 12px; font-weight: 800; color: #F5C200; text-decoration: none; white-space: nowrap; border-bottom: 1px solid rgba(245,194,0,.3); padding-bottom: 1px; }
.heute-all:hover { border-bottom-color: #F5C200; }

/* ── LIVE DOT ── */
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #ef4444;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse-red 2s infinite;
  vertical-align: middle;
}
@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

/* ── PHIL'S PICK BAR ── */
#phils-pick-bar {
  display: none;
  background: linear-gradient(90deg, rgba(245,194,0,.1), rgba(245,194,0,.05));
  border-bottom: 1px solid rgba(245,194,0,.14);
  padding: 10px 0;
}
.phils-pick-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  gap: 12px;
  cursor: pointer;
}
.pick-left { display: flex; align-items: center; gap: 10px; }
.pick-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #F5C200;
  color: #090909;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pick-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: #F5C200; margin-bottom: 1px; }
.pick-text { font-size: 13px; font-weight: 700; color: #F0EEE8; line-height: 1.3; }
.pick-arrow { color: #F5C200; font-size: 16px; font-weight: 900; flex-shrink: 0; }

/* ── NEWSLETTER BOX ── */
.newsletter-section { padding: 28px 0; }
.newsletter-card {
  background: linear-gradient(135deg, rgba(245,194,0,.1), rgba(245,194,0,.03));
  border: 1px solid rgba(245,194,0,.18);
  border-radius: 24px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .newsletter-card { grid-template-columns: 1fr; padding: 24px 20px; gap: 20px; }
}
.nl-title { font-size: clamp(18px,3.5vw,26px); font-weight: 900; letter-spacing: -.04em; margin: 0 0 8px; }
.nl-sub { font-size: 13px; color: #888; line-height: 1.7; margin: 0 0 12px; }
.nl-features { display: flex; gap: 16px; font-size: 11px; font-weight: 800; color: rgba(245,194,0,.7); flex-wrap: wrap; }
.nl-input-row { display: flex; gap: 8px; margin-bottom: 10px; }
.nl-input {
  flex: 1;
  background: rgba(9,9,9,.6);
  border: 1px solid rgba(255,255,255,.15);
  color: #F0EEE8;
  padding: 13px 16px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.nl-input:focus { border-color: rgba(245,194,0,.5); }
.nl-input::placeholder { color: #444; }
.nl-btn {
  background: #F5C200;
  color: #090909;
  border: none;
  padding: 13px 18px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s, box-shadow .18s;
}
.nl-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,194,0,.3); }
.nl-legal { font-size: 10px; color: #444; line-height: 1.5; margin: 0; }
.nl-legal a { color: #666; }

/* ── MOBILE BOTTOM NAV ── */
.mobile-nav { display: none; }
@media (max-width: 768px) {
  body { padding-bottom: 72px; }
  .mobile-nav {
    display: flex !important;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(9,9,9,.96);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(245,194,0,.1);
    padding: 6px 0 max(6px, env(safe-area-inset-bottom));
    justify-content: space-around;
  }
  .mob-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 5px 10px;
    border: none;
    background: transparent;
    color: #555;
    font-size: 9px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
    transition: color .18s;
    text-decoration: none;
  }
  .mob-nav-btn .icon { font-size: 20px; line-height: 1; }
  .mob-nav-btn.active { color: #F5C200; }
  .nl-input-row { flex-direction: column; }
  .nl-btn { width: 100%; }
}

/* ── CATEGORY NAV (Airbnb Style) ── */
.cat-nav {
  position: sticky;
  top: 56px;
  z-index: 70;
  background: rgba(9,9,9,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner { display: flex; padding: 0 16px; min-width: max-content; }
.cat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 18px 10px;
  border: none;
  background: transparent;
  color: #555;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
  text-decoration: none;
}
.cat-btn .cat-icon { font-size: 20px; line-height: 1; }
.cat-btn:hover { color: #F0EEE8; }
.cat-btn.active { color: #F5C200; border-bottom-color: #F5C200; }

/* ══════════════════════════════════
   IMAGE PICKER MODAL
══════════════════════════════════ */

.img-picker-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.img-picker-overlay.open { opacity: 1; pointer-events: all; }

.img-picker-modal {
  background: #111;
  border: 1px solid rgba(245,194,0,.2);
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(.97);
  transition: transform .22s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
}
.img-picker-overlay.open .img-picker-modal { transform: translateY(0) scale(1); }

.img-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.img-picker-header h2 { font-size: 16px; font-weight: 900; letter-spacing: -.03em; margin: 0; color: #F0EEE8; }
.img-picker-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: none;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background .18s, color .18s;
}
.img-picker-close:hover { background: rgba(255,255,255,.12); color: #F0EEE8; }

.img-picker-tabs {
  display: flex;
  gap: 4px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}
.img-picker-tabs::-webkit-scrollbar { display: none; }
.img-tab {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
  color: #666;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all .18s;
}
.img-tab.active { background: rgba(245,194,0,.12); border-color: #F5C200; color: #F5C200; }

.img-picker-search { padding: 10px 24px; border-bottom: 1px solid rgba(255,255,255,.06); flex-shrink: 0; }
.img-picker-search input {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 9px 14px;
  color: #F0EEE8;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
  transition: border-color .18s;
}
.img-picker-search input:focus { border-color: rgba(245,194,0,.4); }
.img-picker-search input::placeholder { color: #444; }

.img-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
  padding: 16px 24px;
  overflow-y: auto;
  flex: 1;
}
.img-picker-grid::-webkit-scrollbar { width: 4px; }
.img-picker-grid::-webkit-scrollbar-thumb { background: rgba(245,194,0,.2); border-radius: 2px; }

.img-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .18s, transform .18s;
  background: #1a1a1a;
}
.img-thumb:hover { border-color: rgba(245,194,0,.5); transform: scale(1.03); }
.img-thumb.selected { border-color: #F5C200; }
.img-thumb.selected::after {
  content: '';
  position: absolute;
  top: 6px; right: 6px;
  width: 22px; height: 22px;
  background: #F5C200 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23090909' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
  border-radius: 50%;
}
.img-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .2s; }
.img-thumb .img-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  color: #F0EEE8;
  font-size: 9px;
  font-weight: 700;
  padding: 12px 6px 5px;
  text-align: center;
  opacity: 0;
  transition: opacity .18s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.img-thumb:hover .img-name { opacity: 1; }

.img-picker-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
  gap: 12px;
}
.img-picker-preview { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.img-picker-preview-thumb {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: #1a1a1a;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.08);
}
.img-picker-preview-url { font-size: 11px; color: #666; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.img-picker-btn-cancel {
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: transparent;
  color: #888;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
}
.img-picker-btn-cancel:hover { border-color: rgba(255,255,255,.25); color: #F0EEE8; }
.img-picker-btn-select {
  padding: 9px 20px;
  background: #F5C200;
  border: none;
  border-radius: 10px;
  color: #090909;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s;
}
.img-picker-btn-select:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,194,0,.3); }
.img-picker-btn-select:disabled { opacity: .4; cursor: not-allowed; transform: none; }

.img-field-wrap { display: flex; gap: 8px; align-items: stretch; }
.img-field-wrap input { flex: 1; }
.img-pick-trigger {
  padding: 0 14px;
  background: rgba(245,194,0,.1);
  border: 1px solid rgba(245,194,0,.25);
  border-radius: 10px;
  color: #F5C200;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: all .18s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.img-pick-trigger:hover { background: rgba(245,194,0,.18); border-color: rgba(245,194,0,.5); }


/* ══════════════════════════════════
   FRONTEND POLISH v52
   Scroll / Mobile / Icons / Depth
══════════════════════════════════ */

/* ── PERFORMANCE LAYER ── */
.topbar,
.reveal,
.news-card,
.event-card,
.spot-card,
.scroll-row > * {
  will-change: transform;
}

/* ── REVEAL — STAGGERED MIT DEPTH ── */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(.98);
  transition:
    opacity .65s cubic-bezier(.22,1,.36,1),
    transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Stagger für Grid-Kinder — automatisch */
.news-grid .reveal:nth-child(1),
.events-grid .reveal:nth-child(1),
.spots-grid .reveal:nth-child(1) { transition-delay: 0s; }
.news-grid .reveal:nth-child(2),
.events-grid .reveal:nth-child(2),
.spots-grid .reveal:nth-child(2) { transition-delay: .09s; }
.news-grid .reveal:nth-child(3),
.events-grid .reveal:nth-child(3),
.spots-grid .reveal:nth-child(3) { transition-delay: .18s; }
.news-grid .reveal:nth-child(4),
.events-grid .reveal:nth-child(4),
.spots-grid .reveal:nth-child(4) { transition-delay: .27s; }
.news-grid .reveal:nth-child(5),
.events-grid .reveal:nth-child(5),
.spots-grid .reveal:nth-child(5) { transition-delay: .36s; }

/* ── MOBILE TAP FEEDBACK ── */
@media (hover: none) and (pointer: coarse) {
  .news-card:active,
  .event-card:active,
  .spot-card:active,
  .card-link:active > * {
    transform: scale(.975);
    border-color: rgba(245,194,0,.3);
    transition: transform .1s ease, border-color .1s ease;
  }
  .btn-gold:active { transform: scale(.96); opacity: .9; }
  .btn-outline:active { transform: scale(.96); }
  .admin-btn:active { transform: scale(.96); }
}

/* ── BILD BLUR-UP EFFEKT ── */
img[loading="lazy"] {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.02);
  transition: opacity .5s ease, filter .5s ease, transform .5s ease;
}
img.loaded {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* ── SCROLL ROWS — MOBILE OPTIMIERT ── */
.scroll-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 16px;
  padding: 4px 16px 12px;
  margin: 0 -16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-row > * {
  flex: 0 0 min(280px, 75vw);
  scroll-snap-align: start;
}

/* ── CATEGORY NAV OHNE EMOJIS ── */
.cat-nav-clean {
  position: sticky;
  top: 56px;
  z-index: 70;
  background: rgba(9,9,9,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.cat-nav-clean::-webkit-scrollbar { display: none; }
.cat-nav-inner-clean {
  display: flex;
  padding: 0 16px;
  min-width: max-content;
}
.cat-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px 11px;
  color: #444;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: color .18s, border-color .18s;
  flex-shrink: 0;
}
.cat-link:hover { color: rgba(240,238,232,.7); }
.cat-link.active {
  color: #F5C200;
  border-bottom-color: #F5C200;
}
.cat-link svg {
  width: 13px;
  height: 13px;
  opacity: .6;
  flex-shrink: 0;
  transition: opacity .18s;
}
.cat-link:hover svg,
.cat-link.active svg {
  opacity: 1;
}

/* ── CARD IMAGE COVER — kein Emoji ── */
.card-no-img {
  background:
    radial-gradient(circle at 30% 40%, rgba(245,194,0,.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245,194,0,.06), transparent 40%),
    linear-gradient(135deg, #141414, #0e0e0e);
  position: relative;
  overflow: hidden;
}
.card-no-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,194,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,194,0,.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ── MOBILE BOTTOM NAV ── */
.mobile-nav {
  display: none;
}
@media (max-width: 768px) {
  body { padding-bottom: 68px; }
  .mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(9,9,9,.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(245,194,0,.08);
    padding: 6px 0 max(6px, env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: stretch;
  }
  .mob-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 6px 4px;
    border: none;
    background: transparent;
    color: #3a3a3a;
    font-size: 9px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    transition: color .18s;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }
  .mob-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .18s;
  }
  .mob-nav-btn.active {
    color: #F5C200;
  }
  .mob-nav-btn:active {
    transform: scale(.88);
    transition: transform .08s ease;
  }
}

/* ── SECTION TRANSITIONS ── */
.section {
  padding: clamp(40px, 7vw, 80px) 0;
}

/* ── CARDS — FOTO OBEN, TEXT UNTEN ── */
.photo-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform .22s cubic-bezier(.4,0,.2,1),
    border-color .22s ease,
    box-shadow .22s ease;
}
.photo-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(245,194,0,.08);
}
.photo-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--surface-2);
}
.photo-card-body {
  padding: 14px 16px 16px;
}
.photo-card-kicker {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 5px;
}
.photo-card-title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.25;
  color: #F0EEE8;
  margin-bottom: 6px;
}
.photo-card-meta {
  font-size: 11px;
  color: #666;
  font-weight: 700;
}

/* ── SECTION DIVIDER — kein harter Strich ── */
.section-fade {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,194,0,.12), transparent);
  margin: 0;
  border: none;
}

/* ── HERO SECTION — STÄRKERE WIRKUNG ── */
.hero-bg-text {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 900;
  letter-spacing: -.06em;
  color: rgba(245,194,0,.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

/* ── SMOOTH SCROLLING — iOS Fix ── */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* ── OVERSCROLL COLOR (Android Chrome) ── */
html {
  background-color: #090909;
}

/* ── PUSH NOTIFICATION ANIMATIONS ── */
@keyframes slideInRight {
  from { opacity:0; transform:translateX(20px); }
  to { opacity:1; transform:translateX(0); }
}
@keyframes slideUp {
  from { opacity:0; transform:translateX(-50%) translateY(20px); }
  to { opacity:1; transform:translateX(-50%) translateY(0); }
}

/* ── GEHEIMTIPP BADGE ── */
.geheimtipp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, rgba(245,194,0,.15), rgba(245,194,0,.05));
  border: 1px solid rgba(245,194,0,.3);
  color: #F5C200;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 999px;
  position: absolute;
  top: 10px;
  left: 10px;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.geheimtipp-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F5C200;
  animation: pulse-gold 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-gold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

/* ── SVG GRÖSSEN GLOBAL — verhindert riesige Icons ── */
.cat-link svg,
.mob-nav-btn svg,
.cat-clean svg,
nav svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* ── CATEGORY NAV — alle Varianten ── */
.cat-nav-clean::-webkit-scrollbar { display: none; }
.cat-nav-clean {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* ── MOBILE NAV ICONS — kein SVG Problem ── */
.mob-nav-btn .icon {
  font-size: 20px;
  line-height: 1.2;
  display: block;
}

/* ══════════════════════════════════════════════════
   NARRISCH DESIGN OVERHAUL v55
   Brutaler Münchner Journalismus
══════════════════════════════════════════════════ */

:root {
  --gold: #F5C200;
  --gold-dim: rgba(245,194,0,.12);
  --bg: #090909;
  --bg-1: #0e0e0e;
  --bg-2: #141414;
  --bg-3: #1a1a1a;
  --text: #F0EEE8;
  --text-2: #999;
  --text-3: #555;
  --border: rgba(255,255,255,.06);
  --border-gold: rgba(245,194,0,.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --section-gap: clamp(48px, 8vw, 96px);
  --card-gap: 14px;
}

::selection { background: rgba(245,194,0,.22); color: #F0EEE8; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(245,194,0,.25); border-radius: 2px; }

.t-kicker { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--text-3); }
.t-kicker-gold { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); }
.t-body { font-size: 15px; font-weight: 500; line-height: 1.7; color: var(--text-2); }

.topbar { position: sticky; top: 0; z-index: 100; background: rgba(9,9,9,.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); transition: box-shadow .3s ease; }
.topbar.scrolled { box-shadow: 0 1px 0 rgba(245,194,0,.08); }
.logo-box { width: 40px; height: 40px; border-radius: 11px; background: var(--gold); color: #090909; font-size: 18px; font-weight: 900; display: grid; place-items: center; border: none; flex-shrink: 0; letter-spacing: -.03em; }

.ticker { background: #0a0a0a; border-bottom: 1px solid var(--border); overflow: hidden; }
.ticker-badge { background: var(--gold); color: #090909; font-size: 9px; font-weight: 900; padding: 3px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: .1em; }

.section-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(245,194,0,.1), transparent); margin: 0; border: none; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; gap: 16px; }
.section-header-title { font-size: clamp(28px, 5vw, 44px); font-weight: 900; letter-spacing: -.05em; line-height: .95; margin: 0; color: var(--text); }
.section-header-link { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); text-decoration: none; white-space: nowrap; padding-bottom: 1px; border-bottom: 1px solid rgba(255,255,255,.1); transition: color .18s, border-color .18s; flex-shrink: 0; }
.section-header-link:hover { color: var(--text); border-bottom-color: rgba(255,255,255,.3); }

.hero-v2 { padding: clamp(40px, 8vw, 80px) 0 clamp(32px, 6vw, 60px); position: relative; overflow: hidden; }
.hero-v2-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.hero-v2-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 1px; }
.hero-v2-headline { font-size: clamp(56px, 13vw, 130px); font-weight: 900; letter-spacing: -.06em; line-height: .88; color: var(--text); margin: 0 0 20px; }
.hero-v2-sub { font-size: clamp(14px, 2.5vw, 18px); color: var(--text-2); max-width: 520px; line-height: 1.65; margin: 0 0 28px; font-weight: 500; }

.news-card-feature { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: border-color .22s, transform .22s, box-shadow .22s; display: grid; grid-template-rows: auto 1fr; }
.news-card-feature:hover { border-color: var(--border-gold); transform: translateY(-3px); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.news-card-feature .card-img { height: clamp(220px, 35vw, 360px); background-size: cover; background-position: center; background-color: var(--bg-2); position: relative; }
.news-card-feature .card-body { padding: 20px 22px 24px; }
.news-card-feature .card-title { font-size: clamp(22px, 4vw, 32px); font-weight: 900; letter-spacing: -.05em; line-height: 1.05; margin: 8px 0 10px; color: var(--text); }

.news-card-small { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: border-color .22s, transform .22s, box-shadow .22s; display: flex; flex-direction: column; }
.news-card-small:hover { border-color: var(--border-gold); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.news-card-small .card-img { height: 160px; background-size: cover; background-position: center; background-color: var(--bg-2); position: relative; flex-shrink: 0; }
.news-card-small .card-body { padding: 14px 16px 16px; flex: 1; }
.news-card-small .card-title { font-size: 16px; font-weight: 900; letter-spacing: -.04em; line-height: 1.2; margin: 6px 0 6px; color: var(--text); }

.news-grid-v2 { display: grid; gap: var(--card-gap); grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .news-grid-v2 { grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; }
  .news-grid-v2 .news-card-feature { grid-row: 1 / 3; }
}

.event-card-hero { position: relative; height: clamp(280px, 50vw, 420px); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; background-color: var(--bg-2); background-size: cover; background-position: center; transition: transform .22s, box-shadow .22s; }
.event-card-hero:hover { transform: scale(1.01); box-shadow: 0 32px 80px rgba(0,0,0,.6); }
.event-card-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,9,.95) 0%, rgba(9,9,9,.5) 40%, rgba(9,9,9,.1) 70%, transparent 100%); }
.event-card-hero .card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 24px 28px; z-index: 1; }
.event-card-hero .card-title { font-size: clamp(24px, 5vw, 36px); font-weight: 900; letter-spacing: -.05em; line-height: 1.05; color: #fff; margin: 8px 0 12px; }

.event-card-v2 { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: border-color .22s, transform .22s, box-shadow .22s; }
.event-card-v2:hover { border-color: var(--border-gold); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.event-card-v2 .card-img { height: 180px; background-size: cover; background-position: center; background-color: var(--bg-2); position: relative; }
.event-card-v2 .card-body { padding: 14px 16px 16px; }
.event-card-v2 .card-title { font-size: 15px; font-weight: 900; letter-spacing: -.04em; line-height: 1.25; color: var(--text); margin: 5px 0 7px; }

.events-grid-v2 { display: flex; gap: var(--card-gap); overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; padding-bottom: 4px; scrollbar-width: none; }
.events-grid-v2::-webkit-scrollbar { display: none; }
.events-grid-v2 > * { flex: 0 0 min(300px, 78vw); scroll-snap-align: start; }
@media (min-width: 900px) {
  .events-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); overflow: visible; }
  .events-grid-v2 > * { flex: none; }
}

.spot-card-v2 { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; transition: border-color .22s, transform .22s, box-shadow .22s; }
.spot-card-v2:hover { border-color: var(--border-gold); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.spot-card-v2 .card-img { height: 200px; background-size: cover; background-position: center; background-color: var(--bg-2); position: relative; }
.spot-card-v2 .phils-pick-indicator { position: absolute; bottom: 10px; left: 10px; display: flex; align-items: center; gap: 6px; background: var(--gold); color: #090909; font-size: 9px; font-weight: 900; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .1em; }
.spot-card-v2 .card-body { padding: 14px 16px 18px; }
.spot-card-v2 .card-title { font-size: 16px; font-weight: 900; letter-spacing: -.04em; color: var(--text); margin: 4px 0 6px; }
.spot-card-v2 .card-meta { font-size: 11px; color: var(--text-3); font-weight: 700; display: flex; gap: 8px; flex-wrap: wrap; }

.spots-grid-v2 { display: grid; grid-template-columns: 1fr; gap: var(--card-gap); }
@media (min-width: 600px) { .spots-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .spots-grid-v2 { grid-template-columns: repeat(3, 1fr); } }

.card-badge { position: absolute; top: 12px; left: 12px; background: rgba(9,9,9,.82); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.1); color: var(--text); font-size: 9px; font-weight: 800; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .1em; z-index: 2; }
.date-pill-v2 { position: absolute; top: 12px; left: 12px; background: rgba(9,9,9,.88); backdrop-filter: blur(8px); border: 1px solid rgba(245,194,0,.2); border-radius: 10px; padding: 6px 10px; display: flex; flex-direction: column; align-items: center; min-width: 42px; z-index: 2; }
.date-pill-v2 strong { font-size: 18px; font-weight: 900; color: var(--gold); line-height: 1; }
.date-pill-v2 span { font-size: 9px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: .08em; }
.share-btn-v2 { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: rgba(9,9,9,.75); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.12); cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgba(240,238,232,.8); z-index: 2; transition: transform .18s, background .18s; }
.share-btn-v2:hover { transform: scale(1.1); background: rgba(9,9,9,.92); }
.card-no-img-v2 { background: radial-gradient(circle at 25% 35%, rgba(245,194,0,.1), transparent 55%), radial-gradient(circle at 80% 75%, rgba(245,194,0,.05), transparent 45%), linear-gradient(145deg, #141414 0%, #0a0a0a 100%); position: relative; }
.card-no-img-v2::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(245,194,0,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(245,194,0,.03) 1px, transparent 1px); background-size: 32px 32px; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #090909; padding: 13px 22px; border-radius: 999px; font-size: 13px; font-weight: 800; font-family: 'Montserrat', sans-serif; border: none; cursor: pointer; text-decoration: none; transition: transform .18s cubic-bezier(.4,0,.2,1), box-shadow .18s; letter-spacing: -.01em; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,194,0,.35); }
.btn-primary:active { transform: scale(.96); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--text); padding: 12px 20px; border-radius: 999px; font-size: 13px; font-weight: 800; font-family: 'Montserrat', sans-serif; border: 1px solid rgba(255,255,255,.15); cursor: pointer; text-decoration: none; transition: border-color .18s, color .18s, transform .18s; }
.btn-secondary:hover { border-color: rgba(245,194,0,.4); color: var(--gold); transform: translateY(-1px); }

.phils-pick-bar { background: linear-gradient(90deg, rgba(245,194,0,.11) 0%, rgba(245,194,0,.04) 60%, transparent 100%); border-bottom: 1px solid rgba(245,194,0,.16); padding: 10px 0; }
.phils-pick-inner { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.phils-pick-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: #090909; font-size: 13px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.phils-pick-label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; color: var(--gold); margin-bottom: 2px; }
.phils-pick-text { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.newsletter-v2 { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 52px) clamp(20px, 5vw, 48px); position: relative; overflow: hidden; }
.newsletter-v2::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(245,194,0,.08), transparent 70%); pointer-events: none; }
.newsletter-v2-title { font-size: clamp(26px, 5vw, 42px); font-weight: 900; letter-spacing: -.05em; line-height: .95; margin: 10px 0 12px; color: var(--text); }
.newsletter-v2-sub { font-size: 14px; color: var(--text-2); line-height: 1.65; max-width: 480px; margin: 0 0 20px; }
.newsletter-v2-form { display: flex; gap: 8px; max-width: 460px; }
.newsletter-v2-input { flex: 1; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 13px 16px; color: var(--text); font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 500; outline: none; transition: border-color .2s; }
.newsletter-v2-input:focus { border-color: rgba(245,194,0,.45); }
.newsletter-v2-input::placeholder { color: #333; }
.newsletter-v2-trust { font-size: 11px; color: var(--text-3); margin-top: 10px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.newsletter-v2-trust span::before { content: '✓ '; color: var(--gold); font-weight: 900; }

.footer-v2 { background: #060606; border-top: 1px solid rgba(255,255,255,.05); padding: clamp(48px, 8vw, 80px) 0 clamp(24px, 4vw, 40px); margin-top: var(--section-gap); }
.footer-v2-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-v2-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-v2-brand-title { font-size: clamp(32px, 7vw, 56px); font-weight: 900; letter-spacing: -.06em; line-height: .9; color: var(--text); margin: 12px 0 14px; }
.footer-v2-tagline { font-size: 14px; color: var(--text-2); line-height: 1.65; max-width: 300px; margin: 0 0 20px; }
.footer-v2-col-title { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; color: var(--text-3); margin-bottom: 14px; }
.footer-v2-links { display: flex; flex-direction: column; gap: 10px; }
.footer-v2-links a { font-size: 14px; font-weight: 700; color: var(--text-2); text-decoration: none; transition: color .18s; }
.footer-v2-links a:hover { color: var(--text); }
.footer-v2-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-v2-copy { font-size: 12px; color: var(--text-3); font-weight: 600; }
.footer-v2-legal { display: flex; gap: 16px; }
.footer-v2-legal a { font-size: 11px; color: var(--text-3); text-decoration: none; font-weight: 600; transition: color .18s; }
.footer-v2-legal a:hover { color: var(--text-2); }

.cat-nav-v2 { position: sticky; top: 56px; z-index: 70; background: rgba(9,9,9,.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.cat-nav-v2::-webkit-scrollbar { display: none; }
.cat-nav-v2-inner { display: flex; padding: 0 16px; min-width: max-content; }
.cat-nav-v2 a { padding: 13px 16px 11px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); border-bottom: 2px solid transparent; text-decoration: none; white-space: nowrap; font-family: 'Montserrat', sans-serif; flex-shrink: 0; display: block; transition: color .18s, border-color .18s; }
.cat-nav-v2 a:hover { color: rgba(240,238,232,.7); }
.cat-nav-v2 a.active { color: var(--gold); border-bottom-color: var(--gold); }

.mobile-nav-v2 { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: rgba(6,6,6,.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-top: 1px solid rgba(255,255,255,.06); padding: 8px 0 max(10px, env(safe-area-inset-bottom)); }
@media (max-width: 768px) { .mobile-nav-v2 { display: flex; justify-content: space-around; } body { padding-bottom: 70px; } }
.mobile-nav-v2 a { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; padding: 4px 2px; text-decoration: none; color: var(--text-3); font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; transition: color .18s; -webkit-tap-highlight-color: transparent; }
.mobile-nav-v2 a .nav-dot { width: 20px; height: 20px; border-radius: 6px; background: transparent; border: 1.5px solid currentColor; transition: background .18s, border-color .18s; display: flex; align-items: center; justify-content: center; font-size: 10px; }
.mobile-nav-v2 a.active { color: var(--gold); }
.mobile-nav-v2 a.active .nav-dot { background: rgba(245,194,0,.15); }
.mobile-nav-v2 a:active { transform: scale(.88); transition: transform .08s; }

.reveal-v2 { opacity: 0; transform: translateY(28px) scale(.99); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.reveal-v2.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-v2:nth-child(1) { transition-delay: 0s; }
.reveal-v2:nth-child(2) { transition-delay: .08s; }
.reveal-v2:nth-child(3) { transition-delay: .16s; }
.reveal-v2:nth-child(4) { transition-delay: .24s; }
img[loading="lazy"] { opacity: 0; filter: blur(6px); transition: opacity .5s ease, filter .5s ease; }
img.loaded { opacity: 1; filter: blur(0); }

@media (max-width: 768px) {
  .hero-v2::before { display: none; }
  .newsletter-v2-form { flex-direction: column; }
  .section-header { flex-wrap: wrap; gap: 8px; }
}
