/* Стили для раздела РЕАЛЬНЫЕ ПОСТРАДАВШИЕ */

.real-victims-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
    border-top: 3px solid var(--danger-red);
    border-bottom: 3px solid var(--danger-red);
}

.victims-description {
    text-align: center;
    margin-bottom: 50px;
}

.victims-intro {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.victims-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.victim-stat {
    text-align: center;
    padding: 20px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.victim-stat:hover {
    background: rgba(220, 38, 38, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}

.victim-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--danger-red);
    margin-bottom: 10px;
}

.victim-stat .stat-label {
    font-size: 1rem;
    color: var(--gray-light);
}

/* Карусель пострадавших */
.victims-carousel-container {
    margin: 50px 0;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.carousel-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0088cc, #005f99);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #0099dd, #0077bb);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-indicator {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.victims-carousel {
    overflow: hidden;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.victims-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 30px;
    transition: transform 0.5s ease;
}

/* Карточки пострадавших */
.victim-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.victim-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.victim-card:hover::before {
    left: 100%;
}

.victim-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.victim-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0088cc, #005f99);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    border: 3px solid rgba(220, 38, 38, 0.3);
}

.victim-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.victim-username {
    font-size: 0.9rem;
    color: #0088cc;
    margin-bottom: 15px;
    font-family: monospace;
}

.victim-status {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(252, 211, 77, 0.2);
    color: var(--warning-yellow);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.victim-contact {
    background: linear-gradient(135deg, #0088cc, #005f99);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.victim-contact:hover {
    background: linear-gradient(135deg, #0099dd, #0077bb);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

/* Мобильные контролы */
.carousel-mobile-controls {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 20px;
}

.mobile-btn {
    background: linear-gradient(135deg, #0088cc, #005f99);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-btn:hover {
    background: linear-gradient(135deg, #0099dd, #0077bb);
    transform: scale(1.1);
}

.mobile-indicator {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--white);
    font-weight: 600;
}

/* Контактная информация */
.contact-info {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: rgba(220, 38, 38, 0.05);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 20px;
}

.contact-text {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.contact-btn.primary {
    background: linear-gradient(135deg, #0088cc, #005f99);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.contact-btn.primary:hover {
    background: linear-gradient(135deg, #0099dd, #0077bb);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.contact-btn.secondary {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.contact-btn.secondary:hover {
    background: linear-gradient(135deg, #16A34A, #15803D);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Адаптивность */
@media (max-width: 768px) {
    .real-victims-section {
        padding: 60px 0;
    }
    
    .victims-intro {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .victims-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .carousel-controls {
        display: none;
    }
    
    .carousel-mobile-controls {
        display: flex;
    }
    
    .victims-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .victim-card {
        padding: 20px;
    }
    
    .victim-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .victims-grid {
        padding: 15px;
    }
    
    .victim-card {
        padding: 15px;
    }
    
    .victim-name {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 25px 20px;
    }
    
    .contact-text {
        font-size: 1rem;
    }
}

/* Анимации */
@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.victim-card {
    animation: cardAppear 0.6s ease-out;
}

.victim-card:nth-child(1) { animation-delay: 0.1s; }
.victim-card:nth-child(2) { animation-delay: 0.2s; }
.victim-card:nth-child(3) { animation-delay: 0.3s; }
.victim-card:nth-child(4) { animation-delay: 0.4s; }
.victim-card:nth-child(5) { animation-delay: 0.5s; }
.victim-card:nth-child(6) { animation-delay: 0.6s; }
.victim-card:nth-child(7) { animation-delay: 0.7s; }
.victim-card:nth-child(8) { animation-delay: 0.8s; }
.victim-card:nth-child(9) { animation-delay: 0.9s; }
.victim-card:nth-child(10) { animation-delay: 1.0s; }