/* RESET */
*{box-sizing:border-box;margin:0;padding:0}

/* BODY */
body{
  font-family:Arial,Helvetica,sans-serif;
  background:linear-gradient(135deg,#ff00cc,#3333ff,#00ffd5,#ffe600);
  background-size:400% 400%;
  animation:bgMove 10s ease infinite;
  color:#fff;
  overflow-x:hidden;
}

@keyframes bgMove{
  0%{background-position:0 50%}
  50%{background-position:100% 50%}
  100%{background-position:0 50%}
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(12px);
  z-index:1000;
}

.nav-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
}

.logo{
  font-weight:900;
  font-size:1.3rem;
}

/* NAV LINKS */
.nav-links{
  list-style:none;
  display:flex;
  gap:25px;
}

.nav-links li a{
  text-decoration:none;
  color:#fff;
  font-weight:800;
  transition:0.2s;
}

/* NEON HOVER */
.nav-links li a:hover{
  color:#00ffd5;
  text-shadow:
    0 0 5px #00ffd5,
    0 0 10px #00ffd5,
    0 0 20px #00ffd5,
    0 0 40px #00ffd5;
}

/* HAMBURGER */
.menu-toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
}

.menu-toggle span{
  width:28px;
  height:3px;
  background:white;
  transition:0.3s;
}

/* HAMBURGER ANIMATION */
.menu-toggle.active span:nth-child(1){
  transform:rotate(45deg) translate(6px,6px);
}
.menu-toggle.active span:nth-child(2){
  opacity:0;
}
.menu-toggle.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* MOBILE MENU */
@media (max-width:768px){
  .menu-toggle{display:flex;}

  .nav-links{
    position:fixed;
    top:0;
    right:-100%;
    height:100vh;
    width:260px;
    background:rgba(0,0,0,0.95);
    backdrop-filter:blur(15px);
    flex-direction:column;
    align-items:flex-start;
    padding:80px 25px;
    gap:20px;
    transition:right 0.4s ease;
  }

  .nav-links.active{
    right:0;
  }

  .nav-links li a{
    font-size:1.3rem;
  }
}

/* MAIN CONTENT */
.container{
  max-width:1200px;
  margin:auto;
  padding:100px 20px 20px;
  text-align:center;
}

.hero{padding:40px 20px}

.title{
  font-size:clamp(2.4rem,8vw,6rem);
  font-weight:900;
  line-height:1.05;
  text-transform:uppercase;
  color:#ffe600;
  text-shadow:
    0 2px 0 #ff0088,
    0 4px 0 #00c3ff,
    0 6px 0 #000,
    0 12px 25px rgba(0,0,0,.35);
  transform:skew(-5deg);
}

.subtitle{
  font-size:clamp(1rem,3vw,1.6rem);
  margin-top:18px;
  font-weight:700;
}

.cta{
  display:inline-block;
  margin-top:28px;
  padding:16px 28px;
  border-radius:999px;
  background:#00ff99;
  color:#111;
  text-decoration:none;
  font-weight:900;
  font-size:1.2rem;
  box-shadow:0 8px 0 #00aa66;
  transition:.2s;
}

.cta:hover{
  transform:translateY(3px);
  box-shadow:0 5px 0 #00aa66;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
  margin:40px 0;
}

.card{
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(8px);
  border:3px solid rgba(255,255,255,.3);
  padding:24px;
  border-radius:24px;
  box-shadow:0 12px 24px rgba(0,0,0,.25);
}

.quote{
  font-size:1.25rem;
  font-weight:800;
  color:#fff700;
  text-shadow:2px 2px 0 #ff0077;
}

.video-wrap{
  margin:40px auto;
  max-width:900px;
  border:6px solid #fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}

video{
  display:block;
  width:100%;
  height:auto;
  background:#000;
}

.footer{
  padding:30px 15px 60px;
  font-size:1.1rem;
  font-weight:700;
}

.badge{
  display:inline-block;
  background:#ff3300;
  padding:10px 18px;
  border-radius:14px;
  margin:10px;
  font-weight:900;
  transform:rotate(-3deg);
  box-shadow:0 6px 0 #9e1f00;
}

/* SMALL SCREEN TWEAKS */
@media (max-width:600px){
  .hero{padding:20px 10px}
  .card{padding:18px}
}
