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

body {
    font-family: 'Darker Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    color: #F1B306;
    line-height: 1.6;
    font-size: 18px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background: #fff;
    border-bottom: 2px solid #F1B306;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.btn-buy {
    background: #F1B306;
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px 0;
    text-align: center;
    background: #000;
}

.hero-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-contract {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-contract-address {
    background: #fff;
    color: #000;
    padding: 12px 20px;
    border-radius: 5px;
    font-family: monospace;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #F1B306;
}

.btn-hero-copy {
    background: #F1B306;
    color: #000;
    border: 2px solid #F1B306;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-copy:hover {
    background: #F09714;
    border-color: #F09714;
}

.tagline {
    font-size: 26px;
    margin-bottom: 30px;
    color: #F09714;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary {
    background: #F1B306;
    color: #000;
}

.btn-primary:hover {
    background: #F09714;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #F1B306;
    color: #000;
}

.about h2 {
    text-align: center;
    font-size: 56px;
    margin-bottom: 20px;
}

.about > .container > p {
    text-align: center;
    font-size: 24px;
    margin-bottom: 60px;
    color: #000;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    border: 3px solid #000;
}

.feature h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #000;
}

.feature p {
    color: #000;
    font-size: 18px;
}

/* Tokenomics Section */
.tokenomics {
    padding: 80px 0;
    background: #000;
}

.tokenomics h2 {
    text-align: center;
    font-size: 56px;
    margin-bottom: 60px;
    color: #F1B306;
}

.token-info {
    max-width: 800px;
    margin: 0 auto;
}

.info-card {
    background: #fff;
    color: #000;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    border: 3px solid #F1B306;
}

.info-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.contract-address {
    background: #F1B306;
    padding: 15px;
    border-radius: 5px;
    font-family: monospace;
    word-break: break-all;
    margin-bottom: 15px;
    border: 2px solid #000;
    font-weight: 600;
    font-size: 16px;
}

.btn-copy {
    background: #000;
    color: #F1B306;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-copy:hover {
    opacity: 0.8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-item {
    background: #fff;
    color: #000;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 3px solid #F1B306;
}

.info-item h4 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #000;
}

.info-item p {
    font-size: 28px;
    font-weight: 700;
}

/* Community Section */
.community {
    padding: 80px 0;
    background: #F1B306;
    color: #000;
    text-align: center;
}

.community h2 {
    font-size: 56px;
    margin-bottom: 20px;
}

.community > .container > p {
    font-size: 24px;
    margin-bottom: 40px;
    color: #000;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s;
    border: 3px solid #000;
}

.social-btn:hover {
    background: #000;
    color: #fff;
}


/* Footer */
footer {
    background: #000;
    color: #F1B306;
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid #F1B306;
}

footer p {
    margin-bottom: 10px;
    font-size: 18px;
}

.disclaimer {
    font-size: 16px;
    color: #F09714;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-links {
        display: none;
    }

    .logo {
        height: 40px;
    }

    .hero {
        padding: 40px 0 60px 0;
    }

    .hero-image {
        max-width: 180px;
    }

    .hero-contract {
        flex-direction: column;
        gap: 10px;
    }

    .hero-contract-address {
        font-size: 11px;
        padding: 10px 12px;
        word-break: break-all;
        max-width: 95%;
    }

    .btn-hero-copy {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .btn-primary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .tagline {
        font-size: 20px;
    }

    .about,
    .tokenomics,
    .community {
        padding: 60px 0;
    }

    .about h2,
    .tokenomics h2,
    .community h2 {
        font-size: 36px;
    }

    .about > .container > p,
    .community > .container > p {
        font-size: 18px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature h3 {
        font-size: 24px;
    }

    .feature p {
        font-size: 16px;
    }

    .info-card h3 {
        font-size: 20px;
    }

    .contract-address {
        font-size: 12px;
    }

    .info-item h4 {
        font-size: 16px;
    }

    .info-item p {
        font-size: 22px;
    }

    .social-btn {
        font-size: 16px;
        padding: 12px 30px;
    }

    footer p {
        font-size: 16px;
    }

    .disclaimer {
        font-size: 14px;
    }
}
