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

body {
    font-family: 'Nunito', sans-serif;
    background: #0d0d12;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Gradient background overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(78, 205, 196, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 180, 120, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Animated grain texture */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* Floating Zzz Animations */
.zzz-container {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.zzz {
    position: absolute;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(78, 205, 196, 0.2);
    animation: float-up 10s infinite ease-out;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

.zzz-1 { left: 10%; animation-delay: 0s; }
.zzz-2 { left: 25%; animation-delay: 2s; font-size: 3rem; color: rgba(255, 107, 53, 0.15); }
.zzz-3 { left: 50%; animation-delay: 4s; }
.zzz-4 { left: 70%; animation-delay: 6s; font-size: 2.5rem; color: rgba(255, 180, 120, 0.15); }
.zzz-5 { left: 85%; animation-delay: 3s; }
.zzz-6 { left: 40%; animation-delay: 7s; font-size: 1.5rem; }

@keyframes float-up {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: translateX(0) rotate(-5deg);
    }
    15% {
        opacity: 0.8;
    }
    85% {
        opacity: 0.8;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
        transform: translateX(40px) rotate(10deg);
    }
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(13, 13, 18, 0.9);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: #888;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #4ecdc4);
    transition: width 0.3s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

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

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

/* Logo with Steam */
.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-mascot {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 30px;
    filter: drop-shadow(0 0 60px rgba(255, 107, 53, 0.3));
    animation: gentle-bob 5s ease-in-out infinite;
    border: 3px solid rgba(255, 107, 53, 0.2);
}

@keyframes gentle-bob {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Coffee Steam */
.steam {
    position: absolute;
    top: 10px;
    left: 25px;
    display: flex;
    gap: 8px;
}

.steam-particle {
    font-size: 1.8rem;
    color: rgba(78, 205, 196, 0.5);
    animation: steam-rise 2.5s ease-out infinite;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.steam-particle:nth-child(2) { animation-delay: 0.5s; color: rgba(255, 180, 120, 0.4); }
.steam-particle:nth-child(3) { animation-delay: 1s; }

@keyframes steam-rise {
    0% {
        opacity: 0;
        transform: translateY(0) scaleX(1);
    }
    30% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scaleX(2);
    }
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #ffb478 50%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.tagline {
    font-size: 1.5rem;
    color: #b8b8b8;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Energy Bar */
.energy-container {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.energy-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.energy-bar {
    width: 150px;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.energy-fill {
    width: 5%;
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ff3535);
    border-radius: 10px;
    animation: energy-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

@keyframes energy-pulse {
    0%, 100% { opacity: 1; width: 5%; }
    50% { opacity: 0.7; width: 7%; }
}

.energy-percent {
    font-size: 1rem;
    color: #ff6b35;
    font-weight: 800;
}

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

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff9248);
    color: #fff;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #888;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    color: #fff;
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
}

/* About Section */
.about {
    padding: 8rem 5%;
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.02) 50%, transparent 100%);
}

.about h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro {
    font-size: 1.25rem;
    color: #999;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.9;
}

.about-sub {
    color: #555;
    margin-bottom: 4rem;
    font-style: italic;
    font-size: 1.1rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #4ecdc4);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.2);
    background: rgba(255, 107, 53, 0.03);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Tokenomics Section */
.tokenomics {
    padding: 8rem 5%;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    z-index: 1;
}

.tokenomics h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #4ecdc4, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.token-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    transition: all 0.3s;
}

.token-card:hover {
    transform: scale(1.03);
    border-color: rgba(78, 205, 196, 0.3);
}

.token-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.token-label {
    color: #888;
    font-size: 0.9rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.token-note {
    color: #444;
    font-size: 0.75rem;
    font-style: italic;
    display: block;
    margin-top: 0.75rem;
}

/* How to Buy Section */
.how-to-buy {
    padding: 8rem 5%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.how-to-buy h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-intro {
    color: #555;
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

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

.step {
    padding: 2rem;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(78, 205, 196, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s;
}

.step:hover .step-number {
    transform: scale(1.1);
    border-color: #4ecdc4;
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.2);
}

.step h3 {
    margin-bottom: 0.75rem;
    color: #fff;
    font-size: 1.1rem;
}

.step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

.step em {
    font-size: 0.8rem;
    color: #444;
    display: block;
    margin-top: 0.5rem;
}

/* Contract Section */
.contract {
    padding: 5rem 5%;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
    z-index: 1;
}

.contract h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contract-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: #888;
    font-size: 0.9rem;
}

.contract-box:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    color: #fff;
}

.contract-box.copied {
    background: rgba(78, 205, 196, 0.2);
    border-color: #4ecdc4;
}

/* Footer */
footer {
    padding: 4rem 5%;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    position: relative;
    z-index: 1;
}

.footer-crab {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: gentle-bob 5s ease-in-out infinite;
}

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

.social-btn {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(78, 205, 196, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.4rem;
    color: #888;
    transition: all 0.3s;
}

.social-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #4ecdc4);
    border-color: transparent;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.tired-counter {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.tired-counter span {
    background: linear-gradient(135deg, #ff6b35, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.disclaimer {
    color: #333;
    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 3%;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-mascot {
        width: 200px;
        height: 200px;
    }
    
    .energy-container {
        flex-wrap: wrap;
        padding: 0.8rem 1.2rem;
    }
    
    .about h2, .tokenomics h2, .how-to-buy h2 {
        font-size: 2rem;
    }
    
    .zzz {
        font-size: 1.5rem;
    }
    
    .zzz-2, .zzz-4 {
        font-size: 2rem;
    }
}
