@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Orbitron:wght@500;700;800&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: "Inter", sans-serif;
  background: #0b0b10;
  color: white;
  overflow-x: hidden;
}


/* =========================
   HERO
========================= */


.hero {

  height:100vh;
  min-height:700px;

  position:relative;

  display:flex;

  align-items:center;
  justify-content:center;

  text-align:center;

  overflow:hidden;

}


.bg-video {

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:100%;

  object-fit:cover;

  filter:
  brightness(0.9)
  contrast(1.1);

  z-index:-2;

}


.overlay {

  position:absolute;

  width:100%;
  height:100%;

  background:

  radial-gradient(
    circle,
    rgba(255,0,200,0.18),
    transparent 70%
  );

  z-index:-1;

}


.hero-content {

  z-index:2;

}


.title {

  font-size:45px;

  font-weight:800;

  letter-spacing:4px;

  background:

  linear-gradient(
    90deg,
    #ff3df2,
    #4df0ff
  );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;

  animation:glow 2s infinite alternate;

}


.subtitle {

  margin-top:10px;

  opacity:.8;

  font-size:25px;

}


.btn {

  margin-top:30px;

  display:inline-block;

  padding:12px 28px;

  background:

  linear-gradient(
    90deg,
    #ff3df2,
    #4df0ff
  );

  color:black;

  border-radius:30px;

  text-decoration:none;

  font-weight:600;

}


.btn:hover {

  transform:scale(1.05);

}



/* =========================
   CYBERPUNK GLASS FOOTER
========================= */


.cyber-footer {

  position:relative;

  margin-top:40px;

  padding:70px 30px 40px;

  text-align:center;

  overflow:hidden;


  background:

  linear-gradient(
    180deg,
    rgba(10,15,30,.15),
    rgba(5,10,25,.45)
  );

}



.footer-content {


  position:relative;

  max-width:900px;

  margin:auto;

  padding:45px 35px;


  background:

  rgba(255,255,255,.05);


  border:

  1px solid rgba(0,255,255,.25);


  backdrop-filter:blur(20px);

  -webkit-backdrop-filter:blur(20px);


  border-radius:24px;


  box-shadow:

  0 0 40px rgba(0,255,255,.12),

  inset 0 0 30px rgba(255,0,255,.08);

}




.footer-glow {


  position:absolute;

  width:450px;

  height:450px;


  left:50%;

  top:50%;


  transform:translate(-50%,-50%);


  background:

  radial-gradient(
    circle,
    rgba(0,255,255,.18),
    transparent 70%
  );


  filter:blur(60px);


  animation:

  pulseGlow 5s infinite alternate;


}



.footer-title {


  font-family:"Orbitron",sans-serif;

  font-size:clamp(17px,5vw,40px);

  letter-spacing:6px;

  margin-bottom:15px;

  text-transform:uppercase;


  text-shadow:

  0 0 10px rgba(0,255,255,.8),

  0 0 25px rgba(255,0,255,.5);

}



.footer-subtitle {


  color:#63ffe5;

  font-size:20px;

  letter-spacing:3px;

  margin-bottom:30px;


}



.footer-line {


  width:120px;

  height:2px;

  margin:30px auto;


  background:

  linear-gradient(
    90deg,
    transparent,
    #00ffff,
    #ff00ff,
    transparent
  );


  box-shadow:

  0 0 15px #00ffff;


}



.footer-text {


  max-width:600px;

  margin:auto;

  color:rgba(255,255,255,.7);

  line-height:1.8;

}



.copyright {


  margin-top:35px;

  color:rgba(255, 255, 255, 0.812);

  font-size:13px;

  letter-spacing:1px;

}



/* =========================
   ANIMATIONS
========================= */


@keyframes pulseGlow {

from {

opacity:.5;

transform:translate(-50%,-50%) scale(.9);

}

to {

opacity:1;

transform:translate(-50%,-50%) scale(1.1);

}

}



@keyframes glow {

0% {

text-shadow:

0 0 10px #ff2bd6,

0 0 20px #ff2bd6;

}


50% {

text-shadow:

0 0 15px #00f7ff,

0 0 40px #00f7ff;

}


100% {

text-shadow:

0 0 15px #8b5cff,

0 0 45px #8b5cff;

}

}





/* =========================
   MOBILE OPTIMIZATION
========================= */


@media(max-width:768px){


.hero {

height:75vh;

min-height:500px;

}



.bg-video {

object-position:center center;

}


.title {

font-size:32px;

letter-spacing:3px;

}



.subtitle {

font-size:18px;

}



.cyber-footer {

margin-top:10px;

padding:

30px 20px;

}



.footer-content {

padding:35px 20px;

}



.footer-title {

font-size:26px;

letter-spacing:3px;

}



.footer-subtitle {

font-size:15px;

letter-spacing:2px;

}


}


/* CLICKABLE ELEMENTS */


a, button {

transition:

color .3s ease,

transform .3s ease,

text-shadow .3s ease;

}


a:hover,
button:hover {

text-shadow:

0 0 10px #00f7ff,

0 0 25px #ff2bd6;

}