:root {
    --bg: #fff9f2;
    --bg-soft: #fff2df;
    --card: #ffffff;
    --ink: #5d4a3e;
    --muted: #8a7365;
    --peach: #ffc9a7;
    --mint: #b8f3d3;
    --blue: #bfe8ff;
    --pink: #ffd3ea;
    --shadow: 0 12px 30px rgba(190, 133, 98, 0.17);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Nunito", sans-serif;
    background: linear-gradient(180deg, var(--bg) 0%, #fffdf8 100%);
    color: var(--ink);
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section {
    padding: 4.5rem 0;
}

.section-quick {
    padding: 2.5rem 0;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(6px);
    background: rgba(255, 249, 242, 0.86);
    border-bottom: 1px solid #f6e3d4;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--ink);
    font-family: "Baloo 2", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 3px;
    box-shadow: var(--shadow);
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
}

.hero {
    padding-top: 0;
}

.hero-banner {
    width: 100%;
    margin-bottom: 3rem;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(190, 133, 98, 0.15);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 1;
}

.hero-content {
    padding-top: 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.2rem;
    align-items: center;
}


h1, h2, h3 {
    font-family: "Baloo 2", sans-serif;
    margin: 0 0 0.75rem;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2rem, 4.8vw, 3.2rem);
}

h2 {
    font-size: clamp(1.65rem, 3.6vw, 2.3rem);
}

p {
    color: var(--muted);
    line-height: 1.65;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.25rem;
}

.cta-row.center {
    justify-content: center;
}

.btn {
    border: 0;
    border-radius: 999px;
    padding: 0.72rem 1rem;
    cursor: pointer;
    font-weight: 800;
    font-family: "Nunito", sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #ffb98f 0%, #ff9ecf 100%);
    color: #4d2f24;
    box-shadow: var(--shadow);
}

.btn-soft {
    background: #fff;
    color: #6b5749;
    border: 1px solid #f4ddca;
    text-decoration: none;
    display: inline-block;
}

.btn-soft:hover {
    background: #fff9f2;
    border-color: var(--peach);
}

.hero-art {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
}

.blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
}

.blob-a {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at 30% 30%, var(--blue), var(--pink));
}

.main-logo {
    position: relative;
    z-index: 2;
    width: min(380px, 82%);
    object-fit: contain;
    filter: drop-shadow(0 14px 20px rgba(147, 98, 75, 0.25));
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.mini-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.mini-cards article {
    background: var(--card);
    border: 1px solid #f3e5d7;
    border-radius: 18px;
    padding: 0.9rem;
    box-shadow: var(--shadow);
}

.mini-cards h3 {
    margin-bottom: 0.25rem;
}

.card-image img {
    width: 100%;
    border-radius: 22px;
    border: 3px solid #fff;
    box-shadow: var(--shadow);
    background: #fff;
}

.token-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.token-quick {
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid #f6e3d4;
    border-bottom: 1px solid #f6e3d4;
}

.token-quick .token-mint-box {
    margin-bottom: 1.5rem;
}

.token-quick .token-buttons {
    margin-top: 0;
}

.token-info-card {
    background: var(--card);
    border: 2px solid #f2dfcd;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.token-info-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--ink);
    font-size: 1.5rem;
}

.token-info-card p {
    margin-bottom: 1rem;
}

.token-info-card p:last-child {
    margin-bottom: 0;
}

.purchase-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.purchase-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--muted);
    line-height: 1.6;
}

.purchase-list li::before {
    content: "🧁";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.purchase-list li strong {
    color: var(--ink);
}

.community-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--mint) 0%, var(--pink) 100%);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.community-section h3 {
    margin-top: 0;
    color: var(--ink);
}

.community-section p {
    margin-bottom: 0;
    color: var(--ink);
    font-size: 1.05rem;
}

.token-mint-box {
    margin-top: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.token-mint-box label {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.token-mint-copy {
    position: relative;
    background: var(--card);
    border: 2px solid #f2dfcd;
    border-radius: 16px;
    padding: 1.1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.token-mint-copy:hover {
    border-color: var(--peach);
    box-shadow: 0 16px 40px rgba(190, 133, 98, 0.22);
}

.token-mint-copy code {
    flex: 1;
    font-family: "Courier New", monospace;
    font-size: 0.95rem;
    color: var(--ink);
    word-break: break-all;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.copy-btn {
    background: var(--mint);
    border: 0;
    border-radius: 10px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #356f53;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: #a8ecc5;
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-feedback {
    position: absolute;
    right: 4rem;
    background: var(--ink);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.copy-feedback.show {
    opacity: 1;
}

.token-buttons {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
}

.btn-large {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
}

.gallery-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.gallery-grid figure {
    margin: 0;
    background: #fff;
    border: 1px solid #f2e2d3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.footer {
    padding: 1.8rem 0 2.5rem;
}

.footer-inner {
    border-top: 1px solid #f0dfcf;
    padding-top: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-inner img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.footer-inner p {
    margin: 0;
    font-size: 0.92rem;
}

.footer-credit {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0dfcf;
    text-align: center;
}

.footer-credit p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.footer-credit a {
    color: var(--peach);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--ink);
}

@media (max-width: 900px) {
    .hero-banner {
        margin-bottom: 2rem;
        border-radius: 0;
    }

    .banner-image {
        aspect-ratio: 3 / 1;
        min-height: 200px;
    }

    .hero-content {
        padding-top: 1rem;
    }

    .hero-grid,
    .split {
        grid-template-columns: 1fr;
    }

    .token-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .token-info-card {
        padding: 1.5rem;
    }

    .community-section {
        padding: 1.5rem;
    }

    .token-mint-box {
        max-width: 100%;
    }
    
    .token-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }

    .mini-cards {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .banner-image {
        aspect-ratio: 2.5 / 1;
        min-height: 150px;
    }

    .hero-banner {
        margin-bottom: 1.5rem;
    }
}

