/* Эмблема и заголовок */
.header-with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.festival-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.festival-title {
    flex: 1;
    min-width: 300px;
}

/* Навигация по фестивалям */
.festival-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.festival-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.festival-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.festival-card h3 {
    color: #2575fc;
    margin-bottom: 10px;
}

.year-badge {
    display: inline-block;
    background: #6a11cb;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-top: 10px;
}
/* Главная навигация по фестивалям */
.main-nav {
    display: flex;
    justify-content: center;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.main-nav a {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    border-right: 1px solid #555;
}

.main-nav a:last-child {
    border-right: none;
}

.main-nav a:hover {
    background: #444;
}

.main-nav a.active {
    background: #2575fc;
}

/* Превью предыдущих фестивалей */
.previous-festivals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.fest-preview {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-left: 5px solid #6a11cb;
}

.fest-preview:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.fest-preview h3 {
    color: #2575fc;
    margin-bottom: 10px;
}

.fest-preview p {
    color: #666;
    font-size: 0.9em;
}

/* Герой-секция для главной */
.hero {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    margin: 30px 0;
}

.hero h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 15px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .main-nav {
        flex-wrap: wrap;
    }
    
    .main-nav a {
        flex: 1 0 45%;
        border-bottom: 1px solid #555;
    }
    
    .main-nav a:nth-child(even) {
        border-right: none;
    }
}

/* Год в заголовке */
.year-header {
    display: inline-block;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-left: 10px;
    vertical-align: middle;
}
/* Навигация между фестивалями */
.festival-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.nav-prev, .nav-next {
    padding: 15px 25px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #2575fc;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.nav-prev:hover, .nav-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Стили для победителей */
.winners {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.winner-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #6a11cb;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.winner-card h4 {
    color: #2575fc;
    margin-bottom: 10px;
}
/* Стили для страниц фестивалей */
.festival-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #6a11cb;
}

.info-card h3 {
    color: #2575fc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nominations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.nomination-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.nomination-card h4 {
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nomination-card ul {
    list-style: none;
    padding: 0;
}

.nomination-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
}

.nomination-card li:last-child {
    border-bottom: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.team-member {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.member-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    margin: 0 auto 15px;
}

.note {
    background: #e7f3ff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2575fc;
    margin: 30px 0;
}

/* Достижения */
.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.achievement-card {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.achievement-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

/* Жюри */
.jury-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.jury-member {
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #6a11cb;
}

.legacy {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .festival-info, .nominations, .team-grid, .achievements, .jury-list {
        grid-template-columns: 1fr;
    }
    
    .program-table {
        font-size: 0.9em;
    }
    
    .program-table th, .program-table td {
        padding: 8px;
    }
}
/* Стили для страницы "О проекте" */
.goals-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.goal-item {
    padding: 25px;
    background: white;
    border-radius: 10px;
    border-left: 5px solid #6a11cb;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.goal-item h4 {
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    color: #2575fc;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.founder-role {
    color: #6a11cb;
    font-weight: bold;
    margin-bottom: 15px;
}

.founder-bio {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.founder-quote {
    padding: 15px;
    background: #f0f7ff;
    border-radius: 10px;
    border-left: 4px solid #2575fc;
    margin-top: 15px;
    color: #444;
}
/* Стили для победителей 2024 */
.winners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    border-left: 5px solid #6a11cb;
}

.winners-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
    font-size: 1.1em;
}

.winners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.winner-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s;
}

.winner-card:hover {
    transform: translateY(-5px);
}

.winner-card.grand-prix {
    border-top: 5px solid #FFD700;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
}

.winner-card.first-place {
    border-top: 5px solid #C0C0C0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.winner-card.second-place {
    border-top: 5px solid #CD7F32;
    background: linear-gradient(135deg, #f5e9dc 0%, #f0e0d1 100%);
}

.winner-rank {
    font-size: 2.5em;
    flex-shrink: 0;
}

.winner-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.winner-film {
    font-size: 1.3em;
    font-weight: bold;
    color: #6a11cb;
    margin: 8px 0;
}

.winner-director {
    color: #555;
    margin: 8px 0;
}

.winner-description {
    color: #777;
    font-size: 0.9em;
    margin-top: 10px;
    font-style: italic;
}

/* Специальные призы */
.special-prizes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.special-prize-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-left: 4px solid #2575fc;
}

