:root{
  --bg:#070817;
  --bg2:#101b3d;
  --cyan:#00e5ff;
  --pink:#ff2faf;
  --purple:#8a3ffc;
  --lime:#c6ff3d;
  --white:#f8f8f8;
  --glass:rgba(255,255,255,.09);
  --border:rgba(255,255,255,.18);
}

*{box-sizing:border-box;margin:0;padding:0}

html,body{
  min-height:100%;
  font-family:Poppins,system-ui,sans-serif;
  background:var(--bg);
  color:var(--white);
}

body{
  overflow-x:hidden;
}

#background{
  position:fixed;
  inset:0;
  z-index:-3;
  background:
    radial-gradient(circle at 20% 15%, rgba(0,229,255,.35), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(255,47,175,.28), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(138,63,252,.32), transparent 40%),
    linear-gradient(160deg,#050611,#0a1230 50%,#190b34);
}

#glow{
  position:fixed;
  inset:auto -20% -20% -20%;
  height:45vh;
  z-index:-2;
  background:radial-gradient(circle, rgba(0,229,255,.22), transparent 65%);
  filter:blur(40px);
  animation:pulse 6s ease-in-out infinite;
}

#particles{
  position:fixed;
  inset:0;
  z-index:-1;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size:42px 42px;
  opacity:.12;
}

#app{
  min-height:100vh;
}

.screen{
  min-height:100vh;
  padding:34px 22px 90px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  animation:fadeUp .55s ease both;
}

.splash{
  justify-content:center;
}

.logo{
  width:160px;
  max-width:45vw;
  margin-bottom:24px;
  border-radius:34px;
  filter:drop-shadow(0 0 28px rgba(0,229,255,.45));
  animation:float 4s ease-in-out infinite;
}

h1{
  font-family:"Bebas Neue",sans-serif;
  font-size:clamp(58px,16vw,104px);
  line-height:.82;
  letter-spacing:2px;
  color:var(--cyan);
  text-shadow:0 0 22px rgba(0,229,255,.65);
}

.splash h2{
  font-family:"Bebas Neue",sans-serif;
  font-size:clamp(42px,12vw,76px);
  line-height:.9;
  letter-spacing:3px;
  color:var(--pink);
  text-shadow:0 0 22px rgba(255,47,175,.6);
  margin-bottom:22px;
}

.welcome{
  max-width:520px;
  margin:8px auto;
  font-size:17px;
  line-height:1.6;
  color:rgba(255,255,255,.86);
}

.welcome strong{
  color:var(--lime);
}

button{
  font-family:Poppins,sans-serif;
}

#enterButton{
  margin-top:34px;
  border:0;
  border-radius:999px;
  padding:18px 30px;
  font-size:17px;
  font-weight:800;
  color:#07101f;
  background:linear-gradient(90deg,var(--cyan),var(--pink));
  box-shadow:0 0 28px rgba(0,229,255,.45),0 0 40px rgba(255,47,175,.22);
  cursor:pointer;
  transition:transform .25s ease, filter .25s ease;
}

#enterButton:active{
  transform:scale(.96);
}

.home{
  align-items:stretch;
  max-width:720px;
  margin:0 auto;
}

.home header{
  margin:8px 0 20px;
  text-align:left;
}

.home header h2{
  font-family:"Bebas Neue",sans-serif;
  font-size:38px;
  letter-spacing:1px;
  color:var(--cyan);
  text-shadow:0 0 18px rgba(0,229,255,.45);
}

#greeting{
  margin-top:6px;
  color:rgba(255,255,255,.75);
  font-size:16px;
}

.now,.next{
  text-align:left;
  border:1px solid var(--border);
  background:var(--glass);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-radius:26px;
  padding:22px;
  margin-bottom:16px;
  box-shadow:0 16px 42px rgba(0,0,0,.26);
}

.now{
  background:
    linear-gradient(135deg,rgba(0,229,255,.20),rgba(255,255,255,.07));
}

.next{
  background:
    linear-gradient(135deg,rgba(255,47,175,.17),rgba(255,255,255,.07));
}

.label{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  font-weight:800;
  color:var(--lime);
  margin-bottom:8px;
}

.now h3,.next h3{
  font-size:30px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:10px;
}

