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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1929 100%);
    color: #ffffff;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f5a623;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
}

.hero-content {
    max-width: 600px;
}

.hero-mascot {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 20px 60px rgba(245, 166, 35, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f5a623;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(245, 166, 35, 0.5);
}

.tagline {
    font-size: 1.3rem;
    color: #b8c5d6;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #8899aa;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: #f5a623;
    color: #0a1628;
}

.btn-primary:hover {
    background: #ffb940;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
}

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

.btn-secondary:hover {
    background: #ffffff;
    color: #0a1628;
}

/* About Section */
.about {
    padding: 5rem 5%;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.1rem;
    color: #b8c5d6;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

.about-sub {
    color: #8899aa;
    margin-bottom: 3rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(245, 166, 35, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #f5a623;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #8899aa;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
    padding: 5rem 5%;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.tokenomics h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.token-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.token-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 0.5rem;
}

.token-label {
    color: #8899aa;
    font-size: 0.9rem;
}

/* How to Buy Section */
.how-to-buy {
    padding: 5rem 5%;
    text-align: center;
}

.how-to-buy h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #f5a623;
    color: #0a1628;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step p {
    color: #8899aa;
    font-size: 0.9rem;
}

/* Contract Section */
.contract {
    padding: 4rem 5%;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.contract h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contract-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-family: monospace;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contract-box:hover {
    background: rgba(255, 255, 255, 0.15);
}

.contract-box.copied {
    background: rgba(76, 175, 80, 0.3);
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-btn:hover {
    background: #f5a623;
    transform: scale(1.1);
}

.disclaimer {
    color: #556677;
    font-size: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-mascot {
        width: 150px;
        height: 150px;
    }
    
    .features, .tokenomics-grid, .steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .features, .tokenomics-grid, .steps {
        grid-template-columns: 1fr;
    }
}
