/* RESET */
body,html{
  margin:0; padding:0;
  font-family:Arial;
  color:white;
  scroll-behavior:smooth;
}

/* 🔥 NAVIGATION */
.topnav{
  position:fixed;
  top:0; left:0;
  width:100%;
  padding:15px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(6px);
  z-index:20;
}

.logo{
  font-size:32px;
  font-weight:bold;
}

.nav-links a{
  color:white;
  margin-left:30px;
  font-size:20px;
  text-decoration:none;
  font-weight:bold;
  transition:0.2s;
}

.nav-links a:hover{
  color:gold;
}

/* 🔥 NEON TEXT */
.neon{
  text-shadow:0 0 12px red,0 0 24px gold;
}

/* 🔥 BACKGROUND VIDEO */
.video-container{
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  overflow:hidden;
  z-index:-1;
}

#bgvideo{
  width:100%; height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 1.2s ease;
}

/* 🔥 HERO */
.hero{
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.title{ font-size:48px; margin-bottom:20px; }

.buybtn{
  padding:15px 35px;
  background:#ff2b2b;
  color:white;
  border-radius:10px;
  font-size:22px;
  text-decoration:none;
  font-weight:bold;
  transition:0.2s;
}

.buybtn:hover{
  transform:scale(1.1);
}

/* 🔥 SECTIONS */
section{
  padding:120px 25px;
  text-align:center;
  background:rgba(0,0,0,0.55);
  margin-top:60px;
}

section h2{ 
  font-size:36px;
  margin-bottom:25px; 
}

/* 🔥 LORE TEXT */
.story p{
  max-width:900px;
  margin:auto;
  font-size:20px;
  line-height:1.6;
  margin-bottom:18px;
}

/* 🔥 GALLERY */
.slider{
  display:flex;
  overflow-x:auto;
  gap:25px;
  padding:25px;
  justify-content:center;
}

.slider img{
  height:240px;
  border-radius:12px;
}

/* 🔥 TOKENOMICS */
.buy ul{
  list-style:none;
  padding:0;
  font-size:22px;
  line-height:1.8;
}

footer{
  padding:40px 0;
  text-align:center;
  opacity:0.8;
}

/* 🔥 MOBILE MENU BUTTON */
.mobile-menu-btn{
  display:none;
  font-size:32px;
  cursor:pointer;
  margin-right:15px;
}

/* 🔥 MOBILE MENU PANEL */
.menu-panel{
  position:fixed;
  top:0; right:0;
  width:250px;
  height:100%;
  background:rgba(0,0,0,0.92);
  display:flex;
  flex-direction:column;
  padding:60px 20px;
  transform:translateX(100%);
  transition:0.3s ease;
  z-index:30;
}

.menu-panel a{
  color:white;
  text-decoration:none;
  font-size:22px;
  margin-bottom:25px;
}

.menu-panel.open{
  transform:translateX(0);
}

/* 🔥 OVERLAY */
.overlay{
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:black;
  opacity:0;
  pointer-events:none;
  transition:0.3s;
  z-index:25;
}

.overlay.show{
  opacity:0.4;
  pointer-events:auto;
}

/* 📱 MOBILE */
@media (max-width:768px){

  .mobile-menu-btn{
    display:block;
  }

  .nav-links{
    display:none;
  }

  .logo{ font-size:24px; }
  .title{ font-size:28px; padding:0 10px; }

  section{ padding:70px 15px; }
  .story p{ font-size:16px; }
  .slider img{ height:160px; }
}
