    :root { --bg: #050607; --accent: #00e5ff; --card: #0b0d10; --text: #ffffff; }
    * { box-sizing: border-box; } 
    .card {
      width: 100%; max-width: 420px; background: var(--card);
      border: 1px solid rgba(0,229,255,0.25); border-radius: 18px;
      padding: 28px; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }
    body {
      margin: 0; font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--text);
      display: grid; min-height: 100vh;
    } 
    .logo { text-align: center; margin-bottom: 16px; }
    .logo img { height: 72px; filter: invert(1) brightness(2); }
    h1 { text-align: center; margin: 0 0 4px; letter-spacing: 2px; font-weight: 600; }
    p.sub { text-align: center; margin: 0 0 20px; color: #cfd8dc; font-size: 14px; }
    label { display: block; margin-bottom: 6px; font-size: 16px; color: #cfd8dc; }
    input {
      width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12);
      background: #0f1115; color: var(--text); font-size: 15px; outline: none; transition: border-color .2s;
    }
    input:focus { border-color: var(--accent); }
    .field { margin-bottom: 14px; }
    button {
      width: 50%; padding: 12px 14px; border: 1px solid var(--accent); border-radius: 14px;
      background: var(--accent); color: #000; font-weight: 700; letter-spacing: 1px; cursor: pointer;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    button:hover {background-color: #0f1115; box-shadow: 0 10px 30px rgba(0,229,255,0.25); color: white; }
    .error { color: #ff6b6b; font-size: 13px; min-height: 18px; margin-top: 6px; text-align: center; }
  
    /* Ticket style */

:root {
  --bg:#050607; --accent:#00e5ff; --card:#0b0d10; --text:#fff; --muted:#a7b4c0;
}
* { box-sizing:border-box; }
body {
  margin:0;
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--text);
  display:grid;
  min-height:100vh;
  padding-top: 20px;
}

.ticket-shell { width:100%; display:grid; place-items:center; }
.card.hero-card {
  width:100%; max-width:1100px;
  background:#0a0c0f;
  border:1px solid rgba(0,229,255,0.25);
  border-radius:18px;
  padding:28px;
  box-shadow:0 20px 50px rgba(0,0,0,0.5);
}
.logo { text-align:center; margin-bottom:12px; }
.logo img { height:72px; filter:invert(1) brightness(2); }
h1 { text-align:center; margin:0 0 4px; letter-spacing:2px; font-weight:600; }
.sub { text-align:center; margin:0 0 16px; color:#cfd8dc; font-size:14px; }

.hero-wrap {
  width:100%;
  aspect-ratio:16/6;
  border-radius:14px;
  overflow:hidden;
  background:#0b0d10;
  margin-bottom:18px;
}
.hero-wrap img { width:100%; height:100%; object-fit:cover; display:block; }

.ticket-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: stretch; /* beide Spalten gleich hoch */
}
.event-info { display:flex; flex-direction:column; gap:10px; padding:12px 0; }
.event-title { margin:0; font-size:22px; font-weight:700; }
.event-meta { color:#cfd8dc; font-size:14px; }
.event-desc { margin:0; color:#cfd8dc; line-height:1.6; }
.event-block { display:flex; flex-direction:column; gap:8px; border-bottom:1px solid rgba(255,255,255,0.08); padding-bottom:12px; }

.checkout-card {
  display:flex;
  flex-direction:column;
  gap:12px;
  background:#0f1115;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:12px;
  padding:14px;
  height: fit-content;
}
.checkout-card .checkout-btn {
  margin-top: auto; /* schiebt den Button nach unten */
}
.ticket-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #cfd8dc;
}
.ticket-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ticket-meta-row i { color: #8fd7ff; }
.checkout-info {
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:14px;
  color:#cfd8dc;
}

.info-row { display:flex; align-items:center; gap:8px; }
.info-row i { color:#8fd7ff; }
.checkout-hero {
  width:100%;
  aspect-ratio:16/7;
  background:#0b0d10;
  border-radius:12px;
  overflow:hidden;
}
.checkout-hero img { width:100%; height:100%; object-fit:cover; display:block; }

.prices-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; font-weight:600; }
.price-list { display:flex; flex-direction:column; gap:8px; }
.checkout-option {
  display:grid;
  grid-template-columns: auto 1fr auto;
  gap:10px;
  align-items:center;
  padding:10px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:10px;
  background:#0f1115;
}
.checkout-option .price { color:#8fd7ff; font-weight:600; }
.checkout-option input[type="radio"] {
  appearance: none;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 2px solid #00e5ff;
  border-radius: 6px;
  background: transparent;
  display: grid;
  place-items: center; /* zentriert ::after */
  cursor: pointer;
}

.checkout-option input[type="radio"]:checked {
  background: rgba(0,229,255,0.18);
}

.checkout-option input[type="radio"]:checked::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #00e5ff;
  border-radius: 3px;
}

button {
  width:100%;
  padding:12px 14px;
  border:1px solid var(--accent);
  border-radius:14px;
  background:var(--accent);
  color:#000;
  font-weight:700;
  letter-spacing:1px;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
}
button:hover { background:#0f1115; box-shadow:0 10px 30px rgba(0,229,255,0.25); color:white; }
.ghost-btn { background:rgba(255,255,255,0.06); color:#fff; border:1px solid rgba(255,255,255,0.14); border-radius:10px; padding:10px 14px; cursor:pointer; }

@media (max-width: 900px) {
  .ticket-grid { grid-template-columns:1fr; }
  .hero-wrap { aspect-ratio:16/9; }
}
