:root{
  --purple:#8A2BE2;
  --neon:#39FF14;
  --bg:#0E0E10;
  --sand:#F4F1EA;
  --ink:#1A1A1D;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;padding:0}
body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--sand);
  background: var(--bg);
  line-height: 1.6;
}

.hero{
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(14,14,16,0.3) 0%, rgba(14,14,16,0.7) 100%),
    radial-gradient(60% 50% at 50% 50%, rgba(138,43,226,0.3), transparent 70%),
    radial-gradient(30% 30% at 70% 30%, rgba(57,255,20,0.2), transparent 70%),
    url('/zunknown2.png') center/cover no-repeat fixed;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.hero__inner{padding: 4rem 1rem; max-width: 900px; position: relative; z-index: 1;}
.title{
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  text-shadow: 0 0 18px rgba(138,43,226,0.6), 0 0 10px rgba(57,255,20,0.4), 0 2px 8px rgba(0,0,0,0.8);
}
.subtitle{
  opacity:0.95; 
  margin:0 0 1.5rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.btn{
  display:inline-block; 
  padding:0.85rem 1.5rem; 
  border-radius:999px;
  text-decoration:none; 
  color:#111; 
  background: var(--neon); 
  font-weight:600;
  border: 2px solid rgba(155,255,110,0.3);
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 0 4px 12px rgba(57,255,20,0.3);
}
.btn:hover{ 
  transform: translateY(-2px); 
  box-shadow: 0 6px 24px rgba(57,255,20,0.5); 
}
.btn--primary{ background: var(--neon); color:#111; }
.btn--secondary{ 
  background: transparent; 
  color: var(--sand); 
  border-color: rgba(255,255,255,0.4);
  box-shadow: none;
}
.btn--secondary:hover{
  background: rgba(255,255,255,0.1);
  border-color: var(--sand);
  box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}

.btn--youtube{
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

.btn-icon{
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.9em;
}

.hero-cta{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.subscribe-link{
  color: var(--neon);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid rgba(57,255,20,0.4);
  transition: all 0.2s ease;
  padding-bottom: 2px;
}

.subscribe-link:hover{
  border-bottom-color: var(--neon);
  text-shadow: 0 0 8px rgba(57,255,20,0.5);
}

.section{ 
  max-width: 900px; 
  margin: 0 auto; 
  padding: 3.5rem 1.5rem; 
}

.section--video{
  max-width: 1100px;
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, rgba(138,43,226,0.05) 0%, transparent 100%);
}

.video-container{
  text-align: center;
}

.video-container h2{
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.video-wrapper{
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(138,43,226,0.4), 0 0 60px rgba(57,255,20,0.2);
  border: 2px solid rgba(138,43,226,0.3);
  margin: 0 auto 1.5rem;
}

.video-wrapper iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.video-caption{
  font-size: 1.1rem;
  color: #BFC1CA;
  font-style: italic;
  margin-top: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section--alt{ 
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 50%, transparent 100%); 
  border-top: 1px solid rgba(255,255,255,0.05);
}

.section--story{
  background: linear-gradient(135deg, rgba(138,43,226,0.08) 0%, rgba(57,255,20,0.05) 100%);
  border-top: 1px solid rgba(138,43,226,0.2);
  border-bottom: 1px solid rgba(138,43,226,0.2);
}

.story-tagline{
  font-size: 1.15rem;
  font-style: italic;
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--purple);
  background: rgba(138,43,226,0.1);
  border-radius: 8px;
}

.story-tagline em{
  color: var(--sand);
  font-weight: 400;
}

h2{ 
  font-family: "Playfair Display", serif; 
  font-size: clamp(1.8rem, 3vw, 2.4rem); 
  margin: 0 0 1.25rem;
  color: #fff;
}
h3{ 
  margin: 2rem 0 0.75rem;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: #fff;
}
p{ color: #EAE7F4; margin: 0 0 1rem; }
p:last-child{ margin-bottom: 0; }

em{ 
  color: var(--neon); 
  font-style: normal; 
  font-weight: 600; 
}
strong{ 
  color: #fff; 
  font-weight: 600; 
}

.list{ 
  padding-left: 1.5rem; 
  margin: 1rem 0;
}
.list li{ 
  color: #EAE7F4; 
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Contact Section */
.contact-info{
  margin: 2rem 0;
}
.contact-text{
  font-size: 1.1rem;
  margin: 1rem 0;
}
.email-link{
  color: var(--neon);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid rgba(57,255,20,0.3);
  transition: border-color 0.2s ease;
}
.email-link:hover{
  border-bottom-color: var(--neon);
}

.social-links{
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.social-label{
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #BFC1CA;
  margin-bottom: 1rem;
}
.social-nav{
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.social-link{
  color: var(--sand);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.social-link:hover{
  color: var(--neon);
  border-color: var(--neon);
  box-shadow: 0 0 12px rgba(57,255,20,0.3);
}

.social-link--youtube{
  background: rgba(57,255,20,0.1);
  border-color: var(--neon);
  font-weight: 600;
}

.social-link--youtube:hover{
  background: rgba(57,255,20,0.2);
  box-shadow: 0 0 16px rgba(57,255,20,0.5);
}

/* MWR Section */
.section--mwr{
  background: linear-gradient(135deg, rgba(138,43,226,0.15) 0%, rgba(57,255,20,0.08) 100%);
  border-top: 2px solid rgba(138,43,226,0.3);
  border-bottom: 2px solid rgba(138,43,226,0.3);
  padding: 4rem 1.5rem;
  text-align: center;
}

.mwr-content{
  max-width: 700px;
  margin: 0 auto;
}

.mwr-tagline{
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section--mwr h2{
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.section--mwr p{
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.section--mwr .btn{
  margin-top: 1rem;
}

.footer{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 1rem; 
  text-align:center; 
  color:#BFC1CA; 
  background:#0c0c0f;
}
.footer p{
  margin: 0 0 0.5rem;
  color: #BFC1CA;
}
.footnav{ 
  margin-top: 0.5rem;
}
.footnav a{ 
  color:#BFC1CA; 
  text-decoration:none; 
  margin:0 0.75rem;
  transition: color 0.2s ease;
}
.footnav a:hover{ 
  color: var(--neon); 
}

/* Responsive */
@media (min-width: 720px){
  .hero{
    min-height: 80vh;
  }
  .section{
    padding: 4rem 2rem;
  }
}
