/* Video Section */

.video-section__inner {
    display: flex;
    align-items: center;
    gap: var(--space-20);
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
}

.video-section__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-7);
}

.video-section__title {
    font-size: var(--text-6xl);
    font-weight: 800;
    color: var(--foreground);
    line-height: 1.2;
}

.video-section__desc {
    font-size: var(--text-body);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
}

.video-section__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    list-style: none;
}

.video-section__feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-md);
    font-weight: 500;
    color: var(--foreground);
}

.video-section__player {
    position: relative;
    width: 620px;
    height: 400px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--bg-dark-secondary);
    background-image: url('/images/video-thumb.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-section__play-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.video-section__play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-pill);
    background-color: var(--info);
    color: var(--text-white);
    box-shadow: 0 0 32px rgba(37, 99, 235, 0.33), 0 0 0 4px rgba(37, 99, 235, 0.33);
    transition: transform 0.2s ease;
}

.video-section__play-btn:hover {
    transform: scale(1.08);
}

.video-section__play-label {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--text-light);
}

.video-section__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    height: 48px;
    padding: 0 24px;
    background-color: var(--overlay-dark);
}

.video-section__bar-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-pill);
    background-color: var(--error);
    flex-shrink: 0;
}

.video-section__bar-track {
    flex: 1;
    height: 3px;
    border-radius: var(--radius-pill);
    background-color: var(--white-alpha-mid);
    position: relative;
}

.video-section__bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: var(--radius-pill);
    background-color: var(--info);
}

.video-section__bar-time {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--text-white-muted);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .video-section__inner {
        flex-direction: column;
        gap: var(--space-10);
    }

    .video-section__player {
        width: 100%;
        height: 240px;
    }
}
