body {
    background-color: #121212;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.1;
    margin-bottom: 40px;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #ff0000,
        0 0 30px #ff0000;
}

.battle-arena {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.competitor {
    background-color: #1e1e1e;
    border: 2px solid #333;
    border-radius: 15px;
    padding: 20px;
    width: 45%;
    transition: all 0.3s ease;
    position: relative;
}

.competitor.leader {
    border-color: #ffd700;
    box-shadow: 0 0 20px #ffd700;
    transform: scale(1.02);
}

.crown {
    display: none; /* Hidden by default */
    font-size: 3rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffd700;
    text-shadow: 0 0 10px #000;
}

.competitor.leader .crown {
    display: block; /* Show crown on leader */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #eee;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.stat-item {
    background-color: #282828;
    padding: 15px 20px;
    border-radius: 10px;
    width: 30%;
}

.stat-label {
    font-size: 1rem;
    color: #aaa;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.vs {
    font-family: 'Oswald', sans-serif;
    font-size: 6rem;
    color: #ff0000;
    align-self: center;
    text-shadow:
        0 0 10px #fff,
        0 0 20px #ff0000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .battle-arena {
        flex-direction: column;
        align-items: center;
    }
    .competitor {
        width: 90%;
    }
    .vs {
        margin: 20px 0;
    }
}
