body {
    background-color: #10001a;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #220033, #440055);
    padding: 15px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar img {
    height: 50px;
}

.navbar .logo-text {
    font-size: 24px;
    color: #ff00ff;
}

.navbar .logo-text span {
    color: white;
    font-weight: bold;
}

.btn {
    background-color: #ff00ff;
    color: white;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #cc00cc;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    background: #180025;
    box-shadow: 0 4px 10px rgba(255, 0, 255, 0.3);
}

.podium-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px;
}

.podium-card {
    background: #2a003a;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    width: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    max-width: 350px;
}

.podium-card:hover {
    transform: scale(1.05);
}

.podium-image img {
    width: 100%;
    border-radius: 20px;
}

.game-header {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.game-badge {
    background: #ff00ff;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.podium-footer {
    background: #3a004a;
    padding: 10px;
    border-radius: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.podium-footer .podium-title {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.podium-footer .podium-title i {
    color: gold;
}

.podium-footer .podium-date {
    font-size: 14px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 5px;
}

.medals {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
    width: 100%;
}

.medal {
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    text-align: center;
    min-width: 80px;
}

.gold { background-color: gold; color: black; }
.silver { background-color: silver; color: black; }
.bronze { background-color: #cd7f32; color: white; }

.loading-text {
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    color: #ff00ff;
}
