@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@900&display=swap');

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

body {
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(255, 0, 255, 0.1) 50%, rgba(0, 255, 255, 0.1) 100%),
        radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    text-align: center;
    z-index: 1;
    position: relative;
}

.title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #fb5607, #ff006e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s ease infinite, glow 2s ease-in-out infinite alternate;
    text-shadow: 
        0 0 20px rgba(255, 0, 110, 0.5),
        0 0 40px rgba(131, 56, 236, 0.5),
        0 0 60px rgba(58, 134, 255, 0.5);
    filter: contrast(1.2);
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

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

@keyframes glow {
    from {
        filter: contrast(1.2) drop-shadow(0 0 20px rgba(255, 0, 255, 0.8));
    }
    to {
        filter: contrast(1.2) drop-shadow(0 0 30px rgba(0, 255, 255, 0.8));
    }
}

.contact {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: #00ffff;
    text-shadow: 
        0 0 10px rgba(0, 255, 255, 0.8),
        0 0 20px rgba(0, 255, 255, 0.6);
    animation: flicker 3s infinite;
}

.contact a {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s;
}

.contact a:hover {
    color: #ff00ff;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.6; }
    94% { opacity: 1; }
    96% { opacity: 0.8; }
    97% { opacity: 1; }
}

@media (max-width: 768px) {
    .title {
        font-size: clamp(1.5rem, 6vw, 3rem);
    }
    
    .contact {
        font-size: 1rem;
    }
}