:root{
  --black: #0a0a0a;
  --black-soft: #141414;
  --card: #161616;
  --silver-1: #ffffff;
  --silver-2: #d6d6da;
  --silver-3: #9a9a9f;
  --silver-4: #5c5c60;
  --leopard-tan: #c9a876;
  --leopard-dark: #3a2a1a;
  --text: #f2f2f3;
  --text-dim: #b8b8bc;
  --radius: 16px;
  --max-width: 480px;
}

*{box-sizing:border-box;}

html,body{margin:0;padding:0;}

body{
  background: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #0a0a0a 55%, #000 100%);
  color: var(--text);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.sparkle-field{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(2px 2px at 10% 15%, rgba(255,255,255,0.5) 0, transparent 50%),
    radial-gradient(1.5px 1.5px at 85% 25%, rgba(255,255,255,0.4) 0, transparent 50%),
    radial-gradient(2px 2px at 70% 80%, rgba(255,255,255,0.4) 0, transparent 50%),
    radial-gradient(1.5px 1.5px at 20% 70%, rgba(255,255,255,0.35) 0, transparent 50%),
    radial-gradient(1.5px 1.5px at 45% 40%, rgba(255,255,255,0.3) 0, transparent 50%),
    radial-gradient(2px 2px at 90% 60%, rgba(255,255,255,0.35) 0, transparent 50%);
  background-repeat: no-repeat;
}

.page{
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Header ---------- */

.hero{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-frame{
  width: min(280px, 78vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 18px 40px rgba(0,0,0,0.6);
}

.logo{
  width: 100%;
  height: 100%;
  display: block;
}

.tagline{
  margin: 20px 0 0;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.5;
  max-width: 340px;
}

.live-badge{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--black-soft);
  border: 1px solid var(--silver-4);
  color: var(--silver-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-decoration: none;
  white-space: nowrap;
}

.dot{
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #c9a876);
  box-shadow: 0 0 8px rgba(201,168,118,0.8);
}

.dot.live-now{
  background: linear-gradient(180deg, #fff, #4ade80);
  box-shadow: 0 0 8px rgba(74,222,128,0.9);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

@keyframes pulse-dot{
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ---------- Divider ---------- */

.divider{
  width: 100%;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 26px 0;
  color: var(--leopard-tan);
}

.divider::before,
.divider::after{
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver-4), transparent);
}

.divider span{
  padding: 0 14px;
  font-size: 13px;
}

/* ---------- Buttons ---------- */

.button-stack{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn{
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--silver-4);
  background: var(--card);
  color: var(--silver-1);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: var(--silver-2);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

.btn-primary{
  background: linear-gradient(180deg, #f2f2f3 0%, #c7c7cc 35%, #8b8b8f 55%, #e8e8ea 78%, #b7b7bb 100%);
  color: #141414;
  border: 1px solid #e5e5e8;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

/* ---------- Accordion ---------- */

.accordion{
  border-radius: var(--radius);
  border: 1px solid var(--silver-4);
  background: var(--card);
  overflow: hidden;
}

.accordion-trigger{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--silver-1);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.chev{
  font-size: 11px;
  color: var(--leopard-tan);
  transition: transform 0.2s ease;
}

.accordion.open .chev{
  transform: rotate(180deg);
}

.accordion-panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  border-top: 1px solid transparent;
}

.accordion.open .accordion-panel{
  border-top: 1px solid var(--silver-4);
  padding: 18px 20px 22px;
}

.hint{
  margin: 0 0 14px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver-3);
}

.team-photos{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.team-photo{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 0;
  border: 2px solid var(--silver-4);
  background: var(--black-soft);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.team-photo:hover{
  transform: translateY(-1px);
}

.team-photo.active{
  border-color: var(--leopard-tan);
  box-shadow: 0 0 0 2px rgba(201,168,118,0.35);
}

.team-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}

.team-card{
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--silver-4);
}

.team-card img{
  width: 100%;
  height: auto;
  aspect-ratio: 933 / 1400;
  display: block;
}

.cta-link{
  display: block;
  text-align: center;
  color: var(--leopard-tan);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.cta-link:hover{
  text-decoration: underline;
}

/* ---------- Contact form ---------- */

.contact-form{
  display: flex;
  flex-direction: column;
}

.hidden-field{
  position: absolute;
  left: -9999px;
}

.contact-form label{
  font-size: 12px;
  color: var(--silver-3);
  margin: 10px 0 6px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--silver-4);
  background: var(--black-soft);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
}

.contact-form textarea{
  min-height: 90px;
  resize: vertical;
}

.contact-form .btn-primary{
  margin-top: 16px;
}

/* ---------- Footer ---------- */

.site-footer{
  margin-top: 36px;
  text-align: center;
  color: var(--silver-4);
  font-size: 12px;
}

@media (max-width: 380px){
  .page{ padding: 28px 16px 44px; }
}