.prize-icon {
    font-size: 2em;
    flex-shrink: 0;
}

.prize-content h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.prize-winner {
    color: #6a11cb;
    font-weight: bold;
    margin: 5px 0;
}

.prize-film {
    font-style: italic;
    color: #555;
    margin: 5px 0;
}

.prize-director {
    color: #666;
    margin: 5px 0;
}

.prize-note {
    color: #888;
    font-size: 0.85em;
    margin-top: 8px;
    font-style: italic;
}

/* Поздравления */
.winners-celebration {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.celebration-icon {
    font-size: 3em;
    flex-shrink: 0;
}

.celebration-text h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.celebration-text p {
    opacity: 0.9;
    font-size: 1.1em;
}

/* Адаптивность */
@media (max-width: 768px) {
    .winners-section {
        padding: 25px;
    }
    
    .winners-list, .special-prizes {
        grid-template-columns: 1fr;
    }
    
    .winner-card, .special-prize-card {
        flex-direction: column;
        text-align: center;
    }
    
    .winners-celebration {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
/* Стили для победителей 2022 года */
.winners-2022-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    border-left: 5px solid #9c27b0;
}

.main-winners {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px 0;
}

.grand-prix-2022 {
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 3px solid #ffd600;
}

.winner-trophy {
    font-size: 3em;
    flex-shrink: 0;
}

.winner-main-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.winner-film-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #d32f2f;
    margin: 10px 0;
}

.winner-director {
    color: #555;
    font-size: 1.1em;
    margin: 10px 0;
}

.winner-description {
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* Категории победителей */
.winner-category {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.winner-category h4 {
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-winners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.category-winner {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2196f3;
    transition: transform 0.3s;
}

.category-winner:hover {
    transform: translateX(5px);
    background: #e3f2fd;
}

.category-name {
    font-weight: bold;
    color: #1976d2;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.winner-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.film-title {
    font-weight: bold;
    color: #333;
    font-style: italic;
}

.director {
    color: #666;
    font-size: 0.95em;
}

.additional-winner {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Специальные награды */
.special-awards-2022 {
    margin-top: 40px;
}

.special-awards-2022 h3 {
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.award-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}

.award-icon {
    font-size: 1.8em;
    flex-shrink: 0;
}

.award-content h5 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.award-film, .award-recipient {
    color: #6a11cb;
    font-weight: bold;
    margin: 5px 0;
}

.award-details {
    color: #666;
    font-size: 0.9em;
}

/* Медаль */
.medal-section {
    margin: 30px 0;
}

.medal-card {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid #ffc107;
    max-width: 500px;
    margin: 0 auto;
}

.medal-icon {
    font-size: 2.5em;
    flex-shrink: 0;
}

.medal-content h5 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.2em;
}

.medal-from {
    color: #ff9800;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.medal-film {
    color: #d32f2f;
    font-weight: bold;
    margin: 5px 0;
}

.medal-director {
    color: #666;
    font-size: 0.9em;
}

/* Специальные призы фестиваля */
.festival-special-prizes {
    background: #f3e5f5;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
}

.festival-special-prizes h5 {
    color: #7b1fa2;
    margin-bottom: 15px;
}

.special-prize-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.special-prize-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #9c27b0;
}

.prize-name {
    color: #7b1fa2;
    font-weight: bold;
    font-size: 0.95em;
}

/* Призы и сертификаты */
.prizes-certificates {
    background: #e8f5e9;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
}

.prizes-certificates h5 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.prizes-list {
    list-style: none;
    padding: 0;
}

.prizes-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
}

.prizes-list li:before {
    content: "🎁";
    position: absolute;
    left: 0;
    top: 10px;
}

/* Футер победителей */
.winners-footer {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.winners-footer p {
    font-size: 1.2em;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .winners-2022-section {
        padding: 25px;
    }
    
    .grand-prix-2022 {
        flex-direction: column;
        text-align: center;
    }
    
    .category-winners {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .award-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .medal-card {
        flex-direction: column;
        text-align: center;
    }
}
/* Стили для фото жюри 2022 */
.jury-photos-2022 {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.jury-photos-2022 h4 {
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.jury-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.jury-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.photos-note {
    text-align: center;
    color: #666;
    font-size: 0.9em;
    margin-top: 10px;
    font-style: italic;
}

/* Стили для жюри с фото */
.jury-with-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.jury-member-photo {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.jury-member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.jury-member-photo h4 {
    color: #333;
    margin-bottom: 5px;
}

.jury-member-photo p {
    color: #666;
    font-size: 0.9em;
}

/* Адаптивность фото */
@media (max-width: 768px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jury-photo {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .photos-grid {
        grid-template-columns: 1fr;
    }
    
    .jury-photo {
        height: 200px;
    }
}
/* Стили для постеров 2023 года */
.posters-2023-section {
    background: linear-gradient(135deg, #0c2461 0%, #1e3799 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.posters-2023-section h2, 
.posters-2023-section h3 {
    color: white;
}

.posters-intro {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 1.1em;
}

/* Главный постер Гран-при */
.grand-prix-poster {
    margin: 30px 0;
}

.grand-prix-poster h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.poster-card.featured {
    display: flex;
    gap: 30px;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,215,0,0.3);
    max-width: 800px;
    margin: 0 auto;
}

.poster-image {
    position: relative;
    flex-shrink: 0;
}

.film-poster {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}

.film-poster:hover {
    transform: scale(1.05);
}

.poster-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ffd700;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.poster-info h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.film-director {
    color: #ffd700;
    margin: 10px 0;
    font-size: 1.1em;
}

.film-description {
    color: rgba(255,255,255,0.8);
    margin: 15px 0;
    line-height: 1.5;
}

.film-award {
    background: rgba(255,215,0,0.2);
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: bold;
    border-left: 3px solid #ffd700;
}

/* Сетка постеров */
.top-winners-grid {
    margin: 40px 0;
}

.posters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.poster-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, background 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.poster-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,215,0,0.3);
}

.poster-card .poster-image {
    height: 250px;
    overflow: hidden;
}

.poster-card .film-poster {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.poster-card .poster-info {
    padding: 15px;
}

.poster-card h5 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.film-award-small {
    color: #4fc3f7;
    font-size: 0.85em;
    margin-bottom: 5px;
    line-height: 1.3;
}

.film-director-small {
    color: rgba(255,255,255,0.7);
    font-size: 0.8em;
    margin-top: 8px;
}

/* Документальное кино */
.documentary-winners, .regional-winners {
    margin: 40px 0;
}

.doc-posters, .regional-posters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.poster-card.doc .poster-badge {
    background: #00bcd4;
}

.poster-card.regional .poster-badge {
    background: #8bc34a;
}

/* Специальные призы */
.special-prizes-posters {
    margin: 40px 0;
}

.special-posters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.special-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-left: 4px solid #ff9800;
}

.special-icon {
    font-size: 2em;
    flex-shrink: 0;
}

.special-info h5 {
    color: #ff9800;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.special-film {
    color: white;
    font-weight: bold;
    margin: 5px 0;
}

.special-director {
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
}

.posters-note {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
    font-size: 0.9em;
}

/* Адаптивность */
@media (max-width: 768px) {
    .posters-2023-section {
        padding: 25px;
    }
    
    .poster-card.featured {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .posters-grid, .doc-posters, .regional-posters {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .special-posters {
        grid-template-columns: 1fr;
    }
    
    .special-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .posters-grid, .doc-posters, .regional-posters {
        grid-template-columns: 1fr;
    }
}
/* Стили для текстовых победителей (без постеров) */
/* Обновленные стили для дополнительных победителей 2023 */
.additional-winners-2023 {
    background: linear-gradient(135deg, #0c2461 0%, #1e3799 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.additional-winners-2023 h3 {
    color: white;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.additional-winners-2023 h3:first-child {
    margin-top: 0;
}

/* Документальное кино */
.documentary-winners-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.winner-text-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border-left: 4px solid #4fc3f7;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
}

.winner-text-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.winner-icon {
    font-size: 1.8em;
    flex-shrink: 0;
}

.winner-text-content h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.2em;
}

.award-name {
    color: #4fc3f7;
    font-weight: bold;
    margin: 5px 0;
    font-size: 0.95em;
}

.director-name {
    color: rgba(255,255,255,0.8);
    font-size: 0.9em;
    margin-top: 5px;
}

/* Региональные призы */
.regional-winners-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.regional-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border-left: 4px solid #8bc34a;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
}

.regional-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.region-icon {
    font-size: 1.8em;
    flex-shrink: 0;
}

.regional-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.film-title {
    color: #8bc34a;
    font-weight: bold;
    margin: 5px 0;
    font-size: 1.1em;
}

.film-award {
    color: rgba(255,255,255,0.9);
    margin: 5px 0;
    font-size: 0.95em;
}

.film-director {
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
    margin-top: 5px;
    font-style: italic;
}

/* Специальные призы */
.special-prizes-text-only {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.special-prize-text {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border-left: 4px solid #ff9800;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
}

.special-prize-text:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.special-icon {
    font-size: 1.8em;
    flex-shrink: 0;
}

.special-content h5 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.special-film {
    color: #ff9800;
    font-weight: bold;
    margin: 5px 0;
    font-size: 1em;
}

.special-director {
    color: rgba(255,255,255,0.8);
    font-size: 0.9em;
    margin-top: 5px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .additional-winners-2023 {
        padding: 25px;
    }
    
    .documentary-winners-text,
    .regional-winners-text,
    .special-prizes-text-only {
        grid-template-columns: 1fr;
    }
    
    .winner-text-card,
    .regional-card,
    .special-prize-text {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
/* Стили для фото организаторов 2024 */
.team-photos-2024 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.organizer-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.organizer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.organizer-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #6a11cb;
}

.organizer-info {
    padding: 20px;
}

.organizer-info h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.2em;
}

.organizer-role {
    color: #6a11cb;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.95em;
}

.organizer-bio {
    color: #666;
    font-size: 0.85em;
    line-height: 1.4;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .team-photos-2024 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-photos-2024 {
        grid-template-columns: 1fr;
    }
    
    .organizer-photo {
        height: 180px;
    }
}
/* ... все предыдущие стили ... */

/* Ваши старые стили для постеров 2023, победителей и т.д. */

/* НОВЫЕ СТИЛИ ДЛЯ КРУГЛЫХ ФОТО ДОБАВЬТЕ ЗДЕСЬ (в самый конец) */
.team-photos-2024-circle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
    justify-items: center;
}

.organizer-circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 180px;
}

.organizer-circle-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.organizer-circle-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.organizer-circle-info h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.organizer-circle-role {
    color: #6a11cb;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.organizer-circle-bio {
    color: #666;
    font-size: 0.85em;
    line-height: 1.3;
}

/* Для лучшего отображения на мобильных */
@media (max-width: 768px) {
    .team-photos-2024-circle {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .organizer-circle-photo {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .team-photos-2024-circle {
        grid-template-columns: 1fr;
    }
}
/* Заставляем все секции идти вертикально */
.team-photos-2024-circle,
.winners-section,
.simple-jury,
.festival-navigation {
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-bottom: 40px;
}

/* Если организаторы должны быть в ряд - используйте этот вариант */
.team-photos-2024-circle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.organizer-circle-card {
    width: 300px; /* Фиксированная ширина или процент */
    margin: 0 auto 20px; /* Центрирование и отступ снизу */
}
/* Исправляем только блок организаторов */
.team-photos-2024-circle {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
    margin: 30px 0 !important;
}

.organizer-circle-card {
    flex: 0 0 auto !important;
    width: 250px !important; /* или нужная вам ширина */
    text-align: center !important;
}

/* Для мобильных - можно оставить в строке или сделать вертикально */
@media (max-width: 768px) {
    .team-photos-2024-circle {
        flex-direction: row !important; /* или column, если хотите вертикально на мобильных */
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .organizer-circle-card {
        width: 45% !important; /* две карточки в ряд на мобильных */
        margin-bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    .organizer-circle-card {
        width: 100% !important; /* одна карточка на очень маленьких экранах */
    }
}
/* ===== СТИЛИ ДЛЯ ФОТОГАЛЕРЕИ 2025 ===== */

.photo-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 220px;
    width: 100%;
    background: white;
}

.photo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.festival-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-align: center;
    padding: 20px;
    border: 2px dashed #dee2e6;
}

.festival-photo[src]:not([src=""]) + .photo-placeholder {
    display: none;
}

.photo-gallery-2025 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

@media (max-width: 1024px) {
    .photo-gallery-2025 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .photo-container {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .photo-gallery-2025 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .photo-container {
        height: 250px;
    }
}