/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blood-red: #dc2626;
    --dark-red: #991b1b;
    --glow-red: #ef4444;
    --smoky-gray: #6b7280;
    --dark-gray: #374151;
    --pure-black: #000000;
    --charcoal: #1f2937;
    --gothic-font: 'Creepster', cursive;
    --tech-font: 'Orbitron', monospace;
    --antique-font: 'Uncial Antiqua', cursive;
}

body {
    font-family: var(--tech-font);
    background: var(--pure-black);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal);
    border-radius: 6px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--blood-red) 0%, var(--dark-red) 100%);
    border-radius: 6px;
    border: 2px solid var(--charcoal);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--glow-red) 0%, var(--blood-red) 100%);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
    transform: scale(1.05);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, var(--glow-red) 0%, var(--glow-red) 100%);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.7);
}

::-webkit-scrollbar-corner {
    background: var(--charcoal);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--blood-red) var(--charcoal);
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.fog {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(107, 114, 128, 0.15) 30%, transparent 60%),
        linear-gradient(-45deg, transparent 0%, rgba(107, 114, 128, 0.1) 40%, transparent 70%);
    animation: fogDrift 25s ease-in-out infinite;
    filter: blur(1px);
}

.embers {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 15% 85%, rgba(220, 38, 38, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(220, 38, 38, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 60%);
    animation: emberFloat 18s ease-in-out infinite;
}

.smoke {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(31, 41, 55, 0.4) 30%, rgba(31, 41, 55, 0.2) 70%, transparent 100%),
        linear-gradient(90deg, transparent 0%, rgba(31, 41, 55, 0.2) 50%, transparent 100%);
    animation: smokeRise 30s ease-in-out infinite;
}

/* Skull Silhouettes */
.skull-silhouettes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10c-15 0-25 8-25 20 0 5 2 9 5 12-3 3-5 7-5 12 0 8 6 14 14 14h22c8 0 14-6 14-14 0-5-2-9-5-12 3-3 5-7 5-12 0-12-10-20-25-20zm0 5c10 0 18 6 18 15 0 4-2 7-4 9 2 2 4 5 4 9 0 6-4 10-10 10H42c-6 0-10-4-10-10 0-4 2-7 4-9-2-2-4-5-4-9 0-9 8-15 18-15z" fill="%23dc2626"/><circle cx="40" cy="25" r="3" fill="%23dc2626"/><circle cx="60" cy="25" r="3" fill="%23dc2626"/><path d="M45 35c0 3 2 5 5 5s5-2 5-5" stroke="%23dc2626" stroke-width="2" fill="none"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10c-15 0-25 8-25 20 0 5 2 9 5 12-3 3-5 7-5 12 0 8 6 14 14 14h22c8 0 14-6 14-14 0-5-2-9-5-12 3-3 5-7 5-12 0-12-10-20-25-20zm0 5c10 0 18 6 18 15 0 4-2 7-4 9 2 2 4 5 4 9 0 6-4 10-10 10H42c-6 0-10-4-10-10 0-4 2-7 4-9-2-2-4-5-4-9 0-9 8-15 18-15z" fill="%23dc2626"/><circle cx="40" cy="25" r="3" fill="%23dc2626"/><circle cx="60" cy="25" r="3" fill="%23dc2626"/><path d="M45 35c0 3 2 5 5 5s5-2 5-5" stroke="%23dc2626" stroke-width="2" fill="none"/></svg>');
    background-size: 200px 200px, 150px 150px;
    background-position: 10% 20%, 80% 60%;
    background-repeat: no-repeat;
    animation: skullFloat 40s ease-in-out infinite;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--blood-red);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(odd) {
    animation-duration: 20s;
    animation-delay: -5s;
}

.particle:nth-child(even) {
    animation-duration: 25s;
    animation-delay: -10s;
}

@keyframes fogDrift {
    0%, 100% { transform: translateX(-15px) translateY(-8px) rotate(0deg); }
    25% { transform: translateX(5px) translateY(-12px) rotate(1deg); }
    50% { transform: translateX(15px) translateY(-5px) rotate(0deg); }
    75% { transform: translateX(8px) translateY(5px) rotate(-1deg); }
}

@keyframes emberFloat {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    25% { opacity: 0.7; transform: scale(1.05) rotate(1deg); }
    50% { opacity: 0.5; transform: scale(1.1) rotate(0deg); }
    75% { opacity: 0.6; transform: scale(1.02) rotate(-1deg); }
}

@keyframes smokeRise {
    0%, 100% { opacity: 0.3; transform: translateY(0px) translateX(0px); }
    25% { opacity: 0.5; transform: translateY(-15px) translateX(-5px); }
    50% { opacity: 0.4; transform: translateY(-25px) translateX(0px); }
    75% { opacity: 0.6; transform: translateY(-10px) translateX(5px); }
}

