:root{
  --text:#ffffff;
  --muted:#d0d0d0;
  --accent:#fccb3b;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

html,body{min-height:100%}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);

  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.80)),
    url("../img/bg.jpg") center/cover no-repeat fixed;

  display:flex;
  align-items:flex-start;
  justify-content:center;
  text-align:center;
}

.wrap{
  padding:60px 20px 80px;
  animation: fadeInScale 0.8s ease forwards;
  max-width:980px;
  width:100%;
}

/* Title */
h1{
  font-family:"Cinzel", serif;
  font-weight:600;
  font-size:54px;
  margin:0 0 14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--accent);
  text-shadow: 
    0 2px 20px rgba(252,203,59,0.4),
    0 0 60px rgba(252,203,59,0.2);
  transition: text-shadow 0.5s ease;
}

h1:hover{
  text-shadow: 
    0 2px 25px rgba(252,203,59,0.5),
    0 0 80px rgba(252,203,59,0.3);
}

.subtitle{
  color:var(--muted);
  margin-bottom:24px;
  font-size:16px;
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:0;
  animation: fadeIn 1s ease forwards;
  animation-delay:0.3s;
}

/* Media (video or SVG) */
.mediaFrame{
  width:min(860px, 100%);
  margin:0 auto 18px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.35);
  box-shadow:
    0 18px 60px rgba(0,0,0,.45),
    0 0 0 1px rgba(252,203,59,0.05);
  transition: box-shadow 0.5s ease;
  position:relative;
}

.mediaFrame:hover{
  box-shadow:
    0 24px 80px rgba(0,0,0,.5),
    0 0 0 1px rgba(252,203,59,0.12);
}

.mediaFrame video{
  width:100%;
  height:auto;
  display:block;
}

