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

:root {
    --primary-black: #000000;
    --void-black: #0a0a0a;
    --abyss-blue: #1a1a2e;
    --dead-gray: #2d2d2d;
    --soul-white: #f0f0f0;
    --blood-red: #8b0000;
    --cosmic-purple: #4a148c;
    --neon-green: #00ff41;
    --ghost-white: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Noto Sans', sans-serif;
    background: var(--primary-black);
    color: var(--soul-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.cosmic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #000000 100%);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 80px 10px, white, transparent),
        radial-gradient(2px 2px at 130px 80px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: drift 20s infinite linear;
    opacity: 0.3;
}

.void-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(138, 0, 0, 0.1) 50%, transparent 100%);
    animation: pulse 4s infinite ease-in-out;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(-200px, -200px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--ghost-white);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Creepster', cursive;
    font-size: 1.5rem;
    color: var(--blood-red);
}

.dead-penguin-icon {
    font-size: 2rem;
    animation: wobble 3s infinite ease-in-out;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

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

.nav-links a {
    color: var(--soul-white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.pumpfun-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3) !important;
}

.pumpfun-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

.pumpfun-exchange {
    background: linear-gradient(45deg, #ff6b35, #f7931e) !important;
    border: none !important;
    color: white !important;
}

.pumpfun-exchange:hover {
    background: linear-gradient(45deg, #f7931e, #ff6b35) !important;
    transform: translateX(5px) scale(1.05) !important;
}

.nav-links a:hover {
    color: var(--blood-red);
    text-shadow: 0 0 10px var(--blood-red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blood-red);
    transition: width 0.3s ease;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-family: 'Creepster', cursive;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 10vw, 8rem);
    color: var(--blood-red);
    text-shadow: 
        0 0 20px var(--blood-red),
        0 0 40px var(--blood-red),
        0 0 60px var(--cosmic-purple);
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 100% { 
        text-shadow: 
            0 0 20px var(--blood-red),
            0 0 40px var(--blood-red),
            0 0 60px var(--cosmic-purple);
    }
    25% { 
        text-shadow: 
            -2px 0 var(--neon-green),
            2px 0 var(--blood-red),
            0 0 40px var(--cosmic-purple);
    }
    50% { 
        text-shadow: 
            2px 0 var(--blood-red),
            -2px 0 var(--neon-green),
            0 0 40px var(--cosmic-purple);
    }
    75% { 
        text-shadow: 
            0 0 20px var(--cosmic-purple),
            0 0 40px var(--blood-red),
            0 0 60px var(--neon-green);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--soul-white);
    opacity: 0.8;
    font-style: italic;
    margin-top: 1rem;
}

.penguin-container {
    margin: 3rem 0;
}

.dead-penguin {
    position: relative;
    display: inline-block;
    font-size: 8rem;
    animation: float 3s infinite ease-in-out;
}

.penguin-body {
    position: relative;
    z-index: 2;
}

.x-eyes {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    z-index: 3;
    color: var(--blood-red);
}

.halo {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    animation: rotate 4s infinite linear;
    z-index: 1;
}

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

@keyframes rotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--soul-white);
    opacity: 0.9;
    line-height: 1.8;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--blood-red), var(--cosmic-purple));
    color: var(--soul-white);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 0, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--soul-white);
    border: 2px solid var(--soul-white);
}

.btn-secondary:hover {
    background: var(--soul-white);
    color: var(--primary-black);
}

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

section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Creepster', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--blood-red);
    text-shadow: 0 0 20px var(--blood-red);
}

.about {
    background: var(--void-black);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--ghost-white);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--blood-red);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--soul-white);
    opacity: 0.9;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--blood-red);
}

.tokenomics {
    background: var(--abyss-blue);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.token-info {
    display: grid;
    gap: 1.5rem;
}

.token-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--ghost-white);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    font-weight: 700;
    color: var(--soul-white);
}

.stat-value {
    font-family: 'Creepster', cursive;
    font-size: 1.5rem;
    color: var(--neon-green);
}

.distribution-chart {
    background: var(--ghost-white);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-item {
    margin-bottom: 1rem;
}

.chart-bar {
    height: 30px;
    background: linear-gradient(90deg, var(--blood-red), var(--cosmic-purple));
    border-radius: 15px;
    margin-bottom: 0.5rem;
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from { width: 0; }
}

.roadmap {
    background: var(--void-black);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--blood-red);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--blood-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    border: 3px solid var(--primary-black);
}

.timeline-content {
    background: var(--ghost-white);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    width: 45%;
    backdrop-filter: blur(10px);
}

.timeline-content p {
    color: var(--soul-white);
    opacity: 0.9;
}

.buy {
    background: var(--abyss-blue);
}

.buy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contract-info h3,
.exchange-links h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--blood-red);
}

.contract-box {
    background: var(--ghost-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contract-box code {
    flex: 1;
    font-family: monospace;
    color: var(--neon-green);
    word-break: break-all;
}

.copy-btn {
    background: var(--blood-red);
    color: var(--soul-white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--cosmic-purple);
}

.exchange-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exchange-btn {
    background: var(--ghost-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--soul-white);
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    text-align: left;
}

.exchange-btn:hover {
    background: var(--blood-red);
    transform: translateX(5px);
}

.footer {
    background: var(--primary-black);
    border-top: 1px solid var(--ghost-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--blood-red);
    margin-bottom: 1rem;
    font-family: 'Creepster', cursive;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--soul-white);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--blood-red);
    transform: scale(1.2);
}

.footer-section p {
    color: var(--soul-white);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .tokenomics-content,
    .buy-content {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
