:root {
    --bg: #0b0b0b;
    --text: #ffffff;
    --accent: #ff0000;
    --secondary: #1a1a1a;
}

* { box-sizing: border-box; cursor: crosshair !important; }

body {
    margin: 0; font-family: 'Arial Black', sans-serif;
    background: var(--bg); color: var(--text); overflow-x: hidden;
}

.tv-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    background-size: 100% 4px, 3px 100%; z-index: 9999; pointer-events: none;
    opacity: 0.3; 
}

.hero {
    min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: radial-gradient(circle, #300 0%, #0b0b0b 100%); text-align: center; padding: 20px; position: relative;
}

.glitch-logo { font-size: clamp(3rem, 10vw, 6rem); line-height: 1; margin-bottom: 5px; }
.glitch { position: relative; display: inline-block; text-transform: uppercase; }
.text-red { color: var(--accent); }
.text-white { color: var(--text); }

.glitch::before, .glitch::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.glitch::before { left: 3px; text-shadow: -3px 0 var(--accent); clip: rect(44px, 450px, 56px, 0); animation: g-anim 3s infinite linear alternate-reverse; }

@keyframes g-anim { 0% { clip: rect(10px, 9999px, 20px, 0); } 100% { clip: rect(80px, 9999px, 90px, 0); } }

.main-slogan { font-size: clamp(1.2rem, 4vw, 2rem); color: var(--accent); margin: 5px 0 15px; text-transform: uppercase; font-weight: bold; }

.status { color: #ff0000; font-size: 1rem; margin-bottom: 10px; font-weight: 900; text-shadow: 0 0 8px #ff0000; letter-spacing: 1px; }
.dot { height: 10px; width: 10px; background: #ff0000; border-radius: 50%; display: inline-block; animation: blink 1s infinite; margin-right: 8px; box-shadow: 0 0 10px #ff0000; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.btn-main {
    display: inline-block; padding: 15px 40px; background: var(--accent); color: white;
    text-decoration: none; font-weight: bold; border: 3px solid #fff; margin-top: 20px;
    animation: pulse 2s infinite;
}

/* ИСПРАВЛЕННЫЕ КНОПКИ (центрирование для планшета) */
.donation-block { margin-top: 20px; display: flex; gap: 15px; justify-content: center; width: 100%; flex-wrap: wrap; }
.btn-sub { text-decoration: none; color: #888; border: 1px solid #444; padding: 5px 15px; font-size: 0.8rem; transition: 0.3s; }
.btn-sub:hover { color: #fff; border-color: var(--accent); background: rgba(255,0,0,0.1); }

.pinup-image { width: clamp(200px, 40vw, 350px); margin-top: 30px; filter: drop-shadow(0 0 15px var(--accent)); }

@media (min-width: 1024px) {
    .pinup-image { position: absolute; bottom: 30px; right: 30px; }
}

.rules-section { padding: 60px 20px; text-align: center; }
.mega-rule {
    display: inline-block; border: 5px solid var(--accent); padding: clamp(20px, 5vw, 50px);
    background: var(--secondary); transform: rotate(-1deg); width: 100%; max-width: 800px;
}
.mega-rule h2 { font-size: clamp(2rem, 8vw, 3rem); color: var(--accent); }
.mega-rule span { color: var(--accent); font-weight: 900; text-transform: uppercase; }

.socials { padding: 40px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.shaking-title { font-size: clamp(1.6rem, 6vw, 3rem); color: var(--accent); animation: shake 0.5s infinite ease-in-out alternate; margin-bottom: 30px; }
@keyframes shake { 0% { transform: rotate(-1deg); } 100% { transform: rotate(1deg); } }

.social-links { display: flex; flex-direction: column; align-items: center; gap: 15px; width: 100%; margin-bottom: 30px; }
.pulse-link { 
    color: white; font-size: 1.1rem; text-decoration: none; padding: 15px; 
    border: 2px solid var(--accent); width: 100%; max-width: 300px; text-align: center;
    transition: 0.3s; animation: pulse-border 2s infinite;
}

@media (min-width: 768px) { .social-links { flex-direction: row; justify-content: center; } }

.advertiser-card { 
    border: 4px double var(--accent); padding: 25px; max-width: 300px; width: 100%;
    background: rgba(255,0,0,0.05); text-align: center;
}
.advertiser-card h3 { color: var(--accent); font-size: 1.2rem; margin-bottom: 10px; }
.advertiser-card p { font-size: 0.85rem; line-height: 1.3; color: #ccc; }

.games-archive { padding: 80px 20px; max-width: 1000px; margin: 0 auto; }
.section-title { color: var(--accent); text-align: center; margin-bottom: 40px; font-size: 2rem; text-transform: uppercase;}
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.info-card { background: #111; padding: 25px; border-left: 4px solid var(--accent); }
.info-card h3 { color: var(--accent); margin-bottom: 10px; font-size: 1.3rem; }

.highlight-rating { color: #ff0000; font-weight: 900; text-shadow: 0 0 10px rgba(255,0,0,0.8); padding: 0 4px; font-size: 1.1em; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.7); } 70% { box-shadow: 0 0 0 15px rgba(255,0,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); } }
@keyframes pulse-border { 0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.7); } 70% { box-shadow: 0 0 0 10px rgba(255,0,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); } }

footer { padding: 60px; color: #444; font-size: 0.8rem; text-align: center; border-top: 1px solid #1a1a1a; }
