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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #D4A574 0%, #8B6F47 100%);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.9) 0%, rgba(139, 111, 71, 0.9) 100%);
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-in;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.ca-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.ca-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.ca {
    display: block;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    word-break: break-all;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
    color: #333;
}

.copy-btn {
    background: #8B6F47;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #6B5437;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.btn {
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: #8B6F47;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: #14F195;
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: #0FD57E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Lore Section */
.lore {
    background: #fff;
    padding: 80px 20px;
}

.lore h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.lore p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.proof {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.proof h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #8B6F47;
}

.proof ul {
    list-style: none;
    padding: 0;
}

.proof li {
    margin-bottom: 15px;
}

.proof a {
    color: #8B6F47;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.proof a:hover {
    color: #6B5437;
}

/* Tokenomics */
.tokenomics {
    background: linear-gradient(135deg, #D4A574 0%, #8B6F47 100%);
    padding: 80px 20px;
    color: #fff;
}

.tokenomics h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
}

/* Community */
.community {
    background: #fff;
    padding: 80px 20px;
}

.community h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

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

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.telegram {
    background: #0088cc;
    color: #fff;
}

.twitter {
    background: #1DA1F2;
    color: #fff;
}

.dex {
    background: #14F195;
    color: #000;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-btn .icon {
    font-size: 1.5rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .token-stats {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
}