.card{
  min-height:118px;
  border:1px solid var(--border);
  border-radius:26px;
  background:rgba(255,255,255,.09);
  color:white;
  font-size:38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:10px;
  cursor:pointer;
  box-shadow:0 14px 32px rgba(0,0,0,.22);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card span{
  font-size:15px;
  font-weight:700;
}

.card:active{
  transform:scale(.96);
  border-color:rgba(0,229,255,.7);
  box-shadow:0 0 24px rgba(0,229,255,.25);
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

@keyframes pulse{
  0%,100%{opacity:.7;transform:scale(1)}
  50%{opacity:1;transform:scale(1.12)}
}

@media(min-width:760px){
  .cards{
    grid-template-columns:repeat(3,1fr);
  }

  .card:hover{
    transform:translateY(-5px);
    border-color:rgba(0,229,255,.55);
    box-shadow:0 0 28px rgba(0,229,255,.22);
  }
}
.hero{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
}

.date-badge{
    background:rgba(255,255,255,.12);
    padding:10px 14px;
    border-radius:16px;
    font-weight:700;
    border:1px solid rgba(255,255,255,.15);
}

.status-card{
    margin-bottom:18px;
}

.status-card p{
    margin-top:8px;
    opacity:.8;
    line-height:1.4;
}

.quick-actions{

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:14px;

    margin:10px 0 22px;

}

.action-btn{

    border:none;

    border-radius:24px;

    padding:20px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:10px;

    font-size:34px;

    font-weight:700;

    background:linear-gradient(
    135deg,
    rgba(0,229,255,.25),
    rgba(255,47,175,.18));

    color:white;

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

}

.action-btn span{

    font-size:15px;

}
/* ==========================
   MODAL
========================== */

.modal{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.75);

    display:flex;
    justify-content:center;
    align-items:center;

    padding:24px;

    z-index:999;

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

}

.hidden{

    display:none;

}

.modal-card{

    width:100%;
    max-width:420px;

    background:rgba(18,25,48,.95);

    border:1px solid rgba(255,255,255,.15);

    border-radius:28px;

    padding:30px;

    position:relative;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

    animation:fadeUp .3s ease;

}

.close-btn{

    position:absolute;

    top:14px;
    right:14px;

    width:40px;
    height:40px;

    border-radius:50%;

    border:none;

    cursor:pointer;

    background:rgba(255,255,255,.12);

    color:white;

    font-size:18px;

}

.modal-card h2{

    margin-bottom:16px;

}

.modal-card p{

    line-height:1.6;

    opacity:.9;

}
#timeline{

    display:flex;
    flex-direction:column;
    gap:14px;

    margin:25px 0;

}

.timeline-item{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    border-radius:22px;

    padding:18px;

    transition:.3s;

}

.timeline-item.active{

    border-color:var(--cyan);

    background:rgba(0,229,255,.18);

    box-shadow:0 0 25px rgba(0,229,255,.25);

}

.timeline-hour{

    font-size:13px;

    color:var(--lime);

    font-weight:700;

    margin-bottom:8px;

}

.timeline-title{

    font-size:22px;

    font-weight:700;

}

.timeline-description{

    margin-top:8px;

    opacity:.8;

    line-height:1.5;

}
/* ==========================
   HOME FINAL
========================== */

.kit-top-btn{
    align-self:flex-end;
    border:none;
    border-radius:999px;
    padding:13px 20px;
    margin-bottom:20px;
    font-weight:900;
    color:#08111F;
    background:linear-gradient(135deg,var(--lime),var(--cyan));
    box-shadow:0 0 28px rgba(198,255,61,.35);
}

.home-title{
    width:100%;
    text-align:left;
    margin-bottom:22px;
}

.home-title h2{
    font-family:"Bebas Neue",sans-serif;
    font-size:42px;
    line-height:.95;
    letter-spacing:1px;
    color:var(--cyan);
    text-shadow:0 0 18px rgba(0,229,255,.45);
}

.main-now-card{
    width:100%;
    margin-bottom:20px;
}

.home-actions-grid{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:14px;
}

.action-tile,
.party-screen-btn{
    border:none;
    border-radius:26px;
    min-height:118px;
    padding:20px;
    color:white;
    font-weight:800;
    font-size:16px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:10px;
    text-align:center;
    border:1px solid rgba(255,255,255,.16);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 16px 34px rgba(0,0,0,.25);
}

.tile-icon{
    font-size:34px;
    line-height:1;
}

.music-tile{
    background:linear-gradient(135deg,rgba(198,255,61,.25),rgba(0,229,255,.14));
}

.photos-tile{
    background:linear-gradient(135deg,rgba(255,47,175,.28),rgba(138,63,252,.18));
}

