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

/* GLOBAL */
html, body {
  height: 100%;
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* HERO SECTION */
.hero-section {
  height: auto;
  position: relative;
  margin-bottom: 0; /* Remove gap after hero */
  padding-bottom: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top;
  display: block;
  margin-bottom: 50px; /* Pull next section closer */
}
@media (max-width: 768px) {
  .hero-section {
    height: auto;
  }

  .hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
}

/* LOGO OVERLAY */
.logo-overlay {
  position: absolute;
  top: 10px;
  left: 20px;
  max-width: 150px;
  z-index: 2;
  width: 100%;
}

.logo-mobile {
  display: none;
  text-align: center;
  padding: 10px 0;
  background-color: #000;
}

.logo-mobile img {
  max-width: 100px;
}

@media (max-width: 600px) {
  .logo-overlay {
    display: none;
  }

  .logo-mobile {
    display: block;
  }
}

/* SOCIAL ICONS */
.social-links {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 20px;
  z-index: 10;
}

.social-links svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.social-links svg:hover {
  opacity: 1;
  transform: scale(1.1);
  cursor: pointer;
}

@media (max-width: 600px) {
  .social-links {
    position: static;
    margin-top: 40px;
    justify-content: center;
  }
}

/* Launch / Mint Section */
.launch-section {
  background-color: #000;
  color: #00FF99;
  text-align: center;
  padding-top: 0;
  padding-bottom: 40px;
  margin-top: -40px; /* Pull mint section into hero space */
}

.mint-wrapper {
  margin-top: 0;
  padding-top: 0;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.mint-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.mint-subtitle {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.mint-details {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.4;
  color: #aaa;
}

.mint-form-box {
  background: #0e0e15;
  border-radius: 12px;
  padding: 30px;
  display: inline-block;
  max-width: 400px;
  width: 100%;
  margin: 0 auto 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.form-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.mint-amount {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.mint-amount input {
  width: 60px;
  text-align: center;
  background: #1a1a2f;
  color: #fff;
  border: 1px solid #333;
  padding: 6px;
  border-radius: 6px;
}

.mint-btn {
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  background: #1a1a2f;
  color: white;
  border: 1px solid #333;
  border-radius: 6px;
  cursor: pointer;
}

.price-label {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #aaa;
}

.wallet-btn, .mint-now-btn {
  width: 100%;
  padding: 10px 20px;
  margin-bottom: 0.5rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.wallet-btn {
  background: #1a1a2f;
  color: #ccc;
  border: 1px solid #333;
}

.mint-now-btn {
  background: #3366ff;
  color: #fff;
}

.mint-benefits {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
  color: #bbb;
}

.mint-benefits li {
  margin-bottom: 6px;
}

.skulls-preview {
  margin-top: 30px;
}

.skulls-preview img {
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* MOBILE MINT LAYOUT */
@media (max-width: 600px) {
  .mint-title {
    font-size: 1.6rem;
  }

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

  .mint-form-box {
    padding: 20px;
  }
}

/* SKULL FOOTER IMAGE */
.skull-footer-image {
  margin-top: 30px;
  text-align: center;
}

.skull-footer-image img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  margin: 0 auto;
}
