﻿ 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(to right, #4b6cb7, #182848);
    color: white;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.date-badge {
    display: inline-block;
    background: #ff6b6b;
    padding: 8px 15px;
    border-radius: 30px;
    margin: 15px 0;
    font-weight: bold;
}

.content-section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

h2 {
    color: #4b6cb7;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.winners-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.winner-card {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 20px;
    width: 220px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .winner-card:hover {
        transform: translateY(-5px);
    }

    .winner-card.first {
        border-top: 5px solid #FFD700;
    }

    .winner-card.second {
        border-top: 5px solid #C0C0C0;
    }

.winner-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.first .winner-icon {
    color: #FFD700;
}

.second .winner-icon {
    color: #C0C0C0;
}

.partners {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #4b6cb7;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gratitude-section {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-left: 5px solid #4b6cb7;
    padding: 20px;
    border-radius: 5px;
}

.team-list {
    list-style-type: none;
    margin: 15px 0;
}

    .team-list li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .winners-list {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2rem;
    }
}

 
