/* Eine paas-medien.de Produktion */
@font-face {
    font-family: 'Source Sans Pro';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('fonts/source-sans-3-400.woff2') format('woff2');
  }

  @font-face {
    font-family: 'Source Sans Pro';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url('fonts/source-sans-3-600.woff2') format('woff2');
  }

  @font-face {
    font-family: 'Source Sans Pro';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('fonts/source-sans-3-700.woff2') format('woff2');
  }

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

  html {
    background: #000;
  }

  body {
    background: #000;
    color: #eee;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    width: 100%;
    overflow-wrap: break-word;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  main {
    flex: 1;
  }

  .site-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
    background: #000;
    border-bottom: 1px solid #191919;
    display: none;
  }

  .nav-logo img {
    height: 44px;
    width: 44px;
    display: block;
  }

  .nav-link {
    color: #eee;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid #333;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .nav-link:hover {
    background: #eee;
    color: #000;
    border-color: #eee;
  }

  .hero {
    width: 100%;
    line-height: 0;
    overflow: hidden;
  }

  .hero img {
    width: 100%;
    height: auto;
    display: block;
  }

  .container {
    max-width: 860px;
    margin: 0 auto;
    padding: 52px 28px;
  }

  .intro-text {
    color: #bbb;
    line-height: 1.8;
    text-align: center;
  }

  .countdown-wrap {
    padding: 52px 0 44px;
    text-align: center;
  }

  .countdown-eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #9f9f9f;
    margin-bottom: 40px;
  }

  .countdown {
    display: inline-flex;
    align-items: flex-start;
  }

  .cd-unit {
    text-align: center;
    padding: 0 22px;
    position: relative;
  }

  .cd-unit+.cd-unit::before {
    content: ':';
    position: absolute;
    left: -4px;
    top: 1px;
    font-size: 52px;
    font-weight: 300;
    color: #252525;
    line-height: 1;
  }

  .cd-num {
    display: block;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
  }

  .cd-lbl {
    display: block;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #9f9f9f;
    margin-top: 10px;
  }

  .ticket-section {
    padding-bottom: 16px;
  }

  .ticket-blocked {
    background: #080808;
    border: 1px solid #1e1e1e;
    padding: 40px 24px;
    text-align: center;
  }

  .ticket-blocked p {
    color: #bbb;
    margin-bottom: 18px;
    font-size: 15px;
  }

  .btn-primary {
    display: inline-block;
    background: #eee;
    color: #000;
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.15s;
  }

  .btn-primary:hover {
    background: #fff;
  }

  .site-footer {
    border-top: 1px solid #191919;
    padding: 28px 24px;
    text-align: center;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
  }

  .footer-links a {
    color: #9f9f9f;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 4px 12px;
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: #ccc;
  }

  .footer-sep {
    color: #222;
    font-size: 11px;
    user-select: none;
  }

  .cookie-overlay.is-visible {
    display: block;
  }

  .cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.94);
    width: min(560px, calc(100vw - 32px));
    background: #111;
    border: 1px solid #2a2a2a;
    padding: 48px 44px 40px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .cookie-banner.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }

  .cookie-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #eee;
    margin-bottom: 16px;
  }

  .cookie-text {
    font-size: 14px;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .cookie-text a {
    color: #bbb;
    text-decoration: underline;
  }

  .cookie-actions {
    display: flex;
    gap: 12px;
  }

  .btn-consent-accept {
    flex: 1;
    background: #eee;
    color: #000;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.15s;
  }

  .btn-consent-accept:hover {
    background: #fff;
  }

  .btn-consent-decline {
    flex: 1;
    background: transparent;
    color: #bbb;
    border: 1px solid #2a2a2a;
    padding: 14px 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-consent-decline:hover {
    color: #aaa;
    border-color: #bbb;
  }

  @media (max-width: 640px) {
    .site-nav {
      padding: 12px 16px;
    }

    .container {
      padding: 36px 16px;
    }

    .cookie-banner {
      padding: 36px 24px 28px;
    }

    .cookie-actions {
      flex-direction: column;
    }

    .cd-num {
      font-size: 40px;
    }

    .cd-unit {
      padding: 0 12px;
    }

    .cd-unit+.cd-unit::before {
      font-size: 34px;
    }
  }
  .mb-1em {
    margin-bottom: 1em;
  }
  .text-center {
    text-align: center;
    margin-bottom: 1em;
  }
  .cookieOverlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 199;
    background: rgba(0,0,0,0.9);
    transition: opacity 0.3s;
    opacity: 1;
    pointer-events: auto;
    display: block;
  }