.section13-container {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s13-slider, .s13-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.s13-slide { opacity: 0; transition: opacity 1.5s ease; }
.s13-slide.active { opacity: 1; }
.s13-slide img { width: 100%; height: 100%; object-fit: cover; }

/* LE CARRÉ TRANSPARENT (GLASSMORPHISM) */
.s13-quote-box {
    position: relative;
    z-index: 20;
    width: 80%;
    max-width: 500px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15); /* Fond très clair */
    backdrop-filter: blur(5px); /* EFFET DE FLOU */
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#s13-typewriter {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: inline;
}

.cursor {
    font-size: 1.5rem;
    color: #FFD700;
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
    50% { opacity: 0; }
}

@media (max-width: 768px) {
    #s13-typewriter { font-size: 1.1rem; }
    .s13-quote-box { width: 90%; padding: 20px; }
}
.s13-dots {
    position: absolute;
    bottom: 20px;
    z-index: 30;
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background: #FFD700; /* La couleur dorée de ton curseur */
}