body {
    font-family: 'Oswald', Arial, sans-serif;
    background: #181a1b;
    color: #f8f8f8;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    transition: background 0.5s;
}
.container {
    max-width: 1300px;
    margin: 40px auto;
    background: rgba(20,20,30,0.98);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 8px #222 inset;
    padding: 40px 48px;
    position: relative;
    border: 2px solid #222;
    animation: containerPulse 2s infinite alternate;
}
@keyframes containerPulse {
    0% { box-shadow: 0 8px 32px #222, 0 0 0 8px #222 inset; }
    100% { box-shadow: 0 8px 64px #c00, 0 0 0 8px #c00 inset; }
}
h1, h2, h3 {
    color: #ff2d2d;
    text-shadow: 2px 2px 8px #000, 0 0 10px #ff2d2d;
    letter-spacing: 2px;
}
a {
    color: #ffb300;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s, text-shadow 0.2s;
    text-shadow: 1px 1px 6px #000, 0 0 6px #ffb30055;
}
a:hover, a:focus {
    color: #ff2d2d;
    text-shadow: 2px 2px 8px #000, 0 0 10px #ff2d2d;
    text-decoration: underline;
}
input, button, select {
    font-size: 1.1em;
    padding: 8px 14px;
    border-radius: 6px;
    border: 2px solid #444;
    margin: 8px 0;
    background: #222;
    color: #fff;
    box-shadow: 0 2px 8px #0002;
}
button {
    background: linear-gradient(90deg,#ff2d2d,#ffb300);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 2px 8px #0005;
}
button:hover {
    background: linear-gradient(90deg,#ffb300,#ff2d2d);
    transform: scale(1.05);
}
.success {
    color: #00ff7f;
    font-weight: bold;
    text-shadow: 0 0 8px #0f0, 0 0 2px #fff;
}
.error {
    color: #ff2d2d;
    font-weight: bold;
    text-shadow: 0 0 8px #f00, 0 0 2px #fff;
}
.link-list {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}
.link-list li {
    margin-bottom: 10px;
}
.countdown-warning {
    background: #fff3cd;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #ffeeba;
    animation: warningPulse 1s infinite alternate;
}
@keyframes warningPulse {
    0% { background: #fff3cd; }
    100% { background: #ffeeba; }
}
.countdown-danger {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    animation: dangerPulse 1s infinite alternate;
}
@keyframes dangerPulse {
    0% { background: #f8d7da; }
    100% { background: #ff2d2d; }
}
.attention-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0a1a3a !important;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 8px #000, 0 0 10px #fff;
    animation: attentionPulse 1.2s infinite alternate;
}
@keyframes attentionPulse {
    0% { background: #0a1a3a; color: #fff; }
    100% { background: #112266; color: #ffb300; }
}
@keyframes shake {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-4px, 4px); }
    40% { transform: translate(4px, -4px); }
    60% { transform: translate(-4px, 4px); }
    80% { transform: translate(4px, -4px); }
    100% { transform: translate(0, 0); }
}
@keyframes flashRedYellow {
    0% { background: #ff2d2d; }
    25% { background: #fff300; }
    50% { background: #fff; }
    75% { background: #ffb300; }
    100% { background: #ff2d2d; }
}
.computer-off {
    filter: grayscale(1) brightness(0.3) blur(1px);
    opacity: 0.15;
    transition: filter 0.5s, opacity 0.5s;
}
.computer-shake {
    animation: shake 0.15s infinite;
}
.computer-flash {
    animation: flashRedYellow 0.5s infinite alternate;
}
.emergency-flash {
    animation: flashRedYellow 0.25s infinite alternate !important;
    box-shadow: 0 0 32px 8px #ff2d2d, 0 0 64px 16px #fff300;
}
::-webkit-scrollbar {
    width: 10px;
    background: #222;
}
::-webkit-scrollbar-thumb {
    background: #ff2d2d;
    border-radius: 5px;
}
