* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f23 100%);
    color: #00ff41;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 147, 26, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.title-line {
    display: block;
    text-shadow: 
        0 0 10px #00ff41,
        0 0 20px #00ff41,
        0 0 30px #00ff41,
        0 0 40px #00ff41;
    animation: pulse 2s ease-in-out infinite;
    color: #00ff41;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.highlight {
    color: #f7931a;
    text-shadow: 
        0 0 10px #f7931a,
        0 0 20px #f7931a,
        0 0 30px #f7931a,
        0 0 40px #f7931a;
    font-size: 1.1em;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.illustration-container {
    margin: 40px auto;
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cypherpunk-illustration {
    width: 100%;
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.3));
}

.subtitle {
    margin-top: 40px;
    padding: 20px;
}

.cypherpunk-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #00ff41;
    text-shadow: 
        0 0 5px #00ff41,
        0 0 10px #00ff41;
    opacity: 0.9;
    animation: fadeIn 2s ease-in 0.5s both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: clamp(2rem, 10vw, 4rem);
        margin-bottom: 30px;
    }
    
    .illustration-container {
        margin: 30px auto;
    }
    
    #cypherpunk-illustration {
        max-width: 100%;
    }
    
    .cypherpunk-text {
        font-size: clamp(0.8rem, 3vw, 1.2rem);
        letter-spacing: 0.1em;
    }
    
    .subtitle {
        margin-top: 30px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: clamp(1.5rem, 12vw, 3rem);
        gap: 5px;
    }
    
    .container {
        padding: 15px;
    }
    
    .illustration-container {
        margin: 20px auto;
    }
}

/* Additional cypherpunk effects */
@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 255, 65, 0.03) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 2;
    animation: scanline 8s linear infinite;
    opacity: 0.5;
}

/* Glitch effect on hover */
.main-title:hover .title-line {
    animation: glitch 0.3s infinite;
}

@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);
    }
}

