/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #0d0c1d, #1e2a78, #1c1e52);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  color: #ffffff;
  overflow-x: hidden;
}

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

/* Header Layout */
header {
  position: relative;
  text-align: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.mint-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
}

.mint-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.mint-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #a733ff, #e600ff);
  color: #0d0c1d;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.mint-button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #d400ff, #6e00ff);
}

/* Social Icons Right */
.header-socials-right {
  position: absolute;
  top: 1rem;
  right: 2rem;
  display: flex;
  gap: 0.8rem;
}

.social-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a733ff, #e600ff);
  padding: 6px;
  transition: transform 0.3s, background 0.3s;
}

.social-img:hover {
  transform: scale(1.15);
  background: linear-gradient(135deg, #d400ff, #6e00ff);
}

/* Sticky Navigation */
.sticky-nav {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  z-index: 100;
}

.nav-button {
  background: linear-gradient(135deg, #4b6cb7, #182848);
  color: #ffffff;
  padding: 0.8rem 1.6rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.nav-button:hover {
  background: linear-gradient(135deg, #ffcc00, #ffa600);
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem;
}

.main-banner {
  width: 60%;
  max-width: 1000px;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  margin-top: 2rem;
  transition: transform 0.3s ease;
}

.main-banner:hover {
  transform: scale(1.02);
}

/* Sections */
.section {
  padding: 5rem 2rem;
  text-align: center;
}

.previews {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.preview-card {
  background: #1f1f2e;
  border-radius: 1rem;
  width: 280px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.preview-card:hover {
  transform: scale(1.05);
}

.preview-card img {
  width: 100%;
  border-radius: 1rem 1rem 0 0;
}

.preview-card p {
  padding: 1rem;
  font-weight: 500;
}

.about-image {
  width: 30%;
  max-width: 1000px;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  margin-top: 2rem;
  transition: transform 0.3s ease;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-button {
  background: linear-gradient(135deg, #269dff, #00c2ff);
  color: #0d0c1d;
  padding: 0.9rem 1.8rem;
  border-radius: 2rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}

.social-button:hover {
  background: linear-gradient(135deg, #9816f4, #5d00cc);
  transform: scale(1.05);
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-socials-right {
    margin-top: 1rem;
    justify-content: center;
  }

  .mint-timer {
    font-size: 1rem;
  }

  .mint-button {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }

  .header-image {
    width: 250px;
  }

  .sticky-nav {
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .main-banner {
    width: 90%;
    margin-top: 1.5rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .previews {
    flex-direction: column;
    align-items: center;
  }

  .preview-card {
    width: 90%;
  }

  .about-image {
    width: 100%;
  }

  footer {
    font-size: 0.8rem;
  }

  .social-button {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Optional Footer SVG Hover */
.social-icon svg {
  background: #bc24fd;
  border-radius: 50%;
  padding: 8px;
  transition: transform 0.3s, background 0.3s;
}

.social-icon:hover svg {
  transform: scale(1.15);
  background: linear-gradient(135deg, #9816f4, #5d00cc);
}

#bio .preview-card {
  width: 400px; /* Increased width */
}

#bio .preview-card img {
  height: auto;
  width: 100%;
}