@keyframes skullFloat {
    0%, 100% { opacity: 0.03; transform: translateY(0px) rotate(0deg); }
    50% { opacity: 0.05; transform: translateY(-10px) rotate(2deg); }
}

@keyframes particleFloat {
    0% { 
        transform: translateY(100vh) translateX(0px) scale(0);
        opacity: 0;
    }
    10% { 
        opacity: 0.6;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    90% { 
        opacity: 0.6;
        transform: translateY(10vh) translateX(-10px) scale(1);
    }
    100% { 
        transform: translateY(0vh) translateX(0px) scale(0);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--blood-red);
    box-shadow: 0 0 15px var(--glow-red);
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-text {
    font-family: var(--gothic-font);
    font-size: 1.8rem;
    color: var(--blood-red);
    text-shadow: 0 0 20px var(--glow-red);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { text-shadow: 0 0 20px var(--glow-red); }
    50% { text-shadow: 0 0 30px var(--glow-red), 0 0 40px var(--glow-red); }
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

/* Music Controls */
.music-controls {
    display: flex;
    align-items: center;
}

.music-btn {
    background: transparent;
    border: 2px solid var(--blood-red);
    color: var(--blood-red);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}

.music-btn:hover {
    background: var(--blood-red);
    color: var(--pure-black);
    box-shadow: 0 0 25px var(--glow-red);
    transform: scale(1.1);
}

.music-btn.muted {
    color: var(--smoky-gray);
    border-color: var(--smoky-gray);
    box-shadow: 0 0 10px rgba(107, 114, 128, 0.3);
}

.music-btn.muted:hover {
    background: var(--smoky-gray);
    color: var(--pure-black);
    box-shadow: 0 0 20px var(--smoky-gray);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        radial-gradient(circle at center, rgba(220, 38, 38, 0.2) 0%, rgba(0, 0, 0, 0.7) 70%),
        url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    z-index: 1;
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 3;
    position: relative;
}

/* Live Announcement */
.live-announcement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--blood-red);
    border-radius: 25px;
    width: fit-content;
    animation: livePulse 2s ease-in-out infinite;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: var(--blood-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--glow-red);
    animation: liveBlink 1.5s ease-in-out infinite;
}

.live-text {
    font-family: var(--tech-font);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blood-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes livePulse {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 25px rgba(220, 38, 38, 0.5);
        transform: scale(1.02);
    }
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Contract Info */
.contract-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid var(--blood-red);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contract-label {
    font-family: var(--tech-font);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--smoky-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--blood-red);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: all;
    min-width: 200px;
    text-align: center;
}

.contract-address:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--blood-red);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.copy-button {
    background: transparent;
    border: 1px solid var(--blood-red);
    color: var(--blood-red);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.copy-button:hover {
    background: var(--blood-red);
    color: var(--pure-black);
    box-shadow: 0 0 15px var(--glow-red);
    transform: scale(1.1);
}

.copy-button.copied {
    background: var(--blood-red);
    border-color: var(--glow-red);
    color: var(--pure-black);
    box-shadow: 0 0 20px var(--glow-red);
}

.copy-button.copied:hover {
    background: var(--glow-red);
    box-shadow: 0 0 25px var(--glow-red);
}

.hero-title {
    font-family: var(--gothic-font);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px var(--glow-red);
}

.title-line {
    display: block;
    animation: titleGlow 4s ease-in-out infinite;
}

.title-line:nth-child(2) {
    animation-delay: 2s;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 0 0 30px var(--glow-red);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 50px var(--glow-red), 0 0 70px var(--glow-red);
        transform: scale(1.02);
    }
}

.hero-subtext {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 500px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.buy-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--blood-red);
    color: var(--blood-red);
    padding: 1rem 3rem;
    font-family: var(--tech-font);
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.buy-button:hover {
    color: var(--pure-black);
    background: var(--blood-red);
    box-shadow: 0 0 30px var(--glow-red);
    transform: translateY(-2px);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.buy-button:hover .button-glow {
    left: 100%;
}

/* Hellhound Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.hellhound {
    position: relative;
    width: 300px;
    height: 300px;
    animation: houndFloat 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;
}

.coin-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 4px solid var(--blood-red);
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.6);
    animation: coinGlow 3s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

@keyframes coinGlow {
    0%, 100% { 
        box-shadow: 0 0 50px rgba(220, 38, 38, 0.6);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 80px rgba(220, 38, 38, 0.8), 0 0 120px rgba(220, 38, 38, 0.4);
        transform: scale(1.05);
    }
}

.hound-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes houndFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    font-family: var(--gothic-font);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--blood-red);
    text-shadow: 0 0 20px var(--glow-red);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blood-red), transparent);
    box-shadow: 0 0 10px var(--glow-red);
}

/* Lore Section */
.lore {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--pure-black) 100%);
    position: relative;
}

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