.party-screen-btn{
    width:100%;
    margin-bottom:14px;
    min-height:105px;
    flex-direction:row;
    font-size:19px;
    background:linear-gradient(135deg,rgba(0,229,255,.28),rgba(138,63,252,.35),rgba(255,47,175,.22));
    box-shadow:0 0 34px rgba(0,229,255,.22);
}

.program-tile{
    background:linear-gradient(135deg,rgba(0,229,255,.20),rgba(255,255,255,.08));
}

.memories-tile{
    background:linear-gradient(135deg,rgba(138,63,252,.30),rgba(255,47,175,.14));
}

.action-tile:active,
.party-screen-btn:active,
.kit-top-btn:active{
    transform:scale(.96);
}

.home-footer{
    margin-top:22px;
    font-size:12px;
    opacity:.6;
    text-align:center;
}
/* ==========================
   MINI TIMELINE HOME
========================== */

.mini-timeline-wrap{
    width:100%;
    margin:0 0 22px;
    padding:18px;
    border-radius:24px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.mini-timeline-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:12px;
    font-weight:800;
    letter-spacing:.8px;
    text-transform:uppercase;
    color:rgba(255,255,255,.75);
    margin-bottom:14px;
}

.mini-timeline{
    position:relative;
    height:10px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    overflow:visible;
}

#dayProgressBar{
    position:absolute;
    left:0;
    top:0;
    height:10px;
    width:0%;
    border-radius:999px;
    background:linear-gradient(90deg,var(--cyan),var(--pink),var(--lime));
    box-shadow:0 0 18px rgba(0,229,255,.45);
    transition:width .5s ease;
}

#timelineDots{
    position:absolute;
    inset:0;
}

.timeline-dot{
    position:absolute;
    top:50%;
    transform:translate(-50%,-50%);
    width:18px;
    height:18px;
    border-radius:50%;
    background:#121a35;
    border:2px solid rgba(255,255,255,.55);
    box-shadow:0 0 14px rgba(255,255,255,.22);
}

.timeline-dot.done{
    border-color:var(--lime);
    box-shadow:0 0 16px rgba(198,255,61,.55);
}

.timeline-dot.active{
    width:24px;
    height:24px;
    border-color:var(--cyan);
    background:var(--cyan);
    box-shadow:0 0 22px rgba(0,229,255,.75);
}

.timeline-dot span{
    position:absolute;
    top:26px;
    left:50%;
    transform:translateX(-50%);
    white-space:nowrap;
    font-size:10px;
    color:rgba(255,255,255,.68);
}

.timeline-dot.active span{
    color:white;
    font-weight:800;
}
.timeline-dot{
    width:30px;
    height:30px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.timeline-dot.done{
    background:rgba(198,255,61,.18);
    border-color:var(--lime);
}

.timeline-dot.active{
    width:40px;
    height:40px;
    background:linear-gradient(135deg,var(--cyan),var(--pink));
    border-color:white;
    transform:translate(-50%,-50%) scale(1.05);
}

.timeline-dot .dot-emoji{
    position:static;
    transform:none;
    font-size:17px;
    color:inherit;
}

.timeline-dot small{
    position:absolute;
    top:44px;
    left:50%;
    transform:translateX(-50%);
    white-space:nowrap;
    font-size:11px;
    font-weight:800;
    color:white;
    text-shadow:0 0 12px rgba(0,229,255,.8);
}
.organizer{
  position:fixed;
  inset:0;
  z-index:2000;
  background:rgba(0,0,0,.78);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  backdrop-filter:blur(10px);
}

.organizer.hidden{
  display:none;
}

.organizer-card{
  width:100%;
  max-width:430px;
  background:rgba(12,18,40,.96);
  border:1px solid rgba(255,255,255,.16);
  border-radius:28px;
  padding:28px;
  color:white;
  box-shadow:0 20px 60px rgba(0,0,0,.5);
  position:relative;
}

.organizer-card h2{
  margin-bottom:20px;
}

.organizer-card label{
  display:block;
  margin-top:14px;
  margin-bottom:6px;
  font-size:13px;
  font-weight:700;
  opacity:.85;
}

.organizer-card input{
  width:100%;
  padding:13px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:white;
}

.organizer-card button:not(.close-btn){
  width:100%;
  margin-top:12px;
  padding:13px;
  border-radius:16px;
  border:0;
  font-weight:800;
  background:linear-gradient(135deg,var(--cyan),var(--pink));
  color:#08111F;
}

.organizer-card hr{
  border:0;
  border-top:1px solid rgba(255,255,255,.12);
  margin:20px 0;
}

.organizer-note{
  margin-top:14px;
  font-size:12px;
  opacity:.6;
  text-align:center;
}