@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #020203;
  color: #f5e6c4;
}

/* subtle radial glow */
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(255, 214, 80, 0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 140, 255, 0.1), transparent 60%);
  z-index: -1;
}

/* HEADER */
.lp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255, 222, 130, 0.12);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.lp-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-logo img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255, 205, 80, 0.7);
  background: #f4a900;
  object-fit: cover;
}

.lp-brand-title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.12em;
}

.lp-brand-sub {
  font-size: 11px;
  opacity: 0.7;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lp-nav-link {
  font-size: 13px;
  text-decoration: none;
  color: #f5e6c4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.lp-nav-link:hover {
  opacity: 1;
}

.lp-nav-link-active {
  opacity: 1;
  color: #ffd86b;
}

.lp-connect-btn {
  padding: 10px 22px;
  border-radius: 4px;
  border: 1px solid rgba(255, 222, 130, 0.28);
  background: linear-gradient(90deg, #f0c55a, #b98a2c);
  color: #0b0701;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

/* MAIN */
.lp-main {
  max-width: 1120px;
  margin: 32px auto 40px;
  padding: 0 16px;
}

/* HERO */
.lp-hero-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 26px;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 222, 130, 0.15);
  background: radial-gradient(circle at top left, rgba(255, 210, 90, 0.25), rgba(12, 10, 6, 0.97));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}

.lp-hero-image {
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.8);
  background: #f2a900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hero-title {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.lp-hero-tag {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 222, 130, 0.45);
  background: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lp-hero-tag-alt {
  border-color: rgba(0, 140, 255, 0.65);
}

.lp-hero-text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-hero-primary,
.lp-hero-secondary {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
}

.lp-hero-primary {
  background: linear-gradient(90deg, #f0c55a, #b98a2c);
  color: #0b0701;
  border-color: rgba(255, 222, 130, 0.6);
}

.lp-hero-secondary {
  background: transparent;
  color: #f5e6c4;
  border-color: rgba(255, 222, 130, 0.3);
}

/* GRID PANELS */
.lp-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 20px;
}

.lp-panel {
  border-radius: 16px;
  border: 1px solid rgba(255, 222, 130, 0.12);
  background: rgba(4, 3, 2, 0.94);
  padding: 16px 18px 18px;
}

.lp-panel-wide {
  grid-column: 1 / -1;
}

.lp-panel-title {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 12px;
}

.lp-panel-body {
  font-size: 14px;
}

/* Wallet panel */
.lp-wallet-status {
  font-size: 14px;
  margin-bottom: 10px;
}

.lp-panel-btn {
  margin-top: 4px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 222, 130, 0.32);
  background: transparent;
  color: #f5e6c4;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

/* Launch form */
.lp-launch-form {
  display: grid;
  gap: 12px;
}

.lp-field label {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.lp-field input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 222, 130, 0.2);
  background: rgba(10, 8, 5, 0.9);
  color: #f5e6c4;
  font-size: 13px;
}

