/* ...new file... */

/* Reset & base */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
  background:linear-gradient(180deg,#0b1020 0%,#071026 100%);
  color:#e6eef8;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.35;
}

/* Canvas behind everything */
#particle-canvas{
  position:fixed;
  inset:0;
  z-index:0;
  display:block;
}

/* Page container */
.page{
  position:relative;
  z-index:1;
  max-width:1100px;
  margin:32px auto;
  padding:24px;
}

/* Header */
header.site{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.logo-left{display:flex;align-items:center;gap:14px}
.logo-left img{width:64px;height:64px;object-fit:contain;border-radius:8px}
.brand-title .college{font-weight:700}
.brand-title .fest{font-weight:400;font-size:0.9rem;color:#c9d6f8}

/* Nav */
nav.top a{
  color:#dfeeff;
  text-decoration:none;
  margin-left:16px;
  font-weight:600;
}
nav.top a:hover{opacity:0.9}

/* Hero */
.hero{
  display:flex;
  gap:20px;
  align-items:center;
  margin:28px 0;
  flex-wrap:wrap;
}
.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.06));
  padding:22px;
  border-radius:12px;
  min-width:320px;
  flex:1 1 520px;
  backdrop-filter:blur(6px);
  box-shadow:0 6px 30px rgba(2,6,23,0.6);
}
.hero-kicker{display:inline-block;background:#6b46ff;color:white;padding:6px 10px;border-radius:999px;font-weight:700;font-size:0.8rem}
.hero-title{font-size:1.8rem;margin:10px 0 6px}
.hero-sub{color:#c9d6f8;margin-bottom:12px}

/* CTA buttons */
.hero-cta{display:flex;gap:10px;margin-bottom:14px}
.btn-primary{
  background:#6b46ff;border:0;color:white;padding:10px 14px;border-radius:8px;cursor:pointer;font-weight:700
}
.btn-ghost{
  background:transparent;border:1px solid rgba(255,255,255,0.12);color:#e8f1ff;padding:10px 14px;border-radius:8px;cursor:pointer;font-weight:600
}

/* Countdown */
.countdown{display:flex;gap:8px;margin-top:8px}
.clock{background:rgba(255,255,255,0.04);padding:10px;border-radius:8px;text-align:center;min-width:68px}
.clock span{display:block;font-weight:800;font-size:1.1rem}
.clock small{opacity:0.8;font-size:0.75rem}

/* Right image */
.hero-right{flex:0 0 220px;display:flex;align-items:center;justify-content:center}
.hero-right img{max-width:220px;height:auto;display:block}

/* Events */
#events{margin:30px 0}
.events-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px}
.card{background:rgba(255,255,255,0.03);border-radius:10px;overflow:hidden;display:flex;flex-direction:column}
.card-media img{width:100%;height:140px;object-fit:cover;display:block}
.card-body{padding:12px;display:flex;flex-direction:column;gap:8px}
.card-title{font-weight:700}
.card-sub{font-size:0.9rem;color:#cbdcf9}
.register-btn{margin-top:auto;background:#00d4ff;border:0;padding:8px;border-radius:8px;color:#002033;cursor:pointer;font-weight:700}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:12px}
.contact-box{background:rgba(255,255,255,0.03);padding:14px;border-radius:10px}
.contact-box a{color:#bfefff;text-decoration:none}

/* Footer */
footer{margin-top:28px;color:#9fb6dd;text-align:center;font-size:0.9rem;padding:12px}

/* Responsive tweaks */
@media (max-width:720px){
  .hero{flex-direction:column}
  .hero-right{order:0;flex:1 1 auto}
  .logo-left img{width:52px;height:52px}
  .contact-grid{grid-template-columns:1fr}
}
