.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
    z-index: 0;
}

.slider-container--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.slider-container--empty .section-empty-message {
    width: 100%;
}

/* Slayt içi kontrol — navbar (z-50) altında kalmalı */
.slider-controls {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    user-select: text;
    z-index: 1;
}

/* Karartma katmanı metin/link tıklamalarını engellemesin */
.slide .slide-overlay-dim {
    pointer-events: none;
}

.slide .slide-content {
    position: relative;
    z-index: 2;
    user-select: text;
}

.slide.active a,
.slide.active button {
    pointer-events: auto;
}

/* Slider üst başlık — koyu görsellerde de okunur */
.slide-subtitle-badge {
    display: inline-block;
    background-color: #dc2626;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 1.3;
    padding: 0.4rem 0.9rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slide-overlay {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
}

.slide-1 {
    background-image: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?q=80&w=2000&auto=format&fit=crop');
}

.slide-2 {
    background-image: url('https://images.unsplash.com/photo-1522771739844-6a9f6d5f14af?q=80&w=2000&auto=format&fit=crop');
}

.slide-3 {
    background-image: url('https://images.unsplash.com/photo-1517486808906-6ca8b3f04846?q=80&w=2000&auto=format&fit=crop');
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}
