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

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Blood drip effect */
.blood-drip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, #8b0000 0%, transparent 100%);
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.3) 0%, transparent 70%);
}

.glitch-wrapper {
    position: relative;
    display: inline-block;
}

.glitch {
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: #ff0000;
    letter-spacing: 0.1em;
    animation: glitch-skew 1s infinite linear alternate-reverse;
    text-shadow:
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000,
        -4px -4px 0 #000,
        4px -4px 0 #000,
        -4px 4px 0 #000,
        4px 4px 0 #000,
        0 0 20px #ff0000,
        0 0 40px #ff0000,
        0 0 60px #ff0000,
        0 0 80px #ff0000;
}

.glitch::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 2px;
    width: 100%;
    height: 100%;
    color: #ff0000;
    z-index: -1;
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: -2px;
    width: 100%;
    height: 100%;
    color: #8b0000;
    z-index: -2;
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(-2deg); }
    20% { transform: skew(2deg); }
    30% { transform: skew(-2deg); }
    40% { transform: skew(0deg); }
}

.subtitle {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #ff4444;
    text-shadow: 0 0 10px #ff0000;
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    41%, 43% { opacity: 0.6; }
    45%, 47% { opacity: 0.8; }
}

.date {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #666;
    font-weight: bold;
}

/* Wojak Image */
.wojak-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.wojak-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border: 4px solid #8b0000;
    border-radius: 15px;
    box-shadow:
        0 0 30px rgba(139, 0, 0, 0.8),
        0 0 60px rgba(255, 0, 0, 0.5),
        inset 0 0 20px rgba(139, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: imageFloat 4s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

.wojak-image:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 50px rgba(255, 0, 0, 1),
        0 0 100px rgba(255, 0, 0, 0.7),
        inset 0 0 30px rgba(139, 0, 0, 0.5);
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 100%);
    border: 2px solid #8b0000;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: float 3s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-card:nth-child(3) {
    animation-delay: 1s;
}

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

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.7);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.stat-value {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 15px #ff0000;
    margin: 10px 0;
}

.stat-label {
    font-size: 1rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Content Section */
.content {
    margin: 60px 0;
}

.warning-box {
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    border: 3px solid #ff0000;
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
    animation: warning-pulse 2s infinite;
}

@keyframes warning-pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 0, 0, 0.6); }
    50% { box-shadow: 0 0 50px rgba(255, 0, 0, 0.9); }
}

.warning-box h2 {
    color: #ff0000;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #ff0000;
}

.warning-box p {
    color: #ffcccc;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Token Section */
.token-section {
    background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 100%);
    border: 3px solid #ff0000;
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.7);
    animation: warning-pulse 2s infinite;
}

.token-title {
    text-align: center;
    color: #ff0000;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 0 15px #ff0000;
    letter-spacing: 0.1em;
}

.ca-box {
    max-width: 600px;
    margin: 0 auto 30px;
}

.ca-label {
    display: block;
    color: #ff4444;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ca-input-container {
    display: flex;
    gap: 10px;
}

.ca-input {
    flex: 1;
    background: #0a0a0a;
    border: 2px solid #8b0000;
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ca-input:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.copy-btn {
    background: linear-gradient(135deg, #8b0000 0%, #ff0000 100%);
    border: 2px solid #ff0000;
    border-radius: 8px;
    padding: 15px 30px;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.copy-btn:hover {
    background: linear-gradient(135deg, #ff0000 0%, #ff4444 100%);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-feedback {
    display: block;
    text-align: center;
    color: #00ff00;
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.copy-feedback.show {
    opacity: 1;
}

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

.pump-btn {
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    border: 3px solid #8b0000;
    border-radius: 10px;
    padding: 20px 40px;
    color: #ff4444;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pump-btn:hover {
    background: linear-gradient(135deg, #330000 0%, #8b0000 100%);
    border-color: #ff0000;
    color: #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    transform: translateY(-5px);
}

.pump-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

/* Ticker */
.crash-list {
    margin: 60px 0;
}

.crash-list h3 {
    text-align: center;
    color: #ff0000;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 0 15px #ff0000;
}

.ticker {
    background: #0a0a0a;
    border: 2px solid #8b0000;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    position: relative;
}

.ticker-item {
    display: inline-block;
    padding: 20px 40px;
    font-size: 1.5rem;
    color: #ff0000;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
    padding: 20px;
    justify-items: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 100%);
    border: 3px solid #8b0000;
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.6);
    transition: all 0.4s ease;
    animation: galleryFloat 5s ease-in-out infinite;
    width: 100%;
    max-width: 450px;
}

.gallery-item:nth-child(2) {
    animation-delay: 1s;
}

.gallery-item:nth-child(3) {
    animation-delay: 2s;
}

.gallery-item:nth-child(4) {
    animation-delay: 3s;
}

.gallery-item:nth-child(5) {
    animation-delay: 4s;
}

.gallery-item:nth-child(6) {
    animation-delay: 5s;
}

@keyframes galleryFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-1deg); }
    75% { transform: translateY(-5px) rotate(1deg); }
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.05) rotate(0deg);
    box-shadow:
        0 0 50px rgba(255, 0, 0, 0.9),
        0 0 100px rgba(255, 0, 0, 0.5);
    border-color: #ff0000;
}

.gallery-image {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2) saturate(1.3);
}

.gallery-caption {
    padding: 20px;
    text-align: center;
    color: #ff4444;
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.7);
    border-top: 2px solid #8b0000;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    background: rgba(139, 0, 0, 0.5);
    color: #ff0000;
    text-shadow: 0 0 15px #ff0000;
}

/* Quote Section */
.quote-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
}

blockquote {
    font-size: 2rem;
    font-style: italic;
    color: #ff4444;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.quote-author {
    color: #999;
    font-size: 1.2rem;
}

/* Meme Section */
.meme-section {
    margin: 60px 0;
}

.meme-section h3 {
    text-align: center;
    color: #ff0000;
    font-size: 2rem;
    margin-bottom: 40px;
    text-shadow: 0 0 15px #ff0000;
}

.stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stage {
    background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 100%);
    border: 2px solid #8b0000;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.stage:hover {
    transform: scale(1.05);
    border-color: #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.stage-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stage-text {
    color: #ff4444;
    font-size: 1.1rem;
}

/* Footer */
.footer-msg {
    text-align: center;
    margin: 80px 0 40px;
    padding: 40px;
}

.footer-msg p {
    color: #999;
    font-size: 1.1rem;
    margin: 15px 0;
}

.disclaimer {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Falling coins animation */
.falling-coins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .glitch {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    blockquote {
        font-size: 1.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .wojak-image {
        max-width: 350px;
    }

    .image-gallery {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-caption {
        font-size: 1rem;
        padding: 15px;
    }

    .gallery-image {
        height: 300px;
    }

    .token-section {
        padding: 30px 20px;
    }

    .token-title {
        font-size: 1.5rem;
    }

    .ca-input-container {
        flex-direction: column;
    }

    .copy-btn {
        width: 100%;
    }

    .pump-links {
        flex-direction: column;
    }

    .pump-btn {
        width: 100%;
        justify-content: center;
    }
}
