:root{--bg:#000;--text:#e6f0ff;--muted:#9bb0d0;--border:#263043;--accent:#22ffc3}
*{box-sizing:border-box}body{margin:0;background:var(--bg);color:var(--text);font:14px/1.5 Inter, system-ui}
a{color:#8ab4ff;text-decoration:none}
.hero{position:relative;display:grid;place-items:end start;min-height:46vh;overflow:hidden;border-bottom:1px solid var(--border)}
.hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(.6)}
.hero .wrap{position:relative;z-index:1;padding:32px;max-width:1100px;margin:0 auto}
.hero h1{margin:0 0 8px;font-size:40px}
.hero .meta{color:var(--muted)}
.container{max-width:1100px;margin:0 auto;padding:16px}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px}
.card{background:#0b0f12;border:1px solid var(--border);border-radius:16px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.35)}
.card img{width:100%;height:160px;object-fit:cover}
.card .pad{padding:14px}
.badge{display:inline-block;padding:4px 10px;border:1px solid var(--accent);color:var(--accent);border-radius:999px;font-size:12px}
.btn{display:inline-block;padding:10px 14px;border-radius:12px;background:var(--accent);color:#03211b;font-weight:800;border:0;margin-top:8px;width:100%;text-align:center}
.ticket{display:flex;flex-direction:column;gap:8px;padding:12px;border-bottom:1px dashed var(--border)}
.ticket h4{margin:0}
.ticket small{color:var(--muted)}
.form{padding:0}
.form input{width:100%;padding:10px;border-radius:10px;border:1px solid var(--border);background:#121826;color:#fff;margin-top:8px}
.form button{width:100%;margin-top:10px}
.gallery{display:flex;gap:10px;flex-wrap:wrap}
.gallery img{width:48%;max-width:240px;height:120px;object-fit:cover;border-radius:10px;border:1px solid var(--border)}
@media (min-width:820px){
  .ticket{flex-direction:row;justify-content:space-between;align-items:center}
  .btn{width:auto}
  .form{padding:14px}
  .gallery img{width:180px;height:120px}
}
