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

body {
    background: #0a0000;
    font-family: 'Courier New', monospace;
    color: #ff3333;
    min-height: 100vh;
    background-image: 
        linear-gradient(rgba(10, 0, 0, 0.95), rgba(0, 0, 0, 1)),
        repeating-linear-gradient(0deg, transparent, transparent 2px, #1a0000 3px);
    background-size: cover;
    overflow-x: hidden;
}

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

.crt-flicker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgba(255, 0, 0, 0.02);
    animation: flicker 0.15s infinite;
    z-index: 999;
}

@keyframes flicker {
    0% { opacity: 0.97; }
    50% { opacity: 1; }
    100% { opacity: 0.98; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
