.c_rousel-container {
    position: relative;
    width: 96%;
    height: 89vh;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    border-radius: 7px;
    border: .5px solid rgba(152, 200, 255, 0.626);
    box-shadow: 0 4px 12px rgba(66, 165, 245, 0.4);
}

.c_rousel {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

.c_rousel-sl_de {
    min-width: 100%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c_rousel-sl_de picture, .c_rousel-sl_de img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    user-select: none;
}

.img-protect-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: auto;
    background: transparent;
}

.sl_de-content {
    position: absolute;
    top: 15%;
    left: 4%;
    max-width: 600px;
    padding: 2rem;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.05) 80%, transparent 100%);
    color: white;
    overflow-wrap: break-word;
    word-wrap: break-word;
    border-radius: 1rem;
    border-left: 1px solid rgba(121, 206, 255, 0.685);
    z-index: 3;
}

.sl_de-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.sl_de-description {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.ct_-button {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    transition: .5s;
}

.ct_-button:hover {
    background: linear-gradient(135deg, #ffb82ae2, #ffb82ae2, #ffb82ae2, #ffcb63e2, #d6a609a0, #d6a609a0, #d6a609a0);
    border: 1px solid #432d01a0;
    transform: scale(1.05);
}

.n_v-button, .internal-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: .5s;
    transform: scale(.75);
}

.n_v-button:hover, .internal-nav-button:hover {
    background: linear-gradient(135deg, #ffcd69e2, #ffc505a0);
    border: 1px solid #352900d2;
}

.n_v-button:hover, .internal-nav-button:active {
    background: linear-gradient(135deg, #ffcd69e2, #ffc505a0);
    border: 1px solid #352900d2;
}

.n_v-left { left: 10px; }
.n_v-right { right: 10px; }

.internal-left {
    left: 20px;
    z-index: 5;
}

.internal-right {
    right: 20px;
    z-index: 5;
}

.progress-indic_tors {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

#slideshow-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

#slideshow-toggle:hover {
    background: linear-gradient(135deg, #ffcd69e2, #ffc505a0);
}

@media (max-width: 768px) {
    .sl_de-title { font-size: 1.5rem; }
    .sl_de-description { font-size: 0.9rem; }
    .sl_de-content { max-width: 90%; padding: 1.5rem; }
    .c_rousel-container {
        position: relative;
        width: 96%;
        height: 89vh;
    }
}


