/* Slider Stilleri */
.slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.video-slider {
    display: flex;
    transition: transform 0.5s ease;
    aspect-ratio: 16/9;
}

.slider-item {
    min-width: 100%;
    position: relative;
}

.slider-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: #fff;
}

.section-title {
    text-align: center;
    margin: 2rem 0;
    color: #333;
    font-size: 2rem;
}

/* Mobil için slider düzenlemeleri */
@media (max-width: 768px) {
    .slider-container {
        margin: 1rem auto;
        border-radius: 8px;
    }

    .section-title {
        font-size: 1.5rem;
        margin: 1.5rem 0;
    }

    .slider-dots {
        bottom: 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}
