body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1B1B1B;
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
    text-align: center;
}

:root {
    --xvlvt-burgundy: #5D0D0D;
    --xvlvt-charcoal: #1B1B1B;
    --xvlvt-gold: #D4AF37;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    margin-bottom: 5px;
    font-family: 'Manbow', serif;
    letter-spacing: 2px;
    color: #D4AF37;
    font-size: 2.8em;
}

.tagline {
    font-size: 0.85em;
    color: #999;
    margin-bottom: 20px;
    font-style: italic;
    letter-spacing: 1px;
}

.hidden {
    display: none;
}

.contestants {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contestant {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    width: 45%;
    min-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .contestant {
        width: 100%;
        min-width: 0;
        margin-bottom: 20px;
    }
    
    .vs {
        margin: 10px 0;
    }
}

.media-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.media-container img, .media-container video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.info {
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #aaa;
}

button {
    background-color: #5D0D0D;
    color: white;
    border: 1px solid #D4AF37;
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

button:hover {
    background-color: #D4AF37;
    color: #1B1B1B;
}

.vs {
    font-size: 2em;
    font-weight: bold;
    color: #D4AF37;
}

.streak-info {
    margin-top: 20px;
    font-size: 1.5em;
}