/* Play Button Overlay */
.playButton{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:88px;
  height:88px;
  border:none;
  background:none;
  cursor:pointer;
  padding:0;
  z-index:10;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.playButton__inner{
  width:100%;
  height:100%;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.playButton__inner::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:50%;
  padding:1px;
  background:linear-gradient(135deg, rgba(252,203,59,0.4), rgba(252,203,59,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity:0;
  transition: opacity 0.4s ease;
}

.playButton svg{
  color:rgba(252,203,59,0.95);
  margin-left:3px;
  filter:drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: all 0.3s ease;
}

.playButton:hover .playButton__inner{
  background:rgba(255,255,255,0.12);
  border-color:rgba(252,203,59,0.4);
  transform:scale(1.08);
  box-shadow:
    0 12px 48px rgba(0,0,0,0.4),
    0 0 0 8px rgba(252,203,59,0.08),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.playButton:hover .playButton__inner::before{
  opacity:1;
}

.playButton:hover svg{
  color:rgba(252,203,59,1);
  transform:scale(1.1);
}

.playButton:active .playButton__inner{
  transform:scale(1.02);
}

.playButton.hidden{
  opacity:0;
  pointer-events:none;
  transform:translate(-50%, -50%) scale(0.9);
}

/* Subtle pulse animation */
@keyframes playPulse{
  0%, 100%{
    box-shadow:
      0 8px 32px rgba(0,0,0,0.3),
      0 0 0 0 rgba(252,203,59,0.4),
      inset 0 1px 0 rgba(255,255,255,0.1);
  }
  50%{
    box-shadow:
      0 8px 32px rgba(0,0,0,0.3),
      0 0 0 12px rgba(252,203,59,0),
      inset 0 1px 0 rgba(255,255,255,0.1);
  }
}

.playButton__inner{
  animation: playPulse 3s ease-in-out infinite;
}

.playButton:hover .playButton__inner{
  animation:none;
}

.svgHold{
  width:100%;
  aspect-ratio: 16 / 9;
  display:grid;
  place-items:center;
  padding: 18px;
  opacity:0;
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn{
  to{
    opacity:1;
  }
}

.svgHold svg{
  width:min(520px, 92%);
  height:auto;
  filter: drop-shadow(0 0 30px rgba(252,203,59,0.15));
  transition: filter 0.5s ease;
}

.svgHold svg:hover{
  filter: drop-shadow(0 0 40px rgba(252,203,59,0.25));
}

/* Social Links */
.socialLinks{
  display:flex;
  gap:20px;
  justify-content:center;
  align-items:center;
  margin-top:24px;
  margin-bottom:24px;
  padding-top:24px;
  padding-bottom:18px;
  border-top:1px solid rgba(255,255,255,0.08);
  opacity:0;
  transform:translateY(10px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

@keyframes fadeInUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.socialLinks a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  color:var(--text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration:none;
  position:relative;
  overflow:hidden;
}

.socialLinks a::before{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:0;
  height:0;
  border-radius:50%;
  background:rgba(252,203,59,0.2);
  transform:translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.socialLinks a:active::before{
  width:100px;
  height:100px;
}

.socialLinks a:hover{
  background:rgba(252,203,59,0.15);
  border-color:var(--accent);
  color:var(--accent);
  transform:translateY(-3px);
  box-shadow:0 8px 24px rgba(252,203,59,0.2);
}

.socialLinks a:focus{
  outline:2px solid rgba(252,203,59,0.5);
  outline-offset:3px;
}

.socialLinks a:active{
  transform:translateY(-1px);
}

.socialLinks svg{
  transition: transform 0.3s ease;
}

.socialLinks a:hover svg{
  transform:scale(1.1);
}


/* Reveal */
.reveal{
  max-height: 0;
  opacity:0;
  overflow: hidden;
  transition: max-height 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease, margin 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.show{
  max-height: 500px;
  opacity:1;
  margin-top: 18px;
}

/* Accessibility */
.srOnly{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* ===== Mailchimp - styled to match site ===== */
.mcShell{
  margin: 8px auto 10px;
}

.mcForm{ margin:0; }

.mcScroll{
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}

/* Make each field match your inputs */
.mcField{ margin:0; }

.mcInput{
  width:min(320px, 100%);
  padding:14px 16px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.45);
  color:white;
  font-size:14px;
  outline:none;
  transition: all 0.3s ease;
}

.mcInput:focus{
  border-color:rgba(252,203,59,0.4);
  background:rgba(0,0,0,.55);
  box-shadow: 0 0 0 3px rgba(252,203,59,0.1);
}

.mcInput::placeholder{ color: rgba(255,255,255,.45); }

/* Button */
.mcButton{
  padding:14px 18px;
  border-radius:10px;
  border:none;
  background:var(--accent);
  color:#17140a;
  font-weight:650;
  cursor:pointer;
  -webkit-appearance:none;
  appearance:none;
  transition: all 0.3s ease;
}

.mcButton:hover{ 
  filter: brightness(1.05);
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(252,203,59,0.3);
}

.mcButton:active{
  transform:translateY(0);
  box-shadow:0 2px 8px rgba(252,203,59,0.2);
}

.mcButton:focus{
  outline:2px solid rgba(252,203,59,0.5);
  outline-offset:2px;
}

/* Responses */
.mcResponses{
  width:100%;
  display:flex;
  justify-content:center;
}

.mcResponse{
  margin: 4px auto 8px;
  font-size:13px;
  min-height:18px;
  color: rgba(255,255,255,.70);
  max-width: 620px;
}

.mcResponse.ok{ color: rgba(252,203,59,.95); }
.mcResponse.bad{ color: rgba(255,255,255,.75); }

/* Kill the classic Mailchimp look if it sneaks in */
#mc_embed_signup{
  background: transparent !important;
  color: inherit !important;
  width: auto !important;
  font: inherit !important;
}
#mc_embed_signup .indicates-required{ display:none !important; }
#mc_embed_signup .mc-field-group label{ display:none !important; }
#mc_embed_signup input{ box-shadow:none !important; }

/* Countdown */
.countdown{
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display:flex;
  justify-content:center;
  gap:28px;
  font-variant-numeric:tabular-nums;
  margin-top: 24px;
}

.unit{
  display:flex; 
  flex-direction:column;
}

.num{
  font-size:40px; 
  font-weight:700;
  transition: all 0.3s ease;
  color:var(--accent);
}

.lbl{
  font-size:12px;
  letter-spacing:.12em;
  color:#aaa;
  margin-top:6px;
}

.date{
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top:22px;
  color:var(--accent);
  letter-spacing:.18em;
  font-size:14px;
  font-weight:600;
  text-shadow: 0 2px 10px rgba(252,203,59,0.2);
}

/* Mobile */
@media (max-width: 520px){
  .wrap{ padding:120px 20px 60px; }
  h1{ font-size:42px; line-height:1.2; margin-top:20px; }
  .countdown{
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1); 
    gap:12px; 
    flex-wrap:wrap;
  }
  .num{ font-size:34px; }
  .mcInput{ 
    width:100%;
    padding:11px 13px;
    font-size:13px;
  }
  .mcButton{
    width:100%;
    padding:11px 14px;
    font-size:14px;
  }
  .mcScroll{
    gap:8px;
  }
  .socialLinks{ 
    gap:16px;
    margin-bottom:30px;
  }
  .socialLinks a{ 
    width:44px; 
    height:44px; 
  }
}

/* Page Load Animation */

@keyframes fadeInScale{
  from{
    opacity:0;
    transform:scale(0.95);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}



/* Privacy link */
a[href="privacy.html"]:hover{
  color:rgba(252,203,59,1) !important;
}