:root {
    --ym-acc-font-scale: 1;
    --ym-acc-line-height: normal;
    --ym-acc-letter-spacing: normal;
    --ym-acc-guide-y: 50vh;
}

.ym-acc-root,
.ym-acc-root * { box-sizing: border-box; }

.ym-acc-skip-link {
    position: fixed;
    left: 12px;
    top: -90px;
    z-index: 2147480000;
    padding: 12px 16px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    transition: top .2s ease;
}
.ym-acc-skip-link:focus { top: 12px; color: #fff; outline: 3px solid #ffcc00; }

.ym-acc-floating-button,
.ym-sign-floating-button {
    position: fixed;
    z-index: var(--ym-acc-z-index, 999990);
    border: 0;
    padding: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: visible;
    transition: transform .18s ease;
}
.ym-acc-floating-button { bottom: var(--ym-acc-access-bottom, 24px); width: var(--ym-acc-button-size, 56px); height: var(--ym-acc-button-size, 56px); }
.ym-sign-floating-button { bottom: var(--ym-acc-sign-bottom, 92px); width: auto; min-width: var(--ym-acc-button-size, 56px); }
.ym-acc-floating-button.ym-acc-pos-right { right: var(--ym-acc-access-side, 24px); }
.ym-acc-floating-button.ym-acc-pos-left { left: var(--ym-acc-access-side, 24px); }
.ym-sign-floating-button.ym-acc-pos-right { right: var(--ym-acc-sign-side, 24px); }
.ym-sign-floating-button.ym-acc-pos-left { left: var(--ym-acc-sign-side, 24px); }
.ym-acc-floating-button:hover,
.ym-sign-floating-button:hover { transform: translateY(-2px) scale(1.04); }
.ym-acc-floating-button:focus,
.ym-sign-floating-button:focus { outline: 4px solid #ffcc00; outline-offset: 3px; }
.ym-icon-visual { display: inline-flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--ym-icon-fg, currentColor); background: transparent; border-radius: 0; transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease, filter .18s ease; }
.ym-acc-floating-button .ym-icon-visual,
.ym-sign-floating-button .ym-icon-visual,
.ym-sign-floating-button em.ym-sign-button-label { opacity: var(--ym-floating-idle-opacity, .70); filter: saturate(.72) brightness(.92); }
.ym-acc-floating-button:hover .ym-icon-visual,
.ym-acc-floating-button:focus .ym-icon-visual,
.ym-sign-floating-button:hover .ym-icon-visual,
.ym-sign-floating-button:focus .ym-icon-visual,
.ym-sign-floating-button:hover em.ym-sign-button-label,
.ym-sign-floating-button:focus em.ym-sign-button-label { opacity: 1; filter: saturate(1.25) brightness(1.08); }
.ym-acc-floating-button:hover .ym-icon-style-round,
.ym-acc-floating-button:hover .ym-icon-style-square,
.ym-sign-floating-button:hover .ym-icon-style-round,
.ym-sign-floating-button:hover .ym-icon-style-square,
.ym-acc-floating-button:focus .ym-icon-style-round,
.ym-acc-floating-button:focus .ym-icon-style-square,
.ym-sign-floating-button:focus .ym-icon-style-round,
.ym-sign-floating-button:focus .ym-icon-style-square { box-shadow: 0 20px 48px rgba(0,0,0,.36), 0 0 0 4px rgba(255,204,0,.25); }
.ym-icon-visual svg { width: 68%; height: 68%; display: block; fill: currentColor; }
.ym-icon-external-image { width: 68%; height: 68%; object-fit: contain; display: block; }
.ym-icon-style-round { background: var(--ym-icon-bg, transparent); border-radius: 999px; box-shadow: 0 14px 34px rgba(0,0,0,.24); }
.ym-icon-style-square { background: var(--ym-icon-bg, transparent); border-radius: 16px; box-shadow: 0 14px 34px rgba(0,0,0,.24); }
.ym-icon-style-none { background: transparent; box-shadow: none; }
.ym-acc-floating-button .ym-icon-visual { width: var(--ym-acc-button-size, 56px); height: var(--ym-acc-button-size, 56px); }
.ym-sign-floating-button .ym-icon-visual { width: var(--ym-acc-button-size, 56px); height: var(--ym-acc-button-size, 56px); flex: 0 0 auto; }
.ym-sign-floating-button em.ym-sign-button-label { font-style: normal; font-weight: 800; font-size: 13px; white-space: nowrap; height: var(--ym-acc-button-size, 56px); padding: 0 14px; border-radius: 999px; display: inline-flex; align-items: center; background: var(--ym-acc-primary, #0000cd); color: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.24); }

.ym-acc-panel,
.ym-sign-panel {
    position: fixed !important;
    bottom: calc(var(--ym-acc-access-bottom, 24px) + var(--ym-acc-button-size, 56px) + 14px);
    z-index: calc(var(--ym-acc-z-index, 999990) + 1);
    width: min(420px, calc(100vw - 28px));
    max-height: min(72vh, 720px);
    overflow: auto;
    background: #fff;
    color: #172033;
    border-radius: 22px;
    box-shadow: 0 28px 80px rgba(0,0,0,.24);
    border: 1px solid rgba(23,32,51,.12);
    display: none;
}
.ym-sign-panel { bottom: calc(var(--ym-acc-sign-bottom, 92px) + var(--ym-acc-button-size, 56px) + 14px); }
.ym-acc-panel.is-open,
.ym-sign-panel.is-open { display: block; }
.ym-acc-panel.ym-acc-pos-right { right: var(--ym-acc-access-side, 24px); }
.ym-acc-panel.ym-acc-pos-left { left: var(--ym-acc-access-side, 24px); }
.ym-sign-panel.ym-acc-pos-right { right: var(--ym-acc-sign-side, 24px); }
.ym-sign-panel.ym-acc-pos-left { left: var(--ym-acc-sign-side, 24px); }

.ym-acc-panel-header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--ym-acc-primary, #0000cd), var(--ym-acc-secondary, #172033));
    color: #fff;
}
.ym-acc-panel-header strong { font-size: 17px; }
.ym-acc-panel-close,
.ym-video-close {
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.35);
    color: #fff;
    width: 36px;
    height: 36px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.ym-acc-panel-body,
.ym-sign-panel-body { padding: 16px; }
.ym-acc-panel-body { display: flex; flex-direction: column; }
.ym-icon-type-access.ym-icon-style-none { color: var(--ym-icon-fg, #111); }
.ym-icon-type-sign.ym-icon-style-none { color: var(--ym-icon-fg, #fff); }
.ym-acc-tool-section { margin-bottom: 18px; }
.ym-acc-section-reader { order: 1; }
.ym-acc-section-profiles { order: 2; }
.ym-acc-section-readability { order: 3; }
.ym-acc-section-visual { order: 4; }
.ym-acc-section-focus { order: 5; }
.ym-acc-tool-section h3 {
    margin: 0 0 10px;
    font-size: 13px;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-align: center;
}
.ym-acc-panel-grid,
.ym-sign-video-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.ym-acc-panel-grid button,
.ym-sign-video-list button,
.ym-sign-main-video {
    min-height: 44px;
    border: 1px solid rgba(23,32,51,.14);
    border-radius: 12px;
    background: #f6f8fb;
    color: #172033;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    padding: 10px 12px;
}
.ym-acc-panel-grid .ym-acc-full-button { grid-column: 1 / -1; min-height: 96px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; font-size: 15px; border-color: #ffcc00; }
.ym-acc-panel-grid .ym-acc-screen-reader-main .ym-tool-icon { width: 34px; height: 34px; }
.ym-acc-panel-grid button {
    min-height: 94px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.25;
}
.ym-acc-panel-grid button .ym-tool-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    flex: 0 0 auto;
}
.ym-acc-panel-grid button .ym-tool-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    stroke: currentColor;
    fill: none;
}
.ym-acc-panel-grid button.is-active,
.ym-acc-panel-grid button[aria-pressed="true"] {
    outline: 2px solid #ffcc00;
    outline-offset: -2px;
    background: #fffbea;
    border-color: #ffcc00;
    color: #172033;
}

.ym-acc-panel-grid button:hover,
.ym-sign-video-list button:hover,
.ym-sign-main-video:hover,
.ym-acc-panel-grid button.is-active {
    background: var(--ym-acc-primary, #0000cd);
    color: #fff;
    border-color: var(--ym-acc-primary, #0000cd);
}
.ym-sign-main-video { width: 100%; margin: 0 0 12px; }
.ym-acc-reset-button { background: #fff2f2 !important; color: #9f1239 !important; }
.ym-acc-reset-button:hover { background: #9f1239 !important; color: #fff !important; }

.ym-video-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147480000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(0,0,0,.74);
}
.ym-video-overlay.is-active { display: flex; }
.ym-video-modal {
    position: relative;
    width: 960px;
    max-width: 96vw;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,.5);
}
.ym-video-modal iframe { width: 100%; height: 100%; border: 0; display: block; }
.ym-video-close { position: absolute; top: 10px; right: 10px; z-index: 3; }

.ym-shortcode-video-button,
.ym-sign-shortcode-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    background: var(--ym-acc-primary, #0000cd);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.ym-shortcode-video-button .ym-icon-visual, .ym-sign-shortcode-button .ym-icon-visual { width: 30px; height: 30px; flex: 0 0 30px; }

.ym-acc-kalkinma { width:100%; padding: 55px 15px 70px; background: linear-gradient(180deg, #fff 0%, #f3f7fb 100%); font-family: Arial, Helvetica, sans-serif; box-sizing: border-box; }
.ym-acc-kalkinma * { box-sizing: border-box; }
.ym-kalkinma-container { max-width:1180px; margin:0 auto; }
.ym-kalkinma-title { text-align:center; margin: 0 0 38px; font-size: clamp(28px, 4vw, 46px); line-height:1.18; font-weight:800; color: var(--ym-acc-secondary, #172033); }
.ym-kalkinma-title span { display:inline-block; position:relative; padding-bottom:14px; }
.ym-kalkinma-title span:after { content:""; position:absolute; left:50%; bottom:0; width:90px; height:4px; transform:translateX(-50%); border-radius:99px; background: var(--ym-acc-primary,#0000cd); }
.ym-kalkinma-title-video,
.ym-kalkinma-video-btn { border:0; border-radius:0; background:transparent; color:#fff; font-weight:900; cursor:pointer; box-shadow:none; padding:0; }
.ym-kalkinma-title-video { width:34px; height:34px; margin-left:10px; vertical-align:middle; display:inline-flex; align-items:center; justify-content:center; }
.ym-kalkinma-video-btn { position:absolute; top:10px; right:10px; z-index:5; width:34px; height:34px; display:inline-flex; align-items:center; justify-content:center; }
.ym-kalkinma-cards { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:26px; }
.ym-kalkinma-card { position:relative; min-height:330px; border-radius:22px; overflow:hidden; background:linear-gradient(135deg, rgba(0,47,108,.94), rgba(0,0,205,.76)), radial-gradient(circle at top right, rgba(255,255,255,.28), transparent 42%), #0b3b76; box-shadow:0 18px 45px rgba(0,0,0,.12); transition:transform .28s ease, box-shadow .28s ease; }
.ym-kalkinma-card:hover { transform:translateY(-8px); box-shadow:0 26px 60px rgba(0,0,0,.18); }
.ym-kalkinma-card:before { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(255,255,255,.12), transparent 45%), linear-gradient(0deg, rgba(0,0,0,.36), transparent 60%); pointer-events:none; }
.ym-kalkinma-icon { position:absolute; top:34px; left:26px; z-index:2; width:76px; height:76px; border-radius:22px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.24); color:#fff; }
.ym-kalkinma-icon svg { width:42px; height:42px; display:block; }
.ym-kalkinma-card-link { position:absolute; inset:0; z-index:3; display:flex; align-items:flex-end; text-decoration:none; color:#fff; }
.ym-kalkinma-card-footer { width:100%; min-height:118px; display:flex; align-items:center; padding:24px 24px 26px; background:rgba(0,0,205,.92); border-top:1px solid rgba(255,255,255,.2); }
.ym-kalkinma-card-footer p { margin:0; font-size:18px; line-height:1.32; font-weight:800; color:#fff; }
.ym-kalkinma-title-video .ym-icon-visual,
.ym-kalkinma-video-btn .ym-icon-visual { width: 34px; height: 34px; }
.ym-kalkinma-title-video .ym-icon-visual svg,
.ym-kalkinma-video-btn .ym-icon-visual svg,
.ym-kalkinma-title-video .ym-icon-external-image,
.ym-kalkinma-video-btn .ym-icon-external-image { width: 62%; height: 62%; }

/* Accessibility effects - plugin controls are intentionally excluded so floating buttons never move with page effects. */
html.ym-acc-font-1 body > :not(.ym-acc-root) :where(p,li,a,span,button,input,textarea,label,td,th,div) { font-size: 105% !important; }
html.ym-acc-font-2 body > :not(.ym-acc-root) :where(p,li,a,span,button,input,textarea,label,td,th,div) { font-size: 112% !important; }
html.ym-acc-font-3 body > :not(.ym-acc-root) :where(p,li,a,span,button,input,textarea,label,td,th,div) { font-size: 120% !important; }
html.ym-acc-font-4 body > :not(.ym-acc-root) :where(p,li,a,span,button,input,textarea,label,td,th,div) { font-size: 128% !important; }
html.ym-acc-font-5 body > :not(.ym-acc-root) :where(p,li,a,span,button,input,textarea,label,td,th,div) { font-size: 136% !important; }
html.ym-acc-font-6 body > :not(.ym-acc-root) :where(p,li,a,span,button,input,textarea,label,td,th,div) { font-size: 144% !important; }
html[class*="ym-acc-scale-"] body { overflow-x: hidden; }
html.ym-acc-scale-1 body > :not(.ym-acc-root) { transform: scale(1.05); transform-origin: top center; }
html.ym-acc-scale-2 body > :not(.ym-acc-root) { transform: scale(1.10); transform-origin: top center; }
html.ym-acc-scale-3 body > :not(.ym-acc-root) { transform: scale(1.15); transform-origin: top center; }
html.ym-acc-scale-4 body > :not(.ym-acc-root) { transform: scale(1.20); transform-origin: top center; }
html.ym-acc-scale-5 body > :not(.ym-acc-root) { transform: scale(1.25); transform-origin: top center; }
html.ym-acc-scale-6 body > :not(.ym-acc-root) { transform: scale(1.30); transform-origin: top center; }
html.ym-acc-line-height-1 body > :not(.ym-acc-root), html.ym-acc-line-height-1 body > :not(.ym-acc-root) * { line-height: 1.6 !important; }
html.ym-acc-line-height-2 body > :not(.ym-acc-root), html.ym-acc-line-height-2 body > :not(.ym-acc-root) * { line-height: 1.85 !important; }
html.ym-acc-line-height-3 body > :not(.ym-acc-root), html.ym-acc-line-height-3 body > :not(.ym-acc-root) * { line-height: 2.1 !important; }
html.ym-acc-letter-spacing-1 body > :not(.ym-acc-root), html.ym-acc-letter-spacing-1 body > :not(.ym-acc-root) * { letter-spacing: .04em !important; }
html.ym-acc-letter-spacing-2 body > :not(.ym-acc-root), html.ym-acc-letter-spacing-2 body > :not(.ym-acc-root) * { letter-spacing: .08em !important; }
html.ym-acc-letter-spacing-3 body > :not(.ym-acc-root), html.ym-acc-letter-spacing-3 body > :not(.ym-acc-root) * { letter-spacing: .12em !important; }
html.ym-acc-readableFont body > :not(.ym-acc-root), html.ym-acc-readableFont body > :not(.ym-acc-root) * { font-family: Arial, Verdana, Tahoma, sans-serif !important; }
html.ym-acc-dyslexiaFriendly body > :not(.ym-acc-root), html.ym-acc-dyslexiaFriendly body > :not(.ym-acc-root) * { font-family: Verdana, Arial, Tahoma, sans-serif !important; letter-spacing: .055em !important; word-spacing: .16em !important; line-height: 1.75 !important; }
html.ym-acc-underlineLinks body > :not(.ym-acc-root) a { text-decoration: underline !important; text-decoration-thickness: 2px !important; }
html.ym-acc-highlightLinks body > :not(.ym-acc-root) a { outline: 2px solid #ffcc00 !important; outline-offset: 2px !important; background: rgba(255, 204, 0, .18) !important; }
html.ym-acc-highlightHeadings body > :not(.ym-acc-root) :where(h1,h2,h3,h4,h5,h6) { outline: 3px solid #00a3ff !important; outline-offset: 4px !important; }
html.ym-acc-reduceMotion body > :not(.ym-acc-root), html.ym-acc-reduceMotion body > :not(.ym-acc-root) *, html.ym-acc-reduceMotion body > :not(.ym-acc-root) *:before, html.ym-acc-reduceMotion body > :not(.ym-acc-root) *:after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
html.ym-acc-hideImages body > :not(.ym-acc-root) img, html.ym-acc-hideImages body > :not(.ym-acc-root) picture, html.ym-acc-hideImages body > :not(.ym-acc-root) video { visibility: hidden !important; }
html.ym-acc-hideImages body > :not(.ym-acc-root), html.ym-acc-hideImages body > :not(.ym-acc-root) * { background-image: none !important; }
html.ym-acc-blueLight body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 2147479000; background: rgba(255, 190, 90, .18); mix-blend-mode: multiply; }
html.ym-acc-bigCursor body, html.ym-acc-bigCursor body > :not(.ym-acc-root), html.ym-acc-bigCursor body > :not(.ym-acc-root) * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath fill='black' stroke='white' stroke-width='2' d='M7 4v36l10-10 7 15 8-4-7-14h15z'/%3E%3C/svg%3E") 7 4, auto !important; }
html.ym-acc-focusMode body > :not(.ym-acc-root) *:focus,
html.ym-acc-focusMode body > :not(.ym-acc-root) *:focus-visible,
html.ym-acc-focusMode body > :not(.ym-acc-root) :where(a,button,input,select,textarea,summary,[tabindex]):hover { outline: 4px solid #ffcc00 !important; outline-offset: 4px !important; box-shadow: 0 0 0 6px rgba(255, 204, 0, .22) !important; }
html.ym-acc-text-align-left body > :not(.ym-acc-root) :where(p,li,div,article,section) { text-align: left !important; }
html.ym-acc-text-align-center body > :not(.ym-acc-root) :where(p,li,div,article,section) { text-align: center !important; }
html.ym-acc-text-align-right body > :not(.ym-acc-root) :where(p,li,div,article,section) { text-align: right !important; }

html.ym-acc-contrast-dark body { background-color: #000 !important; color: #fff !important; }
html.ym-acc-contrast-dark body > :not(.ym-acc-root), html.ym-acc-contrast-dark body > :not(.ym-acc-root) *:not(iframe) { background-color: #000 !important; color: #fff !important; border-color: #fff !important; }
html.ym-acc-contrast-dark body > :not(.ym-acc-root) a { color: #ffff00 !important; }
html.ym-acc-contrast-light body { background-color: #fff !important; color: #000 !important; }
html.ym-acc-contrast-light body > :not(.ym-acc-root), html.ym-acc-contrast-light body > :not(.ym-acc-root) *:not(iframe) { background-color: #fff !important; color: #000 !important; border-color: #000 !important; }
html.ym-acc-contrast-light body > :not(.ym-acc-root) a { color: #0000ee !important; }
html.ym-acc-contrast-high body > :not(.ym-acc-root) { filter: contrast(1.45) brightness(1.05); }
html.ym-acc-saturation-low body > :not(.ym-acc-root) { filter: saturate(.45); }
html.ym-acc-saturation-high body > :not(.ym-acc-root) { filter: saturate(1.8); }
html.ym-acc-saturation-grayscale body > :not(.ym-acc-root) { filter: grayscale(1); }
html.ym-acc-colorblind-protanopia body > :not(.ym-acc-root) { filter: sepia(.25) saturate(.85) hue-rotate(-18deg); }
html.ym-acc-colorblind-deuteranopia body > :not(.ym-acc-root) { filter: sepia(.18) saturate(.75) hue-rotate(18deg); }
html.ym-acc-colorblind-tritanopia body > :not(.ym-acc-root) { filter: sepia(.22) saturate(.85) hue-rotate(65deg); }
html.ym-acc-contrast-high.ym-acc-saturation-low body > :not(.ym-acc-root),
html.ym-acc-contrast-high.ym-acc-saturation-high body > :not(.ym-acc-root),
html.ym-acc-contrast-high.ym-acc-saturation-grayscale body > :not(.ym-acc-root) { filter: contrast(1.45); }

.ym-acc-root, .ym-acc-root * { zoom: 1 !important; }
.ym-acc-root .ym-acc-floating-button,
.ym-acc-root .ym-sign-floating-button {
    position: fixed !important;
    top: auto !important;
    z-index: var(--ym-acc-z-index, 999990) !important;
}
.ym-acc-root .ym-acc-floating-button { bottom: var(--ym-acc-access-bottom, 24px) !important; }
.ym-acc-root .ym-sign-floating-button { bottom: var(--ym-acc-sign-bottom, 92px) !important; }
.ym-acc-root .ym-acc-floating-button.ym-acc-pos-right { right: var(--ym-acc-access-side, 24px) !important; left: auto !important; }
.ym-acc-root .ym-acc-floating-button.ym-acc-pos-left { left: var(--ym-acc-access-side, 24px) !important; right: auto !important; }
.ym-acc-root .ym-sign-floating-button.ym-acc-pos-right { right: var(--ym-acc-sign-side, 24px) !important; left: auto !important; }
.ym-acc-root .ym-sign-floating-button.ym-acc-pos-left { left: var(--ym-acc-sign-side, 24px) !important; right: auto !important; }
.ym-acc-root .ym-acc-panel,
.ym-acc-root .ym-sign-panel,
.ym-acc-root .ym-video-overlay,
.ym-acc-root .ym-reading-guide-line,
.ym-acc-root .ym-reading-mask-top,
.ym-acc-root .ym-reading-mask-bottom { position: fixed !important; }

.ym-reading-guide-line { display:none; position:fixed; left:0; top:calc(var(--ym-acc-guide-y) - 2px); width:100vw; height:4px; background:#ffcc00; box-shadow:0 0 0 2px rgba(0,0,0,.55); pointer-events:none; z-index:2147479999; }
html.ym-acc-readingGuide .ym-reading-guide-line { display:block; }
.ym-reading-mask-top,.ym-reading-mask-bottom { display:none; position:fixed; left:0; width:100vw; background:rgba(0,0,0,.58); pointer-events:none; z-index:2147479998; }
.ym-reading-mask-top { top:0; height:calc(var(--ym-acc-guide-y) - 44px); }
.ym-reading-mask-bottom { top:calc(var(--ym-acc-guide-y) + 44px); bottom:0; }
html.ym-acc-readingMask .ym-reading-mask-top,
html.ym-acc-readingMask .ym-reading-mask-bottom { display:block; }

@media (max-width: 1024px) { .ym-kalkinma-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
    .ym-acc-root .ym-acc-floating-button.ym-acc-pos-right { right: min(var(--ym-acc-access-side, 24px), 40px) !important; }
    .ym-acc-root .ym-acc-floating-button.ym-acc-pos-left { left: min(var(--ym-acc-access-side, 24px), 40px) !important; }
    .ym-acc-root .ym-sign-floating-button.ym-acc-pos-right { right: min(var(--ym-acc-sign-side, 24px), 40px) !important; }
    .ym-acc-root .ym-sign-floating-button.ym-acc-pos-left { left: min(var(--ym-acc-sign-side, 24px), 40px) !important; }
    .ym-acc-panel,
    .ym-sign-panel { width: calc(100vw - 20px); max-height: 76vh; }
    .ym-acc-panel.ym-acc-pos-right { right: min(var(--ym-acc-access-side, 24px), 10px); }
    .ym-acc-panel.ym-acc-pos-left { left: min(var(--ym-acc-access-side, 24px), 10px); }
    .ym-sign-panel.ym-acc-pos-right { right: min(var(--ym-acc-sign-side, 24px), 10px); }
    .ym-sign-panel.ym-acc-pos-left { left: min(var(--ym-acc-sign-side, 24px), 10px); }
    .ym-acc-panel-grid,
    .ym-sign-video-list { grid-template-columns: 1fr; }
    .ym-acc-kalkinma { padding: 38px 12px 48px; }
    .ym-kalkinma-cards { grid-template-columns: 1fr; gap: 18px; }
    .ym-kalkinma-card { min-height: 260px; }
    .ym-kalkinma-card-footer { min-height: 96px; padding: 20px; }
}



/* v1.5.8: Sağ/sol tarafta ayarlanabilir genişlikte sabit erişilebilirlik paneli */
.ym-acc-root .ym-acc-panel {
    position: fixed !important;
    top: 16px !important;
    bottom: 16px !important;
    width: clamp(320px, var(--ym-acc-panel-width, 20vw), calc(100vw - 32px)) !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: 22px !important;
    border: 1px solid rgba(23,32,51,.12) !important;
    background: #ffffff !important;
    box-shadow: 0 28px 80px rgba(0,0,0,.24) !important;
    z-index: calc(var(--ym-acc-z-index, 999990) + 10) !important;
}
.ym-acc-root .ym-acc-panel.ym-acc-pos-right {
    right: var(--ym-acc-access-side, 24px) !important;
    left: auto !important;
}
.ym-acc-root .ym-acc-panel.ym-acc-pos-left {
    left: var(--ym-acc-access-side, 24px) !important;
    right: auto !important;
}
.ym-acc-root .ym-acc-panel.is-open {
    display: flex !important;
    flex-direction: column !important;
}
.ym-acc-root .ym-acc-panel-header {
    position: relative !important;
    top: auto !important;
    flex: 0 0 auto !important;
    padding: 14px 16px !important;
}
.ym-acc-root .ym-acc-panel-header strong {
    font-size: clamp(16px, 1.2vw, 20px) !important;
}
.ym-acc-root .ym-acc-panel-body {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    padding: 16px 14px 18px !important;
    width: 100% !important;
    margin: 0 !important;
}
.ym-acc-root .ym-acc-panel-footer {
    flex: 0 0 auto !important;
    position: relative !important;
    bottom: auto !important;
    z-index: 5 !important;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    background: rgba(255,255,255,.96) !important;
    border-top: 1px solid rgba(23,32,51,.14) !important;
    box-shadow: 0 -10px 26px rgba(23,32,51,.10) !important;
    backdrop-filter: blur(10px) !important;
}
.ym-acc-root .ym-acc-reset-fixed {
    width: 100% !important;
    min-height: 54px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 14px !important;
    border: 1px solid #9f1239 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    box-shadow: 0 12px 26px rgba(159,18,57,.16) !important;
}
.ym-acc-root .ym-acc-panel-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
}
.ym-acc-root .ym-acc-panel-grid .ym-acc-full-button {
    grid-column: 1 / -1 !important;
}
.ym-acc-root .ym-acc-panel-grid button {
    min-height: 88px !important;
    font-size: 12px !important;
}

@media (max-width: 1024px) {
    .ym-acc-root .ym-acc-panel {
        width: clamp(300px, 42vw, calc(100vw - 28px)) !important;
        top: 14px !important;
        bottom: 14px !important;
    }
}
@media (max-width: 768px) {
    .ym-acc-root .ym-acc-panel {
        width: calc(100vw - 20px) !important;
        top: 10px !important;
        bottom: 10px !important;
        border-radius: 18px !important;
    }
    .ym-acc-root .ym-acc-panel.ym-acc-pos-right {
        right: 10px !important;
        left: auto !important;
    }
    .ym-acc-root .ym-acc-panel.ym-acc-pos-left {
        left: 10px !important;
        right: auto !important;
    }
    .ym-acc-root .ym-acc-panel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .ym-acc-root .ym-acc-panel-grid button {
        min-height: 82px !important;
        font-size: 12px !important;
    }
    .ym-acc-root .ym-acc-reset-fixed {
        min-height: 52px !important;
        font-size: 14px !important;
    }
}
@media (max-width: 420px) {
    .ym-acc-root .ym-acc-panel-grid {
        grid-template-columns: 1fr !important;
    }
    .ym-acc-root .ym-acc-panel-grid button {
        min-height: 72px !important;
    }
}


/* v1.5.9 - Modern glass/soft panel görünümü */
.ym-acc-panel,
.ym-sign-panel {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(245, 248, 255, .74)) !important;
    color: #172033 !important;
    border: 1px solid rgba(255, 255, 255, .58) !important;
    border-radius: 28px !important;
    box-shadow:
        0 32px 90px rgba(15, 23, 42, .24),
        0 12px 34px rgba(15, 23, 42, .12),
        inset 0 1px 0 rgba(255, 255, 255, .78) !important;
    backdrop-filter: blur(26px) saturate(1.28);
    -webkit-backdrop-filter: blur(26px) saturate(1.28);
    overflow: hidden !important;
}

.ym-acc-panel::before,
.ym-sign-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 255, 255, .70), transparent 36%),
        radial-gradient(circle at 100% 15%, rgba(0, 122, 255, .13), transparent 34%),
        radial-gradient(circle at 0% 100%, rgba(255, 204, 0, .12), transparent 36%);
    opacity: .9;
}

.ym-acc-panel-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 3 !important;
    min-height: 68px;
    padding: 18px 18px 16px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .08)),
        linear-gradient(135deg, var(--ym-panel-header-bg-start, #2f3f73), var(--ym-panel-header-bg-end, #9b4d5f)) !important;
    color: var(--ym-panel-header-text, #ffffff) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .10);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.ym-acc-panel-header strong {
    font-size: 17px !important;
    letter-spacing: -.01em;
    color: var(--ym-panel-header-text, #ffffff) !important;
    text-shadow: 0 1px 1px rgba(0,0,0,.18);
}

.ym-acc-panel-close,
.ym-video-close {
    background: rgba(255,255,255,.22) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.32) !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.14) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.ym-acc-panel-close:hover,
.ym-video-close:hover {
    transform: scale(1.05);
    background: rgba(239, 68, 68, .86) !important;
    box-shadow: 0 14px 28px rgba(239, 68, 68, .25) !important;
}

.ym-acc-panel-body,
.ym-sign-panel-body {
    position: relative;
    z-index: 2;
    padding: 18px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

.ym-acc-tool-section {
    position: relative;
    margin: 0 0 16px !important;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .48);
    border: 1px solid rgba(255, 255, 255, .46);
    box-shadow:
        0 12px 28px rgba(15, 23, 42, .07),
        inset 0 1px 0 rgba(255, 255, 255, .64);
    backdrop-filter: blur(14px) saturate(1.08);
    -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

.ym-acc-tool-section h3 {
    margin: 0 0 12px !important;
    padding: 0 4px 10px;
    border-bottom: 1px solid rgba(23, 32, 51, .08);
    color: rgba(23, 32, 51, .72) !important;
    font-size: 12px !important;
    font-weight: 900;
    letter-spacing: .08em !important;
}

.ym-acc-panel-grid,
.ym-sign-video-list {
    gap: 10px !important;
}

.ym-acc-panel-grid button,
.ym-sign-video-list button,
.ym-sign-main-video {
    min-height: 90px;
    border: 1px solid rgba(255, 255, 255, .56) !important;
    border-radius: 18px !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .52)) !important;
    color: #172033 !important;
    box-shadow:
        0 10px 24px rgba(15, 23, 42, .07),
        inset 0 1px 0 rgba(255, 255, 255, .82) !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.ym-acc-panel-grid button:hover,
.ym-sign-video-list button:hover,
.ym-sign-main-video:hover {
    transform: translateY(-2px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .68)) !important;
    border-color: color-mix(in srgb, var(--ym-acc-primary, #0000cd) 44%, rgba(255,255,255,.7)) !important;
    box-shadow:
        0 16px 34px rgba(15, 23, 42, .12),
        0 0 0 3px color-mix(in srgb, var(--ym-acc-primary, #0000cd) 16%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, .9) !important;
}

.ym-acc-panel-grid button.is-active,
.ym-acc-panel-grid button[aria-pressed="true"] {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--ym-acc-primary, #0000cd) 88%, #ffffff 12%), color-mix(in srgb, var(--ym-acc-secondary, #172033) 86%, #ffffff 14%)) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,.62) !important;
    outline: none !important;
    box-shadow:
        0 18px 38px color-mix(in srgb, var(--ym-acc-primary, #0000cd) 24%, transparent),
        inset 0 1px 0 rgba(255,255,255,.28) !important;
}

.ym-acc-panel-grid button .ym-tool-icon {
    width: 28px !important;
    height: 28px !important;
    padding: 2px;
    border-radius: 12px;
    background: rgba(255,255,255,.38);
}

.ym-acc-panel-grid button.is-active .ym-tool-icon,
.ym-acc-panel-grid button[aria-pressed="true"] .ym-tool-icon {
    background: rgba(255,255,255,.20);
}

.ym-acc-reset-sticky,
.ym-acc-reset-button {
    border-radius: 18px !important;
}

.ym-acc-reset-sticky {
    background: linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.42)) !important;
    border-top: 1px solid rgba(255,255,255,.54) !important;
    box-shadow: 0 -14px 34px rgba(15,23,42,.08);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.ym-acc-reset-button {
    min-height: 52px !important;
    border: 1px solid rgba(159,18,57,.18) !important;
    background: linear-gradient(135deg, #fff1f2, #ffffff) !important;
    color: #9f1239 !important;
    box-shadow: 0 10px 24px rgba(159, 18, 57, .08) !important;
}

.ym-acc-reset-button:hover {
    background: linear-gradient(135deg, #be123c, #9f1239) !important;
    color: #fff !important;
}

.ym-sign-main-video,
.ym-sign-video-list button {
    min-height: 54px !important;
    justify-content: center;
}

.ym-video-modal {
    border-radius: 24px !important;
    border: 1px solid rgba(255,255,255,.24);
    box-shadow: 0 36px 110px rgba(0,0,0,.56) !important;
}

@media (max-width: 768px) {
    .ym-acc-panel,
    .ym-sign-panel {
        border-radius: 22px !important;
        backdrop-filter: blur(18px) saturate(1.18);
        -webkit-backdrop-filter: blur(18px) saturate(1.18);
    }
    .ym-acc-tool-section { padding: 12px; border-radius: 18px; }
    .ym-acc-panel-grid button { min-height: 82px; border-radius: 16px !important; }
}


/* v1.6.0 - Aktif/Pasif durum belirginleştirme */
.ym-acc-panel-grid button[data-ym-acc-toggle],
.ym-acc-panel-grid button[data-ym-acc-action],
.ym-acc-panel-grid button[data-ym-acc-profile] {
    position: relative !important;
    overflow: hidden !important;
}
.ym-acc-panel-grid button[data-ym-acc-toggle]::after,
.ym-acc-panel-grid button[data-ym-acc-action]::after,
.ym-acc-panel-grid button[data-ym-acc-profile]::after {
    content: "Pasif";
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(100, 116, 139, .14);
    color: rgba(51, 65, 85, .86);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1;
}
.ym-acc-panel-grid button.is-active,
.ym-acc-panel-grid button[aria-pressed="true"] {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--ym-acc-primary, #0000cd) 92%, #ffffff 8%), color-mix(in srgb, var(--ym-acc-secondary, #172033) 88%, #ffffff 12%)) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, .72) !important;
    box-shadow:
        0 20px 42px color-mix(in srgb, var(--ym-acc-primary, #0000cd) 30%, transparent),
        0 0 0 3px rgba(255, 204, 0, .28),
        inset 0 1px 0 rgba(255,255,255,.36) !important;
    transform: translateY(-1px);
}
.ym-acc-panel-grid button.is-active::after,
.ym-acc-panel-grid button[aria-pressed="true"]::after {
    content: "Aktif";
    background: #ffcc00;
    color: #111827;
}
.ym-acc-panel-grid button.is-active .ym-tool-icon,
.ym-acc-panel-grid button[aria-pressed="true"] .ym-tool-icon {
    background: rgba(255,255,255,.26) !important;
    color: #ffffff !important;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.22));
}
.ym-acc-panel-grid button[data-ym-acc-action="reset"]::after,
.ym-acc-panel-grid button.ym-acc-reset-button::after {
    content: none !important;
}


/* v1.6.1 - Kullanışlı ikili buton dizilimi geri getirildi */
.ym-acc-root .ym-acc-panel-grid,
.ym-acc-root .ym-sign-video-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
}

.ym-acc-root .ym-acc-panel-grid .ym-acc-full-button {
    grid-column: 1 / -1 !important;
    min-height: 64px !important;
    justify-content: center !important;
    text-align: center !important;
}

.ym-acc-root .ym-acc-panel-grid button {
    min-height: 62px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 10px 38px 10px 12px !important;
    border-radius: 15px !important;
    text-align: left !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
}

.ym-acc-root .ym-acc-panel-grid button .ym-tool-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    flex: 0 0 24px !important;
    padding: 2px !important;
    border-radius: 10px !important;
}

.ym-acc-root .ym-acc-panel-grid .ym-acc-screen-reader-main .ym-tool-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
}

.ym-acc-root .ym-acc-panel-grid button::after {
    top: 6px !important;
    right: 6px !important;
    font-size: 9px !important;
    padding: 3px 6px !important;
}

.ym-acc-root .ym-acc-tool-section {
    padding: 12px !important;
    margin-bottom: 13px !important;
}

.ym-acc-root .ym-acc-tool-section h3 {
    margin-bottom: 10px !important;
}

.ym-acc-root .ym-sign-video-list button,
.ym-acc-root .ym-sign-main-video {
    min-height: 48px !important;
    text-align: center !important;
    justify-content: center !important;
}

@media (max-width: 768px) {
    .ym-acc-root .ym-acc-panel-grid,
    .ym-acc-root .ym-sign-video-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }
    .ym-acc-root .ym-acc-panel-grid button {
        min-height: 58px !important;
        font-size: 11.5px !important;
        padding: 9px 34px 9px 10px !important;
    }
    .ym-acc-root .ym-acc-panel-grid button .ym-tool-icon {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
    }
}

@media (max-width: 340px) {
    .ym-acc-root .ym-acc-panel-grid,
    .ym-acc-root .ym-sign-video-list {
        grid-template-columns: 1fr !important;
    }
}


/* v1.6.2 - Aktif/Pasif yazı etiketleri kaldırıldı; aktiflik yalnızca renk ve vurgu ile gösterilir */
.ym-acc-root .ym-acc-panel-grid button[data-ym-acc-toggle]::after,
.ym-acc-root .ym-acc-panel-grid button[data-ym-acc-action]::after,
.ym-acc-root .ym-acc-panel-grid button[data-ym-acc-profile]::after {
    content: none !important;
    display: none !important;
}

.ym-acc-root .ym-acc-panel-grid button.is-active,
.ym-acc-root .ym-acc-panel-grid button[aria-pressed="true"],
.ym-acc-root .ym-acc-panel-grid button[data-ym-state="active"] {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--ym-acc-primary, #0000cd) 88%, #ffffff 12%), color-mix(in srgb, var(--ym-acc-secondary, #172033) 84%, #ffffff 16%)) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, .72) !important;
    box-shadow:
        0 18px 38px color-mix(in srgb, var(--ym-acc-primary, #0000cd) 26%, transparent),
        0 0 0 3px rgba(255, 204, 0, .30),
        inset 0 1px 0 rgba(255,255,255,.34) !important;
}

.ym-acc-root .ym-acc-panel-grid button.is-active .ym-tool-icon,
.ym-acc-root .ym-acc-panel-grid button[aria-pressed="true"] .ym-tool-icon,
.ym-acc-root .ym-acc-panel-grid button[data-ym-state="active"] .ym-tool-icon {
    background: rgba(255,255,255,.24) !important;
    color: #ffffff !important;
    transform: scale(1.04);
}

.ym-acc-root .ym-acc-panel-grid button.ym-acc-click-feedback {
    background: rgba(255, 204, 0, .24) !important;
    border-color: rgba(255, 204, 0, .70) !important;
    box-shadow: 0 0 0 3px rgba(255, 204, 0, .22), inset 0 1px 0 rgba(255,255,255,.4) !important;
}


/* v1.6.3 - Okuyucu aktifliği ve kademeli içerik büyütme düzeltmeleri */
.ym-acc-root .ym-acc-panel-grid button[data-ym-acc-action="screenReader"][aria-pressed="true"],
.ym-acc-root .ym-acc-panel-grid button[data-ym-acc-action="selectedReader"][aria-pressed="true"] {
    background: linear-gradient(135deg, #16a34a, color-mix(in srgb, var(--ym-acc-primary, #0000cd) 82%, #16a34a 18%)) !important;
    color: #ffffff !important;
    border-color: rgba(255,255,255,.80) !important;
    box-shadow: 0 18px 38px rgba(22, 163, 74, .28), 0 0 0 3px rgba(34, 197, 94, .22), inset 0 1px 0 rgba(255,255,255,.35) !important;
}
.ym-acc-root .ym-acc-panel-grid button[data-ym-acc-action="screenReader"][aria-pressed="true"] .ym-tool-icon,
.ym-acc-root .ym-acc-panel-grid button[data-ym-acc-action="selectedReader"][aria-pressed="true"] .ym-tool-icon {
    background: rgba(255,255,255,.26) !important;
    color: #ffffff !important;
}


/* v1.6.7: Panel başlık filigran/şeffaflık kontrolü */
.ym-acc-root .ym-acc-panel-header {
    position: relative !important;
    isolation: isolate;
    overflow: hidden;
    background: transparent !important;
}
.ym-acc-root .ym-acc-panel-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(135deg, var(--ym-panel-header-bg-start, #2f3f73), var(--ym-panel-header-bg-end, #9b4d5f));
    opacity: var(--ym-panel-header-opacity, 1);
}
.ym-acc-root .ym-acc-panel-header::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
    opacity: calc(1 - var(--ym-panel-header-opacity, 1));
}
.ym-acc-root .ym-acc-panel-header > * {
    position: relative;
    z-index: 1;
}
