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

body {
    font-family: 'VT323', monospace;
    background: linear-gradient(45deg, #1a0033, #330066, #4d0099);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #ffffff;
    font-size: 20px;
    overflow-x: hidden;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 255, 0.03),
        rgba(0, 255, 255, 0.03) 2px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 1;
}

header {
    text-align: center;
    padding: 20px;
    background: linear-gradient(180deg, #ff00ff, #9900ff);
    border-bottom: 5px solid #00ffff;
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.5);
}

.banner-top {
    background: #ffff00;
    color: #000000;
    padding: 10px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    border: 3px solid #ff00ff;
}

marquee {
    animation: flash 0.5s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.main-title {
    font-size: 64px;
    color: #00ffff;
    text-shadow: 
        3px 3px 0 #ff00ff,
        6px 6px 0 #ffff00,
        9px 9px 20px rgba(0, 0, 0, 0.5);
    margin: 20px 0;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.subtitle {
    font-size: 48px;
    color: #ffff00;
    text-shadow: 2px 2px 0 #ff00ff, 4px 4px 10px rgba(0, 0, 0, 0.5);
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.glitch {
    position: relative;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #00ffff;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #ff00ff;
    z-index: -2;
}

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

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); }
    25% { clip-path: inset(0 0 50% 0); }
    50% { clip-path: inset(50% 0 0 0); }
    75% { clip-path: inset(0 0 30% 0); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); }
    25% { clip-path: inset(30% 0 0 0); }
    50% { clip-path: inset(0 0 70% 0); }
    75% { clip-path: inset(70% 0 0 0); }
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    margin-bottom: 60px;
}

.spamton-container {
    display: inline-block;
    position: relative;
}

.spamton-img {
    width: 200px;
    height: auto;
    filter: hue-rotate(20deg) saturate(1.5);
    animation: bounce 2s infinite;
}

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

.speech-bubble {
    background: #ffffff;
    color: #000000;
    padding: 20px;
    border-radius: 20px;
    border: 4px solid #000000;
    position: relative;
    margin-top: 20px;
    max-width: 400px;
    box-shadow: 5px 5px 0 #ff00ff, 10px 10px 0 #00ffff;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #000000;
}

.speech-bubble p {
    margin: 10px 0;
    font-size: 24px;
    text-transform: uppercase;
}

.countdown-section {
    background: linear-gradient(135deg, #330066, #660099);
    padding: 40px;
    border: 5px solid #00ffff;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: 48px;
    color: #ffff00;
    text-shadow: 3px 3px 0 #ff00ff;
    margin-bottom: 30px;
}

.countdown-timer {
    font-size: 72px;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin: 20px 0;
    font-family: 'VT323', monospace;
}

.url-reveal {
    margin-top: 30px;
    padding: 20px;
    background: #000000;
    border: 3px solid #00ffff;
    border-radius: 10px;
}

.revealed-url {
    font-size: 36px;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.url-chars-remaining {
    margin-top: 10px;
}

.hidden-char {
    display: inline-block;
    width: 20px;
    height: 30px;
    background: #333333;
    color: #00ff00;
    margin: 0 2px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #00ffff;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.95); }
}

.official-proof {
    margin-bottom: 60px;
}

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

.evidence-card {
    background: linear-gradient(45deg, #ff00ff, #ff00aa);
    padding: 30px;
    border: 4px solid #ffff00;
    border-radius: 15px;
    box-shadow: 5px 5px 0 #00ffff;
    transform: rotate(-1deg);
    transition: transform 0.3s;
}

.evidence-card:hover {
    transform: rotate(1deg) scale(1.05);
}

.evidence-card h4 {
    font-size: 32px;
    color: #ffff00;
    margin-bottom: 15px;
}

.evidence-card .disclaimer {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.testimonials {
    background: repeating-linear-gradient(
        45deg,
        #330066,
        #330066 10px,
        #4d0099 10px,
        #4d0099 20px
    );
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.testimonial {
    background: #ffffff;
    color: #000000;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    border: 3px solid #ff00ff;
    box-shadow: 5px 5px 0 #00ffff;
}

.testimonial .author {
    text-align: right;
    color: #666666;
    font-style: italic;
    margin-top: 10px;
}

.cta-section {
    text-align: center;
    padding: 60px 20px;
}

.big-shot-btn {
    font-family: 'VT323', monospace;
    font-size: 48px;
    padding: 20px 40px;
    background: linear-gradient(45deg, #ffff00, #ff00ff);
    color: #000000;
    border: 5px solid #00ffff;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 10px 0 #0099cc;
    transition: all 0.1s;
    animation: rainbow 3s infinite;
}

@keyframes rainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.big-shot-btn:hover {
    transform: translateY(5px);
    box-shadow: 0 5px 0 #0099cc;
}

.big-shot-btn:active {
    transform: translateY(10px);
    box-shadow: none;
}

.warning {
    color: #ff0000;
    font-size: 28px;
    margin-top: 20px;
    text-shadow: 2px 2px 0 #ffff00;
}

footer {
    background: #000000;
    color: #00ffff;
    text-align: center;
    padding: 20px;
    border-top: 5px solid #ff00ff;
    font-size: 16px;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup.hidden {
    display: none;
}

.popup-content {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    padding: 40px;
    border-radius: 20px;
    border: 5px solid #ffff00;
    text-align: center;
    max-width: 500px;
    position: relative;
    color: #000000;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
    color: #000000;
}

.close:hover {
    color: #ff0000;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 40px;
    }
    
    .subtitle {
        font-size: 32px;
    }
    
    .countdown-timer {
        font-size: 48px;
    }
    
    .big-shot-btn {
        font-size: 32px;
        padding: 15px 30px;
    }
}