:root {
    --font-display: "Chewy", system-ui;
    --font-hand: "Handlee", cursive;
    --muted: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    height: auto;
}

input,
button {
    border: none;
    outline: none;
    font: inherit;
}

body {
    font-family: var(--font-display);
    color: #111;
    position: absolute;
    width: 100%;
    padding: 24px;
}

#page-background {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../imgs/mainBannerImg.png');
    filter: blur(6px);
    z-index: 1;
}

#page-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
    padding-bottom: 50px;;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px
}

.logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff
}

.logo img {
    object-fit: contain
}

.brand .title {
    color: #fff;
    font-size: 1.5rem;
    line-height: 22px;
}

.brand .subtitle {
    font-size: 1.15rem;
    font-family: var(--font-hand);
    font-weight: 800;
}

.nav-actions {
    display: flex;
    gap: 15px
}

.btn {
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-family: inherit;
    border: none;
    cursor: pointer;
    color: #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease-in-out;
    letter-spacing: 0.5px;
}

.btn-buy {
    background: linear-gradient(180deg, #ffb86b, #ff8a3d);
}

.btn-green {
    background: linear-gradient(180deg, #2eb872, #208a58);
}

.btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.mb-vs{ display: none;}
.cards {
    padding: 40px 20px;
    border-radius: 24px;
    background-color: white;
    border: 3px solid rgba(0, 0, 0, 0.6);
}
.card-title {
    text-align: center;
    color: #b57a51;
    font-size: 2.4rem;
    margin-bottom: 12px
}

.cards.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 3px solid rgba(255, 255, 255, 0.4);
}
.hero img {
    width: 260px;
    max-width: 60vw
}
.hero p {
    max-width: 720px;
    font-size: 1.8rem;
    line-height: 1.2;
    letter-spacing: 1px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: center
}

.hero-actions .btn {
    font-size: 1.2rem
}

.hero-link {
    margin-top: 10px;
    display: block;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: underline
}
.contract-pill {
    display: inline-block;
    background: #ffd8df;
    min-width: 60%;
    padding: 15px 18px;
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    font-weight: 700;
    font-size: 1.4rem;
}
.roadmap {
    margin-top: 20px;
    padding: 18px;
    border-radius: 12px;
}
.roadmap h3 {
    text-align: center;
    margin-bottom: 14px;
    font-weight: 800;
    font-size: 1.5rem;
}

.timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
}

.milestone {
    flex: 1;
    min-width: 100px;
    text-align: center;
    position: relative;
    padding: 10px 0
}

.milestone .dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.milestone p {
    margin-top: 6px;
    font-size: 1rem;
    font-weight: 500
}

.milestone small {
    display: block;
    font-family: var(--font-hand);
    font-size: 0.9rem;
    color: var(--muted)
}
.buy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 420px;
  margin: 20px auto;
  padding: 26px 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.input-group {
  width: 100%;
  text-align: left;
}

.input-group label {
  display: block;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.input-group input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.6);
  background: #f8f8f8;
  background: white;
  color: #000;
  outline: none;
  transition: 0.2s;
}

.input-group input:focus {
  border-color: var(--accent);
  background: #fff9f2;
}

.input-group input[disabled] {
  opacity: 0.8;
  background: #f4f4f4;
  background: whitesmoke;
  color: #333;
  cursor: not-allowed;
}
.launch-info {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--muted);
  font-family: var(--font-hand);
  line-height: 1.4;
}
.buy-row {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: center
}

.buy-row .btn {
    font-size: 1.1rem
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 12px
}

.step {
    font-family: var(--font-hand);
    font-size: 1.2rem;
    padding: 14px;
    border-radius: 12px;
    color: #111;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.step.step-1 {
    background: linear-gradient(90deg, #ffd6dc, #ffdfea)
}

.step.step-2 {
    background: linear-gradient(90deg, #d7ffe9, #eafff5)
}

.step.step-3 {
    background: linear-gradient(90deg, #e6f7ff, #f2fbff)
}

.step-title {
    font-family: var(--font-display);
    margin-bottom: 8px
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
}
.social-icons{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.socials a {
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.2rem;
}

footer {
    text-align: center;
    font-family: var(--font-hand);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    padding: 20px 10px
}

.floating-buy {
    position: fixed;
    right: 22px;
    bottom: 22px;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    border: none;
    font-size: 1.2rem;
}
.heart {
  display: inline-block;
  animation: beat 1.2s infinite ease-in-out;
}

@keyframes beat {
  0%, 40%, 80%, 100% { transform: scale(1); }
  20%, 60% { transform: scale(1.3); }
}

@media (max-width: 700px) {
    .mb-hd{ display: none;}
    .mb-vs{ display: inline;}
    .timeline {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px
    }
    .contract-pill{ 
        max-width: 100%;
        overflow: hidden;
        font-size: 1rem;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .input-group label { font-size: 0.95rem; }
  .input-group input { font-size: 1rem; }
}
@media (max-width: 450px ){
    .hero p{
        font-size: 1.2rem;
    }
    .step{
        font-size: 1rem;
    }
    footer{
        font-size: 1rem;
    }
}
@media (max-width: 380px) {
    .hero p{ font-size: 1.1rem;}
}





/* WALLET SELECTION MODAL */
.wallet-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  backdrop-filter: blur(4px);
}

.wallet-modal.active {
  display: flex;
  animation: fadeIn 0.25s ease-in-out;
}

.wallet-modal-content {
  position: relative;
  background: #fff;
  border: 2px solid #000;
  border-radius: 18px;
  padding: 30px 25px;
  max-width: 320px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  animation: popUp 0.3s ease-in-out;
}

.wallet-modal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #111;
}

.wallet-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wallet-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid #000;
  border-radius: 12px;
  padding: 10px 16px;
  background: #fff9f2;
  font-family: var(--font-display);
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.2s;
}

.wallet-btn:hover {
  background: var(--mint);
  transform: translateY(-2px);
}

.wallet-btn img {
  width: 28px;
  height: 28px;
}

.close-wallet-modal {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.3rem;
  cursor: pointer;
  color: #000;
  transition: 0.2s;
}

.close-wallet-modal:hover {
  color: #ff7b00;
}

@keyframes popUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
