.dota-player-bg { 
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0d2e 50%, #2d1b69 100%);
    color: #ffd700; font-family: 'Orbitron', monospace;
    min-height: 100vh; overflow-x: hidden;
}

/* ADS */
.ad-fullscreen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 9999; transition: opacity 0.4s ease; }
.ad-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: #ffd700; font-size: 1.5rem; }
.skip-container { position: fixed; bottom: 30px; right: 30px; z-index: 10000; }
.skip-btn { padding: 15px 30px; background: linear-gradient(45deg, #ffd700, #ff6b35); border: none; color: #000; font-weight: 900; cursor: pointer; border-radius: 50px; font-size: 1rem; box-shadow: 0 10px 30px rgba(255,215,0,0.4); transition: all 0.3s ease; }
.skip-btn:hover:not(:disabled) { transform: scale(1.05); }
.skip-btn:disabled { background: #444; color: #888; cursor: not-allowed; box-shadow: none; }
.skip-btn.ready { animation: pulse 1s infinite; background: linear-gradient(45deg, #00ff88, #00cc66); }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 20px rgba(0,255,136,0.6); } 50% { box-shadow: 0 0 40px rgba(0,255,136,1); } }

/* PLAYER */
.player-wrapper { max-width: 1200px; margin: 0 auto; padding: 20px; opacity: 0; animation: fadeIn 0.5s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }

.player-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; background: rgba(20,20,40,0.8); padding: 15px 25px; border-radius: 15px; backdrop-filter: blur(20px); }
.back-btn { background: rgba(255,215,0,0.2); color: #ffd700; border: none; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.back-btn:hover { background: rgba(255,215,0,0.4); transform: scale(1.1); }
.player-header h2 { margin: 0; font-size: 1.5rem; font-weight: 700; background: linear-gradient(45deg, #ffd700, #fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.year { color: #aaa; font-size: 1.1rem; font-weight: 400; }

.server-selector { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 25px; padding: 20px; background: rgba(20,20,40,0.6); border-radius: 20px; backdrop-filter: blur(15px); border: 1px solid rgba(255,215,0,0.2); }
.server-btn { padding: 12px 20px; background: rgba(30,30,60,0.8); border: 2px solid rgba(255,215,0,0.3); color: #fff; border-radius: 25px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; min-width: 120px; display: flex; align-items: center; gap: 8px; }
.server-btn.active { background: linear-gradient(45deg, #ffd700, #ff6b35) !important; color: #000 !important; border-color: #ffd700 !important; box-shadow: 0 5px 25px rgba(255,215,0,0.5); }
.server-btn.online { border-color: #00ff88; }
.server-btn.offline { opacity: 0.5; cursor: not-allowed; border-color: #ff4444 !important; }

.video-player { width: 100%; height: 60vh; max-height: 600px; border: 3px solid rgba(255,215,0,0.3); border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 50px rgba(255,215,0,0.2); transition: all 0.4s ease; }

.player-footer { margin-top: 25px; text-align: center; color: #aaa; padding: 20px; background: rgba(20,20,40,0.5); border-radius: 15px; backdrop-filter: blur(10px); }
.quality-info { display: flex; justify-content: center; gap: 20px; margin-bottom: 10px; flex-wrap: wrap; }
.quality-info span { background: rgba(255,215,0,0.1); padding: 8px 15px; border-radius: 20px; font-size: 0.9rem; }

/* MOBILE */
@media (max-width: 768px) { .server-selector { flex-direction: column; align-items: center; gap: 12px; padding: 15px; } .server-btn { width: 90%; max-width: 300px; justify-content: center; } .video-player { height: 50vh; } .player-header { flex-direction: column; gap: 15px; text-align: center; } .skip-container { bottom: 20px; right: 20px; left: 20px; text-align: center; } .skip-btn { width: 100%; max-width: 300px; } }
@media (max-width: 480px) { .video-player { height: 45vh; } .player-wrapper { padding: 10px; } }
