.advantages-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantages-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    color: #1a1a1a;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.section-title span {
    color: #ffcc00;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.advantages-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.advantage-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.advantage-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(194, 0, 0, 0.15);
    border-color: rgba(194, 0, 0, 0.2);
}

.advantage-icon-box.image-mask {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 4px solid #C20000;
    transition: transform 0.4s ease;
}

.advantage-card:hover .advantage-icon-box.image-mask {
    transform: scale(1.08) rotate(3deg);
}

.advantage-img-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantage-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.advantage-card-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@keyframes streamingGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fallingStarsPattern {
    0% { background-position: 0px 0px, 0px 0px; }
    100% { background-position: 200px 400px, 400px 600px; }
}

.streaming-promo-container {
    background: linear-gradient(90deg, #900000, #C20000, #E60000, #C20000);
    background-size: 300% 300%;
    animation: streamingGradient 8s ease infinite;
    border-radius: 30px;
    padding: 60px 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(194, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    border: 3px solid #ffcc00;
}

.streaming-promo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(125deg, rgba(255, 204, 0, 0.15) 2px, transparent 2px),
        linear-gradient(125deg, rgba(255, 204, 0, 0.08) 3px, transparent 3px);
    background-size: 120px 240px, 180px 360px;
    animation: fallingStarsPattern 6s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.streaming-promo-text {
    max-width: 800px;
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
}

.streaming-promo-text h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.streaming-promo-text p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.streaming-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.streaming-carousel-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: slideCarousel 25s linear infinite;
}

.streaming-carousel-track:hover {
    animation-play-state: paused;
}

.streaming-logo-item {
    width: 160px;
    height: 85px;
    margin: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 15px;
    transition: transform 0.3s;
}

.streaming-logo-item:hover {
    transform: scale(1.1);
}

.streaming-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes slideCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 992px) {
    .advantage-card {
        max-width: 100%;
    }
    
    .streaming-promo-text h3 {
        font-size: 1.8rem;
    }
    
    .streaming-promo-container {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        gap: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .streaming-logo-item {
        width: 130px;
        height: 70px;
        margin: 0 10px;
        background: transparent;
    }
}