/* Video Demo Section Styles - Light Theme */
.video-demo-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.video-demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-demo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-demo-header h2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.video-wrapper {
    position: relative;
    background: var(--bg-elevated);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow:
        var(--shadow-xl),
        0 0 40px rgba(79, 70, 229, 0.1);
    transform: translateY(-4px);
}

.video-aspect-ratio {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #18181B;
    border-radius: 16px;
    overflow: hidden;
}

.video-aspect-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}
