.video-showcase {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.video-slides {
    position: relative;
}

.video-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-slide.active {
    display: block;
    opacity: 1;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1rem;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-dots {
    text-align: center;
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    display: inline-flex;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.nav-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color-light);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.nav-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-showcase {
        padding: 1rem 0;
    }
    
    .nav-dots {
        margin-top: 0.5rem;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }
}