    :root {
      --beer: #f5b700;
      --dark: #0b0b0b;
      --glass: rgba(255,255,255,0.06);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

     body {
	  height: 100%;
      width: 100%;
      margin: 0;
      padding: 0;
      font-family: 'Montserrat', sans-serif;
      background: radial-gradient(circle at top, #1a1a1a, #000);
      color: #fff;
      overflow-x: hidden;
    }
	
a {
  color: #ffe066; /* helleres Gold als Überschrift */
  text-decoration: underline;
  font-weight: 600;
  transition: text-shadow 0.3s;
}

a:hover, a:focus {
  text-shadow: 0 0 8px #ffe066;
}

    /* 🍺 Bierblasen Hintergrund */
    .bubbles {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
	  background: radial-gradient(circle at top, #1a1a1a, #000);
      overflow: hidden;
      z-index: -1;
    }

    .bubble {
      position: absolute;
      bottom: -100px;
      background: rgba(245,183,0,0.25);
      border-radius: 50%;
      animation: rise 15s infinite ease-in;
    }

    @keyframes rise {
      0% { transform: translateY(0) scale(1); opacity: 0; }
      10% { opacity: 0.6; }
      100% { transform: translateY(-120vh) scale(1.4); opacity: 0; }
    }

    section {
      padding: 3rem 1.5rem;
      text-align: center;
	  min-height: auto;
    }

    .hero h1 {
      font-size: clamp(2.2rem, 7vw, 4rem);
      font-weight: 800;
    }

    .hero span { color: var(--beer); }

    .hero p {
      margin-top: 1rem;
      font-size: 1.1rem;
      opacity: 0.9;
    }

    .beer { font-size: 3.5rem; margin-top: 1.2rem; }

    .card {
      background: var(--glass);
      border-radius: 18px;
      padding: 2.2rem 1.8rem;
      margin: 2rem auto;
      max-width: 720px;
      backdrop-filter: blur(8px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    }

    .card h2 {
      color: var(--beer);
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .card p {
      font-size: 1.05rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    /* ⏳ Countdown */
    .timer {
      display: flex;
      justify-content: space-between;
      gap: 0.8rem;
      margin-top: 1.5rem;
    }

    .time-box {
      flex: 1;
      background: rgba(0,0,0,0.35);
      border-radius: 14px;
      padding: 1rem 0.5rem;
    }

    .time-box span {
      display: block;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--beer);
    }

    .time-box small {
      font-size: 0.75rem;
      opacity: 0.7;
    }

    .cta {
      margin-top: 1.8rem;
      font-size: 1.2rem;
      font-weight: 600;
    }

    footer {
      padding: 2rem 1rem;
      font-size: 0.85rem;
      opacity: 0.6;
    }

    @media (min-width: 768px) {
      section { padding: 4rem 2rem; }
      .hero p { font-size: 1.3rem; }
    }