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

body {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #0f0;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ASCII Rain Animation */
.ascii-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ascii-char {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    color: #0f0;
    opacity: 0;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Header */
header {
    position: relative;
    z-index: 10;
    padding: 40px 20px 20px;
    text-align: center;
}

.title {
    font-size: 4rem;
    font-weight: bold;
    color: #0f0;
    text-shadow: 
        0 0 10px #0f0,
        0 0 20px #0f0,
        0 0 30px #0f0;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px #0f0,
            0 0 20px #0f0,
            0 0 30px #0f0;
    }
    to {
        text-shadow: 
            0 0 20px #0f0,
            0 0 30px #0f0,
            0 0 40px #0f0,
            0 0 50px #0f0;
    }
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #0f0;
    color: #0f0;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.social-link:hover {
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 
        0 0 10px #0f0,
        0 0 20px #0f0;
    transform: translateY(-2px);
}

.pump-logo {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(50%) sepia(100%) saturate(500%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

/* Main Content */
main {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
}

.ascii-container {
    max-width: 400px;
    width: 100%;
    animation: fadeInScale 1.5s ease-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.ascii-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 20px #0f0);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px #0f0);
    }
    50% {
        filter: drop-shadow(0 0 40px #0f0) drop-shadow(0 0 60px #0f0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    header {
        padding: 20px 10px 10px;
    }
}

