/* Arka plan glow + canvas */
.st-dqs-wrapper {
    position: relative;
    width: 100%;
    padding: 80px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    color: #f8f8f8;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    overflow: hidden;
}

/* Altın parıltı */
.st-dqs-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.st-dqs-glow::before {
    content: "";
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle at center, rgba(255, 215, 128, 0.08) 0%, rgba(0,0,0,0) 55%);
    opacity: 1;
}

/* Ana kart */
.st-dqs-frame {
    position: relative;
    max-width: 1240px;
    width: 100%;
    background: #EEEDE0;
    padding: 96px 80px 110px;
    box-shadow: 0 0 0 1px rgb(179 171 155 / 0%), 0 0px 10px rgb(0 0 0 / 20%);
    box-sizing: border-box;
}

/* Köşe çizgileri (tam çerçeve yerine kısa köşeler) */
.st-dqs-corner {
    position: absolute;
    width: 54px;
    height: 36px;
    border-color: #cba353;
    border-style: solid;
    opacity: 0.95;
}

.st-dqs-corner-tl {
    top: 26px;
    left: 26px;
    border-width: 2px 0 0 2px;
}

.st-dqs-corner-tr {
    top: 26px;
    right: 26px;
    border-width: 2px 2px 0 0;
}

.st-dqs-corner-bl {
    bottom: 26px;
    left: 26px;
    border-width: 0 0 2px 2px;
}

.st-dqs-corner-br {
    bottom: 26px;
    right: 26px;
    border-width: 0 2px 2px 0;
}

/* İç alan */
.st-dqs-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 36px;
}

/* Tırnak işaretleri */
.st-dqs-quote-mark {
    font-size: 40px;
    color: #b08933;
    opacity: 0.7;
    flex-shrink: 0;
}

.st-dqs-quote-left {
    align-self: flex-start;
    margin-top: 6px;
}

.st-dqs-quote-right {
    align-self: flex-end;
    margin-bottom: -6px;
}

/* Slider metinleri */
.st-dqs-slides {
    flex: 1;
    position: relative;
    min-height: 120px;
}

.st-dqs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.st-dqs-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.st-dqs-text {
    font-size: 26px;
    line-height: 1.65;
    text-align: center;
    color: #0e0e0e;
    letter-spacing: 0.01em;
}

.st-dqs-text p {
    margin: 0;
}

/* Üst/alt ayraç çizgisi */
.st-dqs-divider {
    margin-top: 90px;
    border-bottom: 1px solid rgba(180, 150, 90, 0.35);
}

/* Kontroller alanı */
.st-dqs-controls {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

/* Ok butonları */
.st-dqs-arrow {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 2px;
    border: 1px solid rgba(222, 179, 94, 0.9);
    background: transparent;
    color: #1e1e1b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.st-dqs-arrow span {
    display: inline-block;
    font-size: 24px;
    transform: translateY(-1px);
}

.st-dqs-arrow:hover {
    background: linear-gradient(135deg, #ddba63, #f5e3a4);
    color: #1b1307;
    box-shadow: 0 0 22px rgba(245, 214, 132, 0.85);
    transform: translateY(-1px);
}

/* Sayfa numaraları + barlar */
.st-dqs-pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 26px;
    min-width: 320px;
    justify-content: center;
}

.st-dqs-page-label {
    font-size: 18px;
    color: #e2c881;
    opacity: 0.9;
}

.st-dqs-pagination {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.st-dqs-dot {
    width: 44px;
    height: 4px;
    border-radius: 999px;
    border: none;
    background: rgba(160, 137, 80, 0.4);
    padding: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease, transform 0.2s ease, width 0.25s ease, opacity 0.25s ease;
}

.st-dqs-dot.is-active {
    width: 60px;
    background: linear-gradient(90deg, #f3d37a, #c89a3b);
    transform: translateY(-1px);
    opacity: 1;
}

.st-dqs-dot:hover {
    background: rgba(222, 179, 94, 0.9);
}

/* Erişilebilirlik */
.st-dqs-pagination .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .st-dqs-frame {
        padding: 80px 60px 96px;
    }

    .st-dqs-text {
        font-size: 22px;
    }
}

@media (max-width: 960px) {
    .st-dqs-wrapper {
        padding: 60px 10px;
    }

    .st-dqs-frame {
        padding: 60px 34px 80px;
    }

    .st-dqs-inner {
        gap: 20px;
    }

    .st-dqs-quote-mark {
        display: none;
    }

    .st-dqs-slides {
        min-height: 100px;
    }

    .st-dqs-text {
        font-size: 20px;
    }

    .st-dqs-divider {
        margin-top: 60px;
    }

    .st-dqs-controls {
        margin-top: 26px;
        gap: 20px;
    }

    .st-dqs-arrow {
        width: 52px;
        height: 52px;
    }

    .st-dqs-pagination-wrapper {
        gap: 18px;
        min-width: 0;
    }

    .st-dqs-page-label {
        font-size: 16px;
    }

    .st-dqs-dot {
        width: 30px;
    }

    .st-dqs-dot.is-active {
        width: 42px;
    }

    .st-dqs-corner {
        width: 40px;
        height: 26px;
    }
}

@media (max-width: 600px) {
    .st-dqs-frame {
        padding: 44px 22px 60px;
    }

    .st-dqs-text {
        font-size: 17px;
    }

    .st-dqs-controls {
        gap: 16px;
    }

    .st-dqs-arrow {
        width: 46px;
        height: 46px;
    }

    .st-dqs-page-label {
        font-size: 14px;
    }

    .st-dqs-dot {
        width: 24px;
    }

    .st-dqs-dot.is-active {
        width: 34px;
    }

    .st-dqs-divider {
        margin-top: 44px;
    }
}