.lore-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e5e7eb;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.transformation-sequence {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.doge-frame, .hound-frame {
    width: 100px;
    height: 100px;
    border: 2px solid var(--blood-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.little-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--blood-red);
    box-shadow: 0 0 20px var(--glow-red);
    animation: iconPulse 3s ease-in-out infinite;
}

.coin-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--blood-red);
    box-shadow: 0 0 20px var(--glow-red);
    animation: iconPulse 3s ease-in-out infinite;
}

.arrow {
    font-size: 2rem;
    color: var(--blood-red);
    animation: arrowGlow 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes arrowGlow {
    0%, 100% { text-shadow: 0 0 10px var(--glow-red); }
    50% { text-shadow: 0 0 20px var(--glow-red), 0 0 30px var(--glow-red); }
}

.pawprints {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pawprint {
    width: 30px;
    height: 30px;
    background: var(--blood-red);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.6;
    animation: pawprintGlow 2s ease-in-out infinite;
}

.pawprint:nth-child(2) { animation-delay: 0.5s; }
.pawprint:nth-child(3) { animation-delay: 1s; }

@keyframes pawprintGlow {
    0%, 100% { 
        opacity: 0.6;
        box-shadow: 0 0 10px var(--glow-red);
    }
    50% { 
        opacity: 1;
        box-shadow: 0 0 20px var(--glow-red);
    }
}

/* Tokenomics Section */
.tokenomics {
    background: var(--pure-black);
    position: relative;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stone" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="%231f2937"/><path d="M0 0L20 20M20 0L0 20" stroke="%23374151" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stone)"/></svg>');
    opacity: 0.1;
}

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

.tokenomics-item {
    background: rgba(31, 41, 55, 0.8);
    border: 2px solid var(--blood-red);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
    border-color: var(--glow-red);
}

.tokenomics-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.tokenomics-item:hover::before {
    left: 100%;
}

.tokenomics-icon {
    font-size: 3rem;
    color: var(--blood-red);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--glow-red);
}

.tokenomics-item h3 {
    font-family: var(--gothic-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--blood-red);
}

.percentage {
    font-family: var(--tech-font);
    font-size: 3rem;
    font-weight: 900;
    color: var(--glow-red);
    text-shadow: 0 0 20px var(--glow-red);
    margin-bottom: 1rem;
}

.tokenomics-item p {
    color: var(--smoky-gray);
    font-size: 1.1rem;
}

/* Roadmap Section */
.roadmap {
    background: linear-gradient(45deg, var(--charcoal) 0%, var(--pure-black) 100%);
    position: relative;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blood-red), var(--glow-red), var(--blood-red));
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--glow-red);
}

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

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

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

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--blood-red);
    border: 3px solid var(--pure-black);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 20px var(--glow-red);
}

.marker-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: markerPulse 3s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { 
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.timeline-content {
    background: rgba(31, 41, 55, 0.9);
    border: 2px solid var(--blood-red);
    border-radius: 15px;
    padding: 2rem;
    width: 45%;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

.timeline-content h3 {
    font-family: var(--gothic-font);
    font-size: 1.5rem;
    color: var(--blood-red);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--glow-red);
}

.timeline-content p {
    color: var(--smoky-gray);
    line-height: 1.6;
}

/* Community Section */
.community {
    background: var(--pure-black);
    text-align: center;
}

.community-text {
    font-size: 1.3rem;
    color: #e5e7eb;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

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

.social-link, .trading-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(31, 41, 55, 0.8);
    border: 2px solid var(--blood-red);
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.social-link:hover, .trading-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
    border-color: var(--glow-red);
}

.social-link i, .trading-link i {
    font-size: 2rem;
    color: var(--blood-red);
    text-shadow: 0 0 15px var(--glow-red);
    transition: all 0.3s ease;
}

.social-link:hover i, .trading-link:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 25px var(--glow-red);
}

.social-link span, .trading-link span {
    font-family: var(--tech-font);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--pure-black) 100%);
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.footer-pawprint {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.pawprint-glow {
    width: 50px;
    height: 50px;
    background: var(--blood-red);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    margin: 0 auto;
    animation: footerPawprint 4s ease-in-out infinite;
}

@keyframes footerPawprint {
    0%, 100% { 
        opacity: 0.6;
        box-shadow: 0 0 20px var(--glow-red);
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        box-shadow: 0 0 40px var(--glow-red);
        transform: scale(1.1);
    }
}

.footer-text {
    font-family: var(--gothic-font);
    font-size: 1.2rem;
    color: var(--blood-red);
    text-shadow: 0 0 15px var(--glow-red);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .lore-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .social-links, .trading-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link, .trading-link {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 3rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hellhound {
        width: 200px;
        height: 200px;
    }
    
    .hound-body {
        width: 150px;
        height: 150px;
    }
}
