/* ChadWV.com Styles - Digital Fortress Theme */

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

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: #00ff41;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    border: 2px solid #00ff41;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
    max-width: 600px;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff41, #ff0080, #00ff41);
    border-radius: 10px;
    z-index: -1;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00ff41;
    animation: flicker 3s infinite;
}

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

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.warning {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    color: #ff6b6b;
}

.footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.4;
    z-index: -2;
}

.status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 65, 0.2);
    border-radius: 20px;
    margin: 1rem 0;
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
        margin: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}

/* Matrix animation keyframes */
@keyframes fall {
    0% { 
        transform: translateY(-100vh); 
        opacity: 1; 
    }
    100% { 
        transform: translateY(100vh); 
        opacity: 0; 
    }
}