﻿h2 {
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
    margin-top: 5px;
}

.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-top: 20px;
}

.place {
    display: flex;
  /*  flex-direction: column;
    justify-content: flex-end;
    align-items: center;*/
    width: 350px;
    height: 160px;
    border-radius: 10px;
    margin: 20px;
    padding: 15px;
    color: #fff;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    background-color: black;
    border: 1px solid #fff; /* Белая граница */
    box-shadow: 0 0 2px 2px #fff; /* Эффект свечения для границы */
    font-family: Arial, sans-serif;
    text-align: center;
}
.place {
    flex-direction: row; /* Меняем на горизонтальное расположение */
    justify-content: flex-start; /* Контент налево */
    align-items: center;
}

.winner-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 0 8px #00aeff;
}

    .winner-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.winner-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 1000px;
    margin-top: -250px; /* Чуть поднимаем вверх */
}

.prize-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}


.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.place img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Полное отображение изображения */
    border-radius: 100px;
}


.place p {
    margin: 5px 0;
    font-size: 14px;
    /*word-wrap: break-word;*/ /* Перенос длинного текста */
}

@media (max-width: 768px) {
    .podium {
        flex-direction: column;
        align-items: center;
    }
}

.place p span {
    color: #fff; /* Белый цвет текста */
    text-shadow: 0 0 10px rgba(0, 174, 255, 0.8), 0 0 20px rgba(0, 174, 255, 0.6), 0 0 30px rgba(0, 174, 255, 0.4);
    font-weight: bold; /* Чтобы текст был ярче */
}

body {
    background-color: black !important;
}




