.footer-youtube-section {
    background: #000000;
    padding: 100px 0;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 80px 0 0;
}

.footer-youtube-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.youtube-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.yt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff0000;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.yt-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.yt-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #a0aec0;
    margin-bottom: 40px;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #000;
    padding: 18px 35px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-youtube:hover {
    background: #ff0000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.youtube-visual .video-mockup {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16 / 9;
}

.youtube-visual .video-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-mockup:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff0000;
}

@media (max-width: 992px) {
    .youtube-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .yt-badge {
        justify-content: center;
    }

    .yt-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .footer-youtube-section {
        padding: 60px 20px;
    }

    .btn-youtube {
        width: 100%;
        justify-content: center;
    }
}