:root{
  --gold:#d4af37;
  --gold-2:#f6d46b;
  --gold-3:#b68b2d;
  --bg:#000;
  --text:#fff;
  --muted:#cfcfcf;
  --radius:16px;
  --section-space:40px;
  --shadow:0 8px 24px rgba(0,0,0,.6);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Inter",sans-serif;
  background:#000;
  color:var(--text);
}

.page{
  width:min(430px,100vw);
  margin:0 auto;
}

.gold{
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  -webkit-background-clip:text;
  color:transparent;
}

section{
  padding:var(--section-space) 20px;
  border-top:1px solid rgba(255,255,255,.08);
}

.hero{
  text-align:center;
  padding:72px 20px 56px;
  background:
    repeating-linear-gradient(90deg,#0a0004 0 6px,#13000a 6px 12px),
    #070006;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  top:-30%;
  left:50%;
  transform:translateX(-50%);
  width:120%;
  height:160%;
  background:
    radial-gradient(circle at center,
    rgba(255,215,0,0.25) 0%,
    transparent 70%);
  pointer-events:none;
  z-index:0;
  filter:blur(60px);
}

.hero::after{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:100%;
  height:100%;
  background:
    linear-gradient(to bottom,
    rgba(255,215,0,0.25),
    transparent 70%);
  pointer-events:none;
  z-index:0;
}

.event-title{
  position:relative;
  z-index:2;
  font-family:"Cinzel",serif;
  font-size:24px;
  margin:0;
}

.event-subtitle{
  position:relative;
  z-index:2;
  font-size:13px;
  color:#f6edd2;
  margin:8px 0;
  line-height:1.7;
}

.countdown{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  gap:10px;
  margin:20px 0 0;
}

.cd-box{
  width:60px;
  height:60px;
  border-radius:14px;
  background:#111;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  border:1px solid rgba(255,255,255,.06);
}

.cd-num{
  font-size:18px;
  font-weight:700;
}

.cd-lbl{
  font-size:10px;
  color:var(--gold);
}

.btn-gold{
  display:inline-block;
  padding:14px 20px;
  border-radius:999px;
  background:
    linear-gradient(135deg,var(--gold),var(--gold-2));
  color:#000;
  font-weight:700;
  text-decoration:none;
  transition:.25s ease;
}

.btn-gold:hover{
  transform:translateY(-2px);
}

.center{
  text-align:center;
}

.accordion{
  margin-bottom:12px;
  padding:0 14px;
}

.acc-header{
  position:relative;
  width:100%;
  text-align:left;
  padding:14px 16px;
  border:none;
  border-radius:var(--radius);
  background:#111;
  color:var(--gold);
  font-weight:600;
  cursor:pointer;
  overflow:hidden;
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border .3s ease;
  z-index:2;
}

.acc-header::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:var(--radius);
  background:
    radial-gradient(circle at top,
    rgba(212,175,55,0.25),
    transparent 70%);
  opacity:0;
  transition:opacity .4s ease;
  z-index:-1;
}

.acc-header::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:
    linear-gradient(120deg,
    transparent,
    rgba(255,215,0,.25),
    transparent);
  transition:left .8s ease;
  z-index:-1;
}

.acc-header:hover,
.acc-header.active{
  transform:translateY(-2px);
  box-shadow:0 0 16px rgba(212,175,55,.5);
  border:1px solid var(--gold);
}

.acc-header:hover::before,
.acc-header.active::before{
  opacity:1;
}

.acc-header:hover::after,
.acc-header.active::after{
  left:100%;
}

.acc-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  background:#1a1a1a;
  border-radius:0 0 var(--radius) var(--radius);
  margin-top:6px;
  padding:0 14px;
}

.acc-body.open{
  padding:14px;
  max-height:2000px;
}

.acc-body ul,
.acc-body ol{
  padding-left:18px;
}

.acc-body li{
  margin-bottom:8px;
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
}

.acc-body p{
  font-size:14px;
  color:var(--muted);
  line-height:1.8;
}

.section-title{
  color:var(--gold);
  margin-bottom:10px;
  font-size:15px;
}

.section-block{
  margin-bottom:18px;
}

.section-text{
  line-height:1.8;
}

h4{
  color:var(--gold);
  margin:14px 0 10px;
}

strong{
  color:#fff;
}

@media(max-width:480px){

  .event-title{
    font-size:22px;
  }

  .accordion{
    padding:0 10px;
  }

}

.location-list-section{
  padding:28px 14px 50px;
}

.location-search{
  width:100%;
  padding:15px 16px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.4);
  background:#111;
  color:#fff;
  outline:none;
  font-size:14px;
  margin-bottom:12px;
}

.location-search::placeholder{
  color:#8f8f8f;
}

.location-search:focus{
  border-color:var(--gold);
  box-shadow:0 0 16px rgba(212,175,55,.35);
}

.location-count{
  color:var(--muted);
  font-size:13px;
  text-align:center;
  margin-bottom:14px;
}

.location-list{
  display:grid;
  gap:10px;
  margin-bottom:24px;
}

.location-item{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  padding:14px 16px;
  border-radius:var(--radius);
  background:#111;
  border:1px solid rgba(212,175,55,.18);
  color:#fff;
  text-decoration:none;
  transition:.25s ease;
}

.location-item:hover{
  border-color:var(--gold);
  transform:translateY(-2px);
  box-shadow:0 0 14px rgba(212,175,55,.35);
}

.location-item span{
  font-size:14px;
  font-weight:700;
}

.location-item small{
  color:var(--gold);
  font-size:11px;
  white-space:nowrap;
}

.location-item.hidden{
  display:none;
}