body {
    background: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
}

.eagle-lake-regular {
  font-family: "Eagle Lake", serif;
  font-weight: 400;
  font-style: normal;
}
.macondo-regular {
  font-family: "Macondo", cursive;
  font-weight: 400;
  font-style: normal;
}

#title {
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
}

#title .page-title {
    margin: 0;
}

#container {
    width: 95%;
    max-width: 600px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#round-banner {
    background: #444;
    padding: 12px;
    font-size: 1.4rem;
    text-align: center;
    border-radius: 8px;
}

.leaderboard-section h2 {
    margin: 0;
    text-align: center;
}

.leaderboard {
    background: #222;
    padding: 10px;
    border-radius: 8px;
    list-style: none;
    margin: 0;
}

.leaderboard li {
    padding: 4px 0;
    border-bottom: 1px solid #333;
    text-align: center;
}

.leaderboard li:last-child {
    border-bottom: none;
}

#winner-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.winner-box {
    background: #555;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
}

#champion-box {
    background: #777;
    width: 60%;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    position: relative;
}

#champion-box::before {
    content: "🏆";
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 3rem; 
}

#champion-box::after {
    content: "🏆";
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    font-size: 3rem; 
}

#round-wrapper {
    display: flex;
    gap: 15px;
    width: 100%;
}

@media (max-width: 600px) {
    #round-wrapper {
        flex-direction: column;
    }
}

#round-list {
    flex: 1;
}

#round-list h2 {
    text-align: center;
}

#round-list ul {
    background: #222;
    padding: 10px;
    border-radius: 8px;
    list-style: none;
    margin: 0;
}

#round-list li {
    padding: 4px 0;
    text-align: center;
}

#info-box {
    flex: 1;
    background: #222;
    padding: 10px;
    border-radius: 8px;
}

#info-box p,
#info-box h2,
#info-box h3 {
    text-align: center;
    margin: 5px 0;
}


.dropdown {
    background: #333;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.dropdown summary {
    padding: 10px;
    cursor: pointer;
    background: #444;
    color: white;
    border-radius: 8px;
    font-size: 1.1rem;
}

.dropdown summary:hover {
    background: #555;
}

.dropdown-content {
    padding: 10px;
    background: #2a2a2a;
    border-top: 1px solid #444;
}

.dropdown-content p {
    margin: 0;
}

.dropdown img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 5px auto;
    border-radius: 6px;
}


#leaderboard-wrapper {
    display: flex;
    gap: 15px;
    width: 100%;
}

@media (max-width: 600px) {
    #leaderboard-wrapper {
        flex-direction: column;
    }
}


.leaderboard-section {
    flex: 1;
}

#archive-wrapper {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 600px) {
    #archive-wrapper {
        flex-direction: column;
    }
}

/* Archive box */
#archive-box {
    flex: 1;
    background: #222;
    padding: 10px;
    border-radius: 8px;
}

#archive-box h2 {
    text-align: center;
    margin-bottom: 10px;
}

.archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.archive-list li {
    margin: 5px 0;
}

.archive-list a {
    color: #4dc0ff;
    text-decoration: none;
    font-size: 1.1rem;
}

.archive-list a:hover {
    text-decoration: underline;
}

#fame-box {
    flex: 1;
    background: #222;
    padding: 10px;
    border-radius: 8px;
}

#fame-box h2 {
    text-align: center;
    margin-bottom: 10px;
}

#fame-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.fame-img {
    background: #555;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
}