.lp-launch-btn {
  margin-top: 6px;
  width: 100%;
  padding: 10px 16px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #f0c55a, #b98a2c);
  color: #090502;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

/* Collections */
.lp-collections-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.lp-collection-card {
  border-radius: 12px;
  border: 1px dashed rgba(255, 222, 130, 0.35);
  padding: 14px;
  background: rgba(7, 6, 4, 0.9);
}

.lp-collection-title {
  font-size: 15px;
  margin-bottom: 4px;
}

.lp-collection-sub {
  font-size: 13px;
  opacity: 0.85;
}

/* FOOTER */
.lp-footer {
  max-width: 1120px;
  margin: 0 auto 28px;
  padding: 12px 16px 0;
  font-size: 11px;
  opacity: 0.7;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.lp-footer-sep {
  opacity: 0.4;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .lp-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .lp-nav {
    flex-wrap: wrap;
    gap: 10px;
  }
  .lp-hero-card {
    grid-template-columns: 1fr;
  }
  .lp-grid {
    grid-template-columns: 1fr;
  }
}


.mint-hero {
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.mint-container {
    width: 95%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

.mint-hero-img img {
    width: 310px;
    height: auto;
    border-radius: 14px;
    border: 2px solid rgba(255,255,255,0.15);
}

.mint-hero-content { flex: 1; }

.mint-hero-title {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mint-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.tag {
    padding: 6px 14px;
    border-radius: 14px;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}

.mint-hero-desc {
    color: #cccccc;
    font-size: 15px;
    max-width: 580px;
    margin-bottom: 22px;
    line-height: 1.5;
}

.mint-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
}

.mint-stat-box {
    width: 190px;
    padding: 18px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
}

.stat-label {
    color: #a8a8a8;
    font-size: 13px;
}

.stat-value {
    font-size: 20px;
    font-weight: 600;
    margin-top: 5px;
    color: #fff;
}

.mint-progress-block { margin-bottom: 18px; }

.progress-top {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #bbbbbb;
    margin-bottom: 6px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.07);
    border-radius: 14px;
}

.progress-fill {
    height: 12px;
    background: #e0a72e;
    border-radius: 14px;
}

.mint-btn {
    padding: 14px 32px;
    border: none;
    background: #e0a72e;
    color: #000;
    font-weight: 600;
    border-radius: 14px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.mint-btn:hover {
    background: #f1c04b;
}


/* ================================
   MOBILE ADAPTATION (MAX 768px)
   ================================ */
@media (max-width: 768px) {

    .lp-header {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .lp-nav {
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
    }

    .lp-connect-btn {
        margin-left: auto;
    }

    .mint-hero {
        padding: 30px 0;
    }

    .mint-container {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 20px;
    }

    .mint-hero-img img {
        width: 220px;
    }

    .mint-hero-title {
        font-size: 28px;
    }

    .mint-hero-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .mint-tags {
        justify-content: center;
    }

    .mint-stats {
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }

    .mint-stat-box {
        width: 100%;
    }

    .mint-progress-block {
        width: 100%;
    }

    .mint-btn {
        width: 100%;
        padding: 14px;
        font-size: 17px;
    }

    .mint-gallery-2rows {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .stage-section,
    .tx-section {
        padding: 0 16px 32px 16px;
    }
}

/* ================================
   EXTRA SMALL SCREENS (MAX 480px)
   ================================ */
@media (max-width: 480px) {

    .mint-container {
        padding: 18px;
    }

    .mint-hero-title {
        font-size: 24px;
    }

    .mint-hero-img img {
        width: 190px;
    }

    .mint-stat-box {
        padding: 14px;
    }

    .stat-value {
        font-size: 18px;
    }

    .progress-bar {
        height: 10px;
    }

    .progress-fill {
        height: 10px;
    }
}

/* ================================
   MOBILE ADAPTATION
   ================================ */
@media (max-width: 900px) {
  .lp-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .lp-nav {
    flex-wrap: wrap;
    gap: 8px;
  }

  .lp-connect-btn {
    margin-top: 4px;
  }

  .lp-hero-card {
    grid-template-columns: 1fr;
  }

  .lp-hero-image {
    max-width: 260px;
    margin: 0 auto;
  }

  .lp-main {
    padding-inline: 12px;
  }

  .home-stats-grid {
    grid-template-columns: 1fr;
  }

  .stage-grid {
    grid-template-columns: 1fr;
  }

  .mint-gallery-2rows {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-list {
    padding-inline: 10px;
  }
}

@media (max-width: 600px) {
  .lp-header {
    padding-inline: 14px;
  }

  .lp-brand-title {
    font-size: 18px;
  }

  .lp-hero-title {
    font-size: 24px;
  }

  .lp-hero-card {
    padding: 18px;
  }

  .home-stats-grid {
    gap: 10px;
  }

  .home-stat-box {
    padding: 10px 12px;
  }

  .mint-gallery-2rows {
    grid-template-columns: 1fr;
  }

  .stage-section,
  .tx-section {
    padding-inline: 14px;
  }

  .tx-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .mint-btn,
  .lp-hero-primary {
    width: 100%;
    text-align: center;
  }
}
