:root{
  --bg:#0b1020;
  --text:#e8ecff;
  --muted:#aeb7dd;
  --accent:#4da3ff;
  --accent2:#8b5cf6;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1000px 500px at 20% -10%, rgba(77,163,255,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(139,92,246,.14), transparent 55%),
    var(--bg);
  color:var(--text);
}

.wrap{
  max-width:1040px;
  margin:auto;
  padding:28px 22px;
}

.top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:22px;
}

.brand{
  display:flex;
  gap:14px;
  align-items:center;
}

.brand img{
  max-height:56px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.title{
  font-weight:600;
}

.meta{
  font-size:13px;
  color:var(--muted);
}

.card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:24px;
  margin-bottom:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}

.hero h1{
  font-size:34px;
  margin-top:0;
}

.lead{
  font-size:16px;
  line-height:1.55;
  color:var(--muted);
}

.highlight{
  color:var(--text);
}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

@media(max-width:760px){
  .grid{grid-template-columns:1fr}
}

.ticket{
  background:rgba(0,0,0,.15);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  padding:18px;
}

.ticket-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.price{
  font-weight:700;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  -webkit-background-clip:text;
  color:transparent;
}

.btn{
  display:block;
  margin-top:14px;
  text-align:center;
  padding:12px;
  border-radius:12px;
  font-weight:700;
  color:#0b1020;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  text-decoration:none;
}

.btn:hover{
  filter:brightness(1.05);
}

.btn.disabled{
  opacity:.5;
  pointer-events:none;
}

.ghost{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.2);
  color:var(--text);
  text-decoration:none;
}

.warn{
  background:rgba(255,255,255,.08);
  padding:12px;
  border-radius:10px;
  margin-bottom:14px;
}

.footer{
  text-align:center;
  opacity:.7;
  margin-top:22px;
}
