/* MİZAH TV ÖZEL CSS */
body { background-color: #000; overflow: hidden; }
.mizah-logo-container { text-align: center; margin-top: 5vh; animation: fadeInDown 1s ease-out; }
.mizah-title { font-family: 'Oswald', sans-serif; font-size: 6vw; color: var(--brand-blue); text-transform: uppercase; text-shadow: 4px 4px 0px #fff; margin:0; line-height: 1; }
.mizah-subtitle { font-family: 'Montserrat', sans-serif; font-size: 3vw; color: var(--brand-red); font-weight: 900; letter-spacing: 5px; margin:0; }
        
/* Kura Ekranı */
.draft-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 2vw; padding: 2vw; margin-top: 5vh; }
.vs-card { background: rgba(255,255,255,0.1); border: 3px solid var(--brand-blue); border-radius: 20px; padding: 20px; width: 40%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5); transform: scale(0); animation: popIn 0.5s forwards; }
.team-box { text-align: center; width: 40%; }
.team-nick { font-size: 2.5vw; font-weight: 900; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.team-masa { font-size: 1.5vw; color: #aaa; }
.vs-text { font-family: 'Oswald'; font-size: 4vw; color: var(--brand-red); font-style: italic; text-shadow: 2px 2px 0 #000; }
        
.waiting-text { font-size: 3vw; color: #fff; text-align: center; margin-top: 20vh; animation: pulse 2s infinite; font-weight: bold; }

@keyframes popIn { 0% { transform: scale(0); opacity: 0; } 80% { transform: scale(1.05); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }