.assets-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
    padding: 80px 0;
    overflow: hidden;

}

.assets-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.assets-header {
    text-align: center;
    margin-bottom: 50px;
}

.assets-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.assets-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.assets-carousel-wrapper {
    position: relative;
    padding: 0 60px;

}

.assets-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 20px 0;
}

.assets-carousel::-webkit-scrollbar {
    display: none;
}

.assets-card {
    flex: 0 0 300px;
    height: 600px;
    border-radius: 24px;
    background: var(--color-tints-light-blue);
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.assets-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

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

.assets-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 30px -10px var(--color-tints-light-blue), 0 10px 20px -10px rgba(0, 0, 0, 0.15);
}

.assets-card-inner {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 18px;
    background: #1a1a1a;
    overflow: hidden;
}

.assets-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.assets-card:hover .assets-card-video {
    transform: scale(1.05);
}

.assets-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.assets-card:hover .assets-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.assets-card-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.assets-card-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.4;
}

.assets-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--color-tints-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    z-index: 3;
}

.assets-play-btn svg {
    width: 24px;
    height: 24px;
    fill: #1a1a1a;
    margin-left: 4px;
}

.assets-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.assets-card.playing .assets-play-btn {
    opacity: 0;
    pointer-events: none;
}

.assets-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.assets-nav-btn:hover {
    background: var(--color-tints-light-blue);
    transform: translateY(-50%) scale(1.1);
}

.assets-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: #1a1a1a;
    stroke-width: 2.5;
    fill: none;
}

.assets-nav-btn.prev {
    left: 0;
}

.assets-nav-btn.next {
    right: 0;
}

.assets-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.assets-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.assets-indicator.active {
    background: linear-gradient(145deg, #d4af37, #c5a028);
    width: 36px;
    border-radius: 6px;
}

.assets-indicator:hover:not(.active) {
    background: #d0d0d0;
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .assets-carousel-wrapper {
        padding: 0 50px;
    }

    .assets-card {
        flex: 0 0 260px;
        height: 460px;
    }
}

@media (max-width: 768px) {
    .assets-section {
        padding: 60px 0;
    }

    .assets-carousel-wrapper {
        padding: 0 20px;
    }

    .assets-carousel {
        gap: 16px;
    }

    .assets-card {
        flex: 0 0 220px;
        height: 400px;
    }

    .assets-nav-btn {
        width: 40px;
        height: 40px;
    }

    .assets-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .assets-play-btn {
        width: 50px;
        height: 50px;
    }

    .assets-play-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .assets-section {
        padding: 40px 0;
    }

    .assets-header {
        margin-bottom: 30px;
    }

    .assets-carousel-wrapper {
        padding: 0 15px;
    }

    .assets-card {
        flex: 0 0 200px;
        height: 360px;
        border-radius: 18px;
    }

    .assets-card-inner {
        border-radius: 14px;
    }

    .assets-nav-btn {
        display: none;
    }

    .assets-indicators {
        margin-top: 20px;
    }
}

/*  */