*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#0a0a0f;
  color:white;
  scroll-behavior:smooth;
}

/* ================= HEADER ================= */

header{
  position:fixed;
  width:100%;
  padding:20px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
  z-index:1000;
}

/* Brand Button */

.brand-btn{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  padding:6px 14px;
  border-radius:8px;
  transition:all 0.3s ease;
}

.brand-icon{
  width:60px;   /* Bigger */
  height:60px;
  object-fit:contain;
  transition:transform 0.4s ease;
}

.brand-text{
  font-weight:bold;
  font-size:18px;
  color:white;
  letter-spacing:1px;
  transition:all 0.3s ease;
}

/* Hover Animation */

.brand-btn:hover{
  background:rgba(255,255,255,0.05);
  box-shadow:0 0 15px rgba(0,255,255,0.4);
}

.brand-btn:hover .brand-icon{
  transform:rotate(180deg) scale(1.1);
}

.brand-btn:hover .brand-text{
  text-shadow:0 0 8px #00ffff,
              0 0 15px #ff00ff;
}

/* Navigation */

nav{
  display:flex;
}

.nav-btn{
  margin-left:20px;
  text-decoration:none;
  color:white;
  font-size:14px;
  border:1px solid #ff00ff;
  padding:6px 14px;
  border-radius:6px;
  transition:0.3s;
}

.nav-btn:hover{
  background:#ff00ff;
  color:black;
}

/* ================= HERO ================= */

.hero{
  position:relative;
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:url('neonbg.png') center center / cover no-repeat;
  animation: zoomBg 20s ease-in-out infinite alternate;
}

@keyframes zoomBg{
  from{ background-size:100%; }
  to{ background-size:110%; }
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.hero-inner{
  position:relative;
  z-index:2;
  max-width:800px;
  padding:20px;
}

.hero-kid{
  width:240px;
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
  100%{ transform: translateY(0); }
}

.hero-title{
  font-size:56px;
  font-weight:bold;
  background:linear-gradient(90deg,#ff00ff,#00ffff);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-sub{
  margin-top:20px;
  color:#ccc;
  font-size:18px;
}

.hero-btn{
  margin-top:30px;
  display:inline-block;
  padding:14px 30px;
  background:linear-gradient(90deg,#ff00ff,#00ffff);
  color:black;
  text-decoration:none;
  border-radius:8px;
  font-weight:bold;
  transition:0.3s;
}

.hero-btn:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px #ff00ff;
}

/* ================= SECTIONS ================= */

section{
  padding:120px 80px;
  text-align:center;
}

h2{
  margin-bottom:40px;
  font-size:32px;
}

/* ================= COLLECTION ================= */

.collection-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.nft-card{
  background:#111;
  padding:15px;
  border-radius:12px;
  border:1px solid #222;
  transition:0.3s;
}

.nft-card img{
  width:100%;
  border-radius:10px;
}

.nft-card:hover{
  transform:translateY(-8px);
  box-shadow:0 0 20px #ff00ff;
}

/* ================= WHITELIST ================= */

.whitelist-form{
  max-width:400px;
  margin:auto;
  display:flex;
  flex-direction:column;
}

.action-card{
  display:block;
  padding:15px;
  margin-bottom:20px;
  background:#111;
  border:1px solid #333;
  border-radius:10px;
  text-decoration:none;
  color:white;
  font-weight:bold;
  transition:0.3s;
}

.action-card:hover{
  border:1px solid #ff00ff;
  box-shadow:0 0 15px #ff00ff;
}

.whitelist-form input{
  margin-bottom:15px;
  padding:12px;
  background:#111;
  border:1px solid #333;
  color:white;
  border-radius:6px;
}

.whitelist-form button{
  padding:12px;
  background:linear-gradient(90deg,#ff00ff,#00ffff);
  border:none;
  border-radius:6px;
  font-weight:bold;
  cursor:pointer;
}

/* ================= FOOTER ================= */

footer{
  text-align:center;
  padding:40px;
  background:#111;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  header{
    flex-direction:column;
    padding:15px 20px;
  }

  nav{
    margin-top:10px;
  }

  .hero-title{
    font-size:32px;
  }

  .hero-kid{
    width:150px;
  }

  section{
    padding:80px 20px;
  }

  h2{
    font-size:24px;
  }
}