body {
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #d1d1d1;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Efekt starego monitora */
.scanline {
    width: 100%;
    height: 100px;
    z-index: 10;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: absolute;
    bottom: 100%;
    animation: scanline 6s linear infinite;
}

@keyframes scanline {
    0% { bottom: 100%; }
    100% { bottom: -100px; }
}

.container {
    width: 80vw;
    max-width: 1200px;
    text-align: center;
    z-index: 5;
    border: 1px solid #333;
    padding: 40px;
    background: rgba(15, 15, 15, 0.95);
    box-shadow: 0 0 20px rgba(0,0,0,1);
}

.logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}

.scp-logo, .server-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255,0,0,0.3));
}

.warning {
    color: #ff0000;
    font-weight: bold;
    letter-spacing: 3px;
    margin: 10px 0;
    text-shadow: 0 0 5px #ff0000;
}

.progress-container {
    width: 100%;
    height: 20px;
    background: #1a1a1a;
    border: 1px solid #444;
    margin: 20px 0;
    position: relative;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #8b0000;
    transition: width 0.3s ease;
    box-shadow: inset 0 0 10px #000;
}

.status-text {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.file-info {
    font-size: 0.8rem;
    color: #666;
}

.player-data {
    margin-top: 40px;
    font-size: 0.7rem;
    color: #444;
}