@font-face {
    font-family: 'Arakom';
    src: url('./arakom.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --matrix-green: #000000; 
    --header-bg-gray: #FF3B30; 
    --matrix-border: #000000;
    --apple-gray: #f5f5f7;
    --apple-dark: #1d1d1f;
}

body { 
    background-color: #ffffff; 
    color: #000000; 
    margin: 0; 
    padding: 20px;
    overflow-x: hidden; 
    user-select: none;
}

body:has(.glass-box.matrix-opened) .back-link {
    background: #fff !important;
    color: #000 !important;
    cursor: default;
    pointer-events: none; 
}

.top-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    align-items: center;
    width: 100%;
}

/* Tüm üst butonların yüksekliği 54px'ten 46px'e çekildi */
#root-display-box,
.switch-btn,
.zoom-toggle-area,
.back-link {
    height: 46px !important;
    min-height: 46px !important;
}

#root-display-box {
    width: 320px;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 10px; 
    border: 2px solid #e2e8f0;
    background-color: #f1f5f9;
    border-radius: 12px;
    box-sizing: border-box;
}

#root-display-box:hover {
    border-color: #cbd5e1;
}

.segmented-switch {
    flex: 1;
    display: flex;
    gap: 4px;
    background: #f1f5f9; 
    border: 2px solid #e2e8f0; 
    padding: 4px; 
    border-radius: 12px; 
    margin: 0 auto;
    position: relative;
    align-items: center;
    box-sizing: border-box;
    height: 46px;
}

.switch-btn {
    flex: 1;
    height: 100%;
    background: transparent;
    border: none;
    color: #000000;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    font-family: 'Arakom', sans-serif !important;
    font-weight: normal !important;
    z-index: 2;
    text-align: center;
}

.switch-btn span {
    color: inherit !important; 
    transition: all 0.1s ease-in-out;
}

.switch-btn span:last-child {
    font-size: 1.1rem;
}

.switch-slider {
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 3px; 
    width: calc(50% - 3px);
    background: #FF3B30;
    border-radius: 6px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    transform: translateX(100%);
}

.segmented-switch.mucerred-active .switch-slider { transform: translateX(100%); }
.segmented-switch.mezid-active .switch-slider { transform: translateX(0%); }
.segmented-switch.mucerred-active .switch-btn.mucerred-btn { color: #ffffff; }
.segmented-switch.mucerred-active .switch-btn.mezid-btn { color: #000000; }
.segmented-switch.mezid-active .switch-btn.mucerred-btn { color: #000000; }
.segmented-switch.mezid-active .switch-btn.mezid-btn { color: #ffffff; }

.zoom-toggle-area {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f1f5f9; 
    border: 2px solid #e2e8f0; 
    border-radius: 12px; 
    padding: 0 12px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.zoom-toggle-area:hover {
    border-color: #cbd5e1;
}

.zoom-toggle-label {
    font-family: 'Arakom', sans-serif !important;
    font-weight: normal !important;
    font-size: 14px;
    color: #000000;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cbd5e1; 
    transition: .3s;
    border-radius: 24px;
    border: none;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px; width: 18px;
    left: 3px; bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    border: none; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.15); 
}

input:checked + .toggle-slider {
   background-color: #34C759;
}

input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.back-btn-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px; 
    height: 46px;
    background-color: #f1f5f9; 
    border: 2px solid #e2e8f0; 
    border-radius: 12px; 
    color: #000000;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.back-link:hover {
    background: #e2e8f0; 
    border-color: #cbd5e1;
    color: #FF3B30; 
}

.window-pencere {
    width: 100%;
    overflow: hidden; 
    touch-action: pan-y;
}

.slider-bandi {
    display: flex;
    width: 200%; 
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.tab-content { 
    width: 50%; 
    flex-shrink: 0;
    box-sizing: border-box;
}

.container { 
    max-width: 100%; 
    margin: auto; 
    background: #ffffff; 
    border: 2px solid #000;
    position: relative; 
    border-radius: 8px; 
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

th {
    color: #FFFFFF !important;
    padding: 6px 5px;
    border: 2px solid #ffffff !important;
    text-align: center;
    font-weight: normal;
    font-size: 15px;
}

th.baslik-fiil { background-color: #34C759 !important; }
th.baslik-isim { background-color: #2B88D9 !important; }
th.baslik-notr { background-color: transparent !important; color: #FF3B30 !important; }

table { 
    width: 100%; 
    border-collapse: collapse; 
    color: #000; 
    table-layout: fixed; 
    margin: 0;
}

th:nth-child(1) { width: 10%; } 
th:nth-child(2) { width: 11%; } 
th:nth-child(3) { width: 11%; } 
th:nth-child(4) { width: 11%; } 
th:nth-child(5) { width: 22%; } 
th:nth-child(6) { width: 11%; } 
th:nth-child(7) { width: 11%; } 
th:nth-child(8) { width: 11%; } 
th:nth-child(9) { width: 11%; } 

td {
    background-color: #e5e5ea; 
    border: 4px solid #ffffff !important; 
    text-align: center; 
    vertical-align: middle; 
    padding: 3px 2px;
}

td:first-child {
    color: #FF3B30 !important;
    font-weight: bold; 
}

.conjugation-table td:first-child {
    color: #000000 !important;
    font-weight: normal;
}

/* --- 3. KELİME KUTULARI (3D Buton Tasarımı) --- */
.glass-box {
    position: relative; 
    background-color: #f8f9fa !important; 
    border-top: 1px solid #d1d5db !important;    
    border-left: 1px solid #d1d5db !important;   
    border-right: 1px solid #d1d5db !important;  
    border-bottom: 4px solid #9ca3af !important; 
    border-radius: 8px; 
    margin: 4px;
    padding: 4px 2px 2px 2px; 
    text-align: center;
    transition: all 0.1s ease; 
    display: inline-block;
    min-width: 100px;
    width: 90%;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03); 
}

.glass-box:hover:not(.matrix-opened) { 
    background-color: #ffffff !important; 
    border-bottom-color: #64748b !important; 
}

.glass-box:active:not(.matrix-opened) {
    border-top: 2px solid #d1d5db !important;
    border-bottom-width: 1px !important; 
    transform: translateY(2px); 
    box-shadow: none; 
}

.ar, .ar-small, #temp-root-display, #root-text-display, .key {
    font-family: 'Arakom' !important;
    letter-spacing: 0 !important; 
    text-rendering: optimizeLegibility;
    font-weight: normal !important; 
}

#root-text-display {
    font-size: 1.25rem; 
    color: #000000;
    flex-grow: 1; 
    text-align: center;
}

.ar { font-size: 42px; color: #000 !important; line-height: 1.2; }
.ar-small { font-size: 30px; color: #000 !important; line-height: 1.2; }
.ref { position: absolute; top: 2px; right: 4px; font-size: 14px; color: #86868b !important; }

.mastar-grid { 
    display: grid; 
    grid-template-rows: repeat(8, auto); 
    grid-auto-flow: column;             
    gap: 4px; 
    padding: 2px;
    justify-items: center;
}

.mastar-grid .glass-box { width: 95%; }

.footer-container { 
    display: flex; 
    gap: 15px; 
    margin-top: 10px; 
    width: 100%;
}

.footer-block { 
    background: #e5e5ea !important; 
    border: 4px solid #ffffff !important; 
    padding: 8px 10px 12px 10px; 
    border-radius: 12px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
}

.block-title { 
    text-align: center; 
    font-size: 14px;  
    margin-top: -8px; 
    margin-bottom: 8px; 
    margin-left: -10px;
    margin-right: -10px;
    padding: 4px;
    background-color: #2B88D9 !important; 
    color: #FFFFFF !important;
    border-bottom: 4px solid #ffffff !important; 
    border-top-left-radius: 8px; 
    border-top-right-radius: 8px;
}

.mastar-grid, .cemi-grid { gap: 2px; }
.cemi-area .block-title { background-color: #2B88D9 !important; }

.cemi-area { flex: 8; }
.tafdil-area { flex: 2; }
.tasgir-area { flex: 1; }

.cemi-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 6px; 
    justify-items: center;
}

.full-screen-mode th, .full-screen-mode td { padding: 20px !important; }
.cemi-grid .glass-box, .tafdil-area .glass-box, .tasgir-area .glass-box { width: 95%; }

.keyboard-overlay, .conjugation-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.2) !important; 
    z-index: 9999999 !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.keyboard-container, .conjugation-container {
    position: relative;
    padding: 25px; 
    background: #ffffff !important;
    border: 2px solid #000;
    border-radius: 16px;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.conjugation-container {
    padding: 15px 20px; 
    border-radius: 12px;
    width: auto !important;
    min-width: 320px !important;
    max-width: 450px !important;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.keyboard-container {
    padding-top: 50px; 
    background: transparent !important;
    border: none;
    box-shadow: none;
}

.kb-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    direction: ltr;
}

.key {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1d1d1f !important;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px; 
    cursor: pointer;
    font-size: 1.6rem;
    user-select: none;
}

.key:hover { background: #323236 !important; }

#temp-root-display {
    font-size: 3rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.7); 
    border-radius: 14px;
    direction: rtl;
}

.root-icon {
    cursor: pointer;
    font-size: 1.2rem;
    padding: 8px;
    transition: 0.3s;
    color: #000;
}

.root-icon:hover {
    color: #FF3B30; 
    transform: scale(1.1);
}

.conjugation-inline-container {
    display: none;
    position: absolute; 
    background: #ffffff !important;
    border: 3px solid #000000;
    border-radius: 16px;       
    padding: 20px;             
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 999999 !important; 
    width: 420px !important; 
    max-width: 95vw !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    opacity: 0;
    pointer-events: auto;
    transform: scale(0.95);
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.15s ease;
}

.glass-box.matrix-opened .conjugation-inline-container {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.conjugation-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    direction: rtl;
    table-layout: fixed;
}

.glass-box.no-transition { transition: none !important; }

.conjugation-table th {
    background-color: #FF3B30 !important;
    color: #FFFFFF !important;
    border: 2px solid #000000;
    padding: 8px;
    font-size: 16px;
    font-family: 'Arakom' !important;
    font-weight: normal !important;
}

.conjugation-table td {
    border: 2px solid #000000;
    padding: 14px 6px;
    text-align: center;
    background: #ffffff;
    width: 33.33%;
}

.siga-text {
    font-size: 28px;
    color: #000000;
    display: block;
    font-family: 'Arakom' !important;
    font-weight: normal !important;
    line-height: 1.2;
}

.kok { color: #000000 !important; }
.ek { color: #FF3B30 !important; }

.matrix-close-btn {
    position: absolute;
    top: 4px;
    right: 12px;
    color: #FF3B30;
    font-size: 24px;
    cursor: pointer;
    font-weight: normal;
    z-index: 1000001; 
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.matrix-close-btn:hover { transform: scale(1.2); }

#tab2 .ar { font-size: 2.2rem !important; }
#tab2 .ar-small { font-size: 1.25rem !important; }
#tab2 .glass-box { width: 92%; padding: 4px 2px; }

/* Büyüyen Kutu Efektleri ve Çakışma Önleyiciler */
.zoom-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.4) !important; 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9990 !important; 
    display: none;
    border-radius: 8px;
    cursor: pointer;
}

.zoom-overlay.active { display: block; }

.pulse-highlight {
    transform: translate3d(var(--move-x), var(--move-y), 0) scale(4) rotate(0.001deg) !important;
    z-index: 99999 !important; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.3) !important;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease !important;
    transform-origin: center center;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: subpixel-antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    -webkit-transform-style: preserve-3d !important;
    transform-style: preserve-3d !important;
    will-change: transform;
}

.glass-box.pulse-settled {
    transition: none !important; 
    animation: none !important;
    transform: translate(var(--move-x), var(--move-y)) scale(4) !important;
    will-change: auto !important; 
}

.glass-box.pulse-highlight * { animation: none !important; }
.glass-box.pulse-highlight { animation: none !important; }

.glass-box.pulse-highlight .ref {
    transform: scale(0.95) !important; 
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.9) !important; 
    background-color: #FF3B30 !important; 
    color: #ffffff !important; 
}

.current-active-red {
    border-color: #FF3B30 !important; 
    background-color: #fffaf9 !important; 
    box-shadow: inset 0 3px 8px rgba(255, 59, 48, 0.15), 0 1px 2px rgba(255, 59, 48, 0.1) !important; 
    z-index: 100;
}

/* Kutu BÜYÜTÜLMEDİĞİ SÜRECE aşağı basık durur (Büyüyen Klonları Hariç Tutar!) */
.glass-box.current-active-red:not(.pulse-highlight):not(.crisp-zoom-clone) {
    transform: translateY(2px) !important; 
}

/* Fareyle üzerine gelindiğinde zıplamasını engeller (Büyüyen Klonları Hariç Tutar!) */
.glass-box.current-active-red:not(.pulse-highlight):not(.crisp-zoom-clone):hover {
    transform: translateY(2px) !important; 
    background-color: #fff0ed !important; 
    box-shadow: inset 0 4px 12px rgba(255, 59, 48, 0.25), 0 1px 2px rgba(255, 59, 48, 0.1) !important; 
    border-color: #e6352b !important; 
}

.glass-box.current-active-red.pulse-highlight:hover {
    background-color: #fff0ed !important; 
    border-color: #FF3B30 !important; 
    box-shadow: 0 15px 40px rgba(255, 59, 48, 0.25) !important; 
}


/* CÜMLE BUTONU (!) - Kırmızı Dolgulu Küçük Tasarım */
.easter-egg-trigger {
    position: absolute;
    top: -8px;   
    left: -8px; 
    width: 20px;  
    height: 20px;
    background: #FF3B30; 
    color: #ffffff;      
    border: 1.5px solid #ffffff; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: bold;
    animation: elegantRedGlow 2s infinite alternate;
    transition: transform 0.2s ease;
}

.easter-egg-trigger:hover { transform: scale(1.15); }

@keyframes elegantRedGlow {
    0% { box-shadow: 0 1px 3px rgba(255, 59, 48, 0.3); }
    100% { box-shadow: 0 0 8px rgba(255, 59, 48, 0.7); }
}

.easter-egg-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.15) !important; 
    z-index: 9999999 !important;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.easter-egg-content {
    position: relative;

    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);

    padding: 40px 30px 30px 30px; 
    border: 2px solid #000000;
    border-radius: 12px;
    text-align: center;
    
    /* 1. Neredeyse tüm ekranı kaplasın */
    width: 90vw !important; 
    max-width: 1500px !important;
    
    /* 2. Dikeyde taşmayı engelle ve şık bir Scroll (Kaydırma) ekle */
    max-height: 70vh !important; 
    overflow-y: auto !important; 
    
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Scroll (Kaydırma Çubuğu) Tasarımı */
.easter-egg-content::-webkit-scrollbar {
    width: 12px;
}
.easter-egg-content::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 10px;
    border: 3px solid transparent;
    background-clip: content-box;
}
.easter-egg-content::-webkit-scrollbar-thumb:hover {
    background-color: #94a3b8;
}
/* AŞAĞI KAYDIKÇA SABİT KALAN ÇARPI BUTONU */
.easter-egg-close-btn {
    position: sticky;
    top: 10px; /* Kaydırırken hep en üstten 10px mesafede yapışık kalır */
    float: right; /* Sağa yaslar */
    margin-top: -20px; 
    margin-right: -10px;
    margin-bottom: -30px; /* Altındaki metni aşağı itmesini engeller */
    z-index: 1000;
    font-size: 28px;
    color: #FF3B30;
    cursor: pointer;
    font-weight: bold;
    font-family: sans-serif;
    transition: all 0.2s ease;
    
    /* Yazılar kayarken çarpı karışmasın diye arkasına ufak buzlu bir yuvarlak ekledik */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.easter-egg-close-btn:hover { 
    transform: scale(1.15); 
    background: #FF3B30;
    color: #ffffff;
}

.easter-egg-close-btn:hover { transform: scale(1.2); }

.easter-egg-ar {
    font-size: 100px; direction: rtl; color: #000000;
    margin-bottom: 15px; line-height: 1.4;
    font-family: 'Arakom', sans-serif !important;
}

.easter-egg-tr {
    font-size: 70px; direction: ltr; color: #FF3B30;
    line-height: 1.4;
    font-family: 'Arakom', sans-serif !important;
}

.sentence-emoji-header {
    width: 100%; display: flex; justify-content: center; align-items: center;
    padding: 10px 0; margin-bottom: 10px;
}

.sentence-emoji-badge {
    font-size: 40px; background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px; border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

/* TAM EKRAN MODU */
.matrix-fullscreen-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: #ffffff !important; z-index: 9999999 !important; overflow: hidden; 
    padding: 2vh 3vw; box-sizing: border-box; direction: rtl; align-items: center; justify-content: center;
}

.matrix-fullscreen-content {
    width: 100%; height: 100%; max-width: 1400px;
    position: relative; display: flex; flex-direction: column; justify-content: center;
}

.matrix-fullscreen-close {
    position: fixed; top: 25px; left: 25px; width: 50px; height: 50px;
    background: #ffffff; border: 3px solid #000000; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 28px; color: #000000; 
    cursor: pointer; z-index: 99999999; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-family: sans-serif; transition: transform 0.1s ease;
}
.matrix-fullscreen-close:active { transform: scale(0.9); }

.matrix-fullscreen-table {
    width: 100%; height: 95%; border-collapse: collapse; margin: auto 0; table-layout: fixed; 
}
.matrix-fullscreen-table th {
    background-color: #FF3B30 !important; color: #FFFFFF !important; border: 3px solid #000000;
    padding: 1vh 1vw; font-size: clamp(20px, 3.5vh, 30px); font-family: 'Arakom', sans-serif !important;
    font-weight: normal !important; text-align: center; height: 6vh; 
}
.matrix-fullscreen-table td {
    border: 3px solid #000000; padding: 1vh 1vw; text-align: center; background: #ffffff; vertical-align: middle;
}
.matrix-fullscreen-text {
    font-size: clamp(24px, 10vh, 100px); color: #000000; display: block;
    font-family: 'Arakom', sans-serif !important; font-weight: normal !important; line-height: 1.1;
}
.matrix-expand-btn {
    position: absolute; top: 4px; left: 12px; color: #2B88D9; font-size: 18px; cursor: pointer;
    z-index: 1000001; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; transition: 0.2s;
}
.matrix-expand-btn:hover { transform: scale(1.2); }

@keyframes glowingPlus {
    0% { transform: scale(1); color: #000; text-shadow: none; }
    50% { transform: scale(1.6); color: #FF3B30; text-shadow: 0 0 15px rgba(255, 59, 48, 0.8); }
    100% { transform: scale(1); color: #000; text-shadow: none; }
}

.plus-highlighted { animation: glowingPlus 1.2s infinite !important; color: #FF3B30 !important; }

/* Uzun Basma (Long Press) Tuş Varyasyon Menüsü */
.key-variations-menu {
    position: absolute; background: #ffffff; border: 2px solid #000; border-radius: 12px;
    padding: 6px; gap: 6px; box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 99999999 !important; display: flex; flex-direction: row-reverse; 
    animation: popIn 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.var-key {
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    background: #f5f5f7; color: #000; border: 1px solid #ccc; border-radius: 8px; cursor: pointer;
    font-size: 1.6rem; font-family: 'Arakom', sans-serif !important; user-select: none; transition: background 0.2s;
}
.var-key:hover { background: #d1d1d6; }

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.8) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* 3 BOYUTLU AHŞAP KÖK TAŞI */
.draggable-root-clone {
    position: absolute; z-index: 2000; font-family: 'Arakom', sans-serif;
    font-weight: normal !important; font-size: 2.6rem; color: #000000; direction: rtl;
    pointer-events: auto; cursor: grab; user-select: none; white-space: nowrap;
    background-color: #e4be97; 
    background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 2px, transparent 2px, transparent 6px); 
    padding: 8px 24px 15px 24px !important; line-height: 1.2 !important;
    border-radius: 10px; border: 2px solid #5c3a21; 
    box-shadow: 5px 5px 0px #5c3a21, 0px 10px 20px rgba(0,0,0,0.3); text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.4); 
}
.draggable-root-clone:active { cursor: grabbing; }

body:has(#zoomToggleCheckbox:checked) .draggable-root-clone {
    opacity: 0 !important; pointer-events: none !important; transition: opacity 0.2s ease !important;
}

.sari-vurgu {
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.8), inset 0 0 10px rgba(255, 204, 0, 0.3) !important;
    background-color: #fffde7 !important; transition: all 0.3s ease;
}

/* FİİL NUMARALARINI BUTONA ÇEVİRME (Tekrarlar temizlendi) */
.glass-box.fiil-box.kok-turendi .ref,
.glass-box.coklu-kullanim.kok-turendi .ref {
    background-color: #FF3B30 !important; color: #ffffff !important; border-radius: 5px; 
    padding: 0px 5px; transform: scale(0.95); -webkit-text-stroke: 0 !important; 
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.7); cursor: pointer; z-index: 105; 
    pointer-events: auto; animation: refPulse 1.5s infinite;
}

.glass-box.fiil-box.kok-turendi .ref:hover,
.glass-box.coklu-kullanim.kok-turendi .ref:hover {
    background-color: #d62828 !important; transform: scale(1.1); 
}

@keyframes refPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { box-shadow: 0 0 0 4px rgba(255, 59, 48, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

/* YENİ KÖK SEÇME EKRANI (TAM EKRAN + POPUP KLAVYE) */
.verb-overlay {
    background-color: #eef2f5 !important;
    width: 100vw !important; height: 100vh !important;
    position: fixed; top: 0; left: 0; z-index: 1000;
    display: none; /* js ile açılır */
    margin: 0; padding: 0;
}

.new-verb-layout {
    display: flex; flex-direction: column; width: 100%; height: 100%;
    padding: 15px 3vw; box-sizing: border-box; overflow: hidden;
}

.root-header {
    display: flex; align-items: center; gap: 15px; margin-bottom: 15px; width: 90%; 
    margin-left: auto; margin-right: auto; flex-shrink: 0; justify-content: center; direction: ltr;
}

#root-search {
    flex: 1; height: 55px; font-size: 24px; font-family: 'Arakom', sans-serif;
    padding: 0 20px; background: #ffffff; color: #2c3e50; border: 2px solid #FF3B30 !important; 
    border-radius: 15px; outline: none; box-shadow: inset 0 2px 5px rgba(0,0,0,0.05), 0 0 10px rgba(255, 59, 48, 0.1); 
    text-align: left !important; direction: ltr !important; cursor: text; transition: all 0.3s ease;
}

#root-search:focus {
    border-color: #d62828 !important; box-shadow: inset 0 2px 5px rgba(0,0,0,0.05), 0 0 15px rgba(255, 59, 48, 0.3);
}

.verb-close-btn {
    background: #ffffff; border: 2px solid #cbd5e1; border-radius: 50%;
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #64748b; cursor: pointer; box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: 0.2s; flex-shrink: 0; 
}
.verb-close-btn:hover { background: #fee2e2; color: #ef4444; border-color: #fca5a5; transform: scale(1.05); }

/* TAHMİN (ÖNERİ) ÇUBUĞU */
.root-predictions {
    display: flex; gap: 10px; padding: 5px 0 15px 0; flex-shrink: 0;
    justify-content: center; flex-wrap: wrap; 
}
.prediction-chip {
    background: #f0fdf4; color: #166534; padding: 8px 20px; border-radius: 20px;
    font-family: 'Arakom', sans-serif; font-size: 22px; cursor: pointer; white-space: nowrap;
    border: 2px solid #34C759 !important; box-shadow: 0 4px 10px rgba(52, 199, 89, 0.15); 
    font-weight: bold; transition: 0.2s;
}
.prediction-chip:hover { transform: scale(1.05); background: #dcfce7; box-shadow: 0 6px 15px rgba(52, 199, 89, 0.3); }

/* ========================================================= */
/* KLAVYE AÇILDIĞINDA ÖNEMLİ KÖKLERİ GİZLEME (YENİ EK)       */
/* ========================================================= */
body:has(.integrated-keyboard-popup.active) #important-roots-list,
body:has(.integrated-keyboard-popup.active) .important-roots-wrapper {
    display: none !important;
}

.roots-main-content {
    flex: 1; overflow-y: hidden; display: flex; flex-direction: column;
}

/* ÖNEMLİ KÖKLER LİSTESİ (Ortalanmış ve Yeşil) */
#important-roots-list {
    display: flex; flex-wrap: wrap; justify-content: center !important; gap: 12px; padding: 10px 0 25px 0;
}
.important-roots-wrapper .section-title { text-align: center !important; width: 100%; margin-bottom: 15px; }

#important-roots-list .flat-root-item {
    background-color: #f0fdf4 !important; color: #166534 !important;
    border-top: 1px solid #86efac !important; border-left: 1px solid #86efac !important;
    border-right: 1px solid #86efac !important; border-bottom: 4px solid #22c55e !important; 
    box-shadow: 0 4px 10px rgba(52, 199, 89, 0.15); font-weight: bold; border-radius: 10px;
}
#important-roots-list .flat-root-item:hover { background-color: #dcfce7 !important; border-bottom-color: #16a34a !important; transform: translateY(-2px); }
#important-roots-list .flat-root-item:active { border-top: 2px solid #86efac !important; border-bottom-width: 1px !important; transform: translateY(2px); box-shadow: none; }

.section-title.left-aligned {
    text-align: left; margin: 0 0 10px 0; font-size: 18px; color: #64748b;
    border-bottom: 2px solid rgba(200, 210, 224, 0.5); padding-bottom: 5px;
}

.flat-root-list { display: flex; flex-wrap: wrap; gap: 10px; }
.flat-root-item {
    display: flex; flex-direction: row-reverse; align-items: center; justify-content: center;
    gap: 8px; background-color: #f8f9fa !important; color: #000; padding: 10px 18px; 
    font-family: 'Arakom', sans-serif; font-size: 22px; cursor: pointer; border-radius: 8px; 
    border-top: 1px solid #d1d5db !important; border-left: 1px solid #d1d5db !important;
    border-right: 1px solid #d1d5db !important; border-bottom: 3px solid #9ca3af !important; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.03); transition: all 0.1s ease;
}
.flat-root-item:hover { background-color: #ffffff !important; border-bottom-color: #64748b !important; }
.flat-root-item:active { border-bottom-width: 1px !important; transform: translateY(2px); }

.letters-grid-wrapper { flex: 1; overflow: hidden; margin-top: 10px; }
.letters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; height: 100%; }
.letter-column {
    display: flex; flex-direction: column; gap: 10px; overflow-y: auto;
    padding-right: 5px; background: #e5e5ea !important; border: 4px solid #ffffff !important; 
    border-radius: 12px; padding-bottom: 20px;
}
.letter-column::-webkit-scrollbar { width: 5px; }
.letter-column::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 10px; }

.col-range-header {
    text-align: center; font-weight: normal; background: #2B88D9 !important; color: #ffffff !important;
    border-bottom: 4px solid #ffffff !important; padding: 10px; position: sticky; top: 0; z-index: 2; 
    font-size: 18px; font-family: 'Arakom', sans-serif; border-radius: 8px 8px 0 0;
    margin-top: -4px; margin-left: -4px; margin-right: -4px;
}
.letter-group-title { font-size: 26px; font-family: 'Arakom', sans-serif; color: #f28b82; text-align: center; border-bottom: 1px dashed rgba(242, 139, 130, 0.4); margin: 10px 15px 5px; }

/* Küçük Yüzen (Popup) Butonlar */
.floating-mini-btns { position: absolute; bottom: 30px; right: 3vw; display: flex; flex-direction: column; gap: 15px; z-index: 100; }
.mini-popup-btn {
    color: #2c3e50; border: 1px solid rgba(255,255,255,0.8); padding: 12px 25px; border-radius: 30px;
    font-family: 'Arakom', sans-serif; font-size: 18px; box-shadow: 0 6px 15px rgba(0,0,0,0.06); cursor: pointer; transition: 0.3s; font-weight: bold;
}
.mini-popup-btn.btn-aksam { background: rgba(163, 191, 250, 0.9); }
.mini-popup-btn.btn-mezid { background: rgba(252, 165, 165, 0.9); }

/* POPUP KLAVYE TASARIMI */
.integrated-keyboard-popup {
    position: fixed; bottom: -100%; left: 0; width: 100vw;
    background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1); transition: bottom 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10000; border-top-left-radius: 25px; border-top-right-radius: 25px; padding-bottom: 25px; border-top: 1px solid #ffffff;
}
.integrated-keyboard-popup.active { bottom: 0; }

.keyboard-popup-dragbar { width: 100%; height: 35px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.keyboard-popup-dragbar div { width: 50px; height: 6px; background: #cbd5e1; border-radius: 10px; pointer-events: none;}

.integrated-keyboard-inner { display: flex; flex-direction: column; gap: 10px; padding: 0 20px 10px 20px; }
.search-kb-row { display: flex; justify-content: center; gap: 10px; direction: ltr; }
.search-key {
    width: 55px; height: 55px; display: flex; align-items: center; justify-content: center;
    background: #1d1d1f; color: #ffffff; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
    cursor: pointer; font-size: 26px; font-family: 'Arakom', sans-serif; user-select: none; transition: 0.1s;
}
.search-key:active { background: #323236; transform: scale(0.95); }
.search-key.backspace { background: #600; min-width: 80px; }

/* Slide Menü */
.slide-up-menu {
    position: fixed; bottom: -100%; left: 0; width: 100vw; height: 65vh; 
    background: rgba(248, 250, 252, 0.95); backdrop-filter: blur(15px); border-top: 1px solid rgba(255,255,255,0.9);
    border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
    transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1); display: flex; flex-direction: column; padding: 20px 3vw; box-sizing: border-box; z-index: 105;
}
.slide-up-menu.active { bottom: 0; }
.slide-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 2px solid rgba(200, 210, 224, 0.5); padding-bottom: 15px; }
.slide-header h3 { margin: 0; font-size: 24px; color: #334155; }
.slide-close { background: #f1f5f9; border: none; font-size: 20px; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; color: #ef4444; font-weight: bold;}
.slide-content { overflow-y: auto; flex: 1; align-content: flex-start;}

/* --- KLAVYE İÇİN GÖRÜNMEZ TIKLAMA KALKANI (İPTAL EDİLDİ) --- */
.keyboard-backdrop { 
    display: none !important; 
    pointer-events: none !important; 
}
.keyboard-backdrop.active { 
    display: none !important; 
    pointer-events: none !important; 
}

.slide-backdrop { display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: transparent; z-index: 104; }
.slide-backdrop.active { display: block; }


/* ========================================================= */
/* YÜKSEK ÇÖZÜNÜRLÜKLÜ KLON (ZOOM BULANIKLIK ÇÖZÜMÜ)         */
/* ========================================================= */
.crisp-zoom-clone {
    position: fixed !important; 
    top: 35% !important; 
    left: 50% !important; 
    /* DİKKAT: !important takısı kaldırıldı ki büyüme/açılma animasyonu çalışabilsin */
    transform: translate(-50%, -50%); 
    margin: 0 !important;
    z-index: 999999 !important;
    width: auto !important;
    min-width: 400px !important;
    min-height: 120px !important;
    padding: 35px 55px !important;
    background-color: #fffaf9 !important; 
    border: 4px solid #FF3B30 !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 60px rgba(255, 59, 48, 0.3) !important;
    animation: crispPopIn 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
    will-change: auto !important; 
    cursor: default !important;
}

/* KAHVERENGİ KÖK TAŞI KLONU */
.crisp-root-clone {
    position: fixed !important; 
    top: 75% !important; 
    left: 50% !important; 
    /* DİKKAT: !important takısı kaldırıldı ki büyüme/açılma animasyonu çalışabilsin */
    transform: translate(-50%, -50%); 
    margin: 0 !important;
    z-index: 999999 !important;
    background-color: #e4be97 !important; 
    background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 2px, transparent 2px, transparent 6px) !important;
    border: 3px solid #5c3a21 !important; 
    border-radius: 18px !important; 
    padding: 15px 40px !important;
    box-shadow: 6px 6px 0px #5c3a21, 0 20px 50px rgba(0,0,0,0.4) !important;
    animation: crispPopIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important; 
    pointer-events: none !important;
}

.crisp-zoom-clone .ar, .crisp-zoom-clone .ar-small {
    font-size: 180px !important; line-height: 1.2 !important; white-space: nowrap !important;
}

.crisp-zoom-clone .ref {
    font-size: 26px !important; top: 15px !important; right: 15px !important; padding: 4px 12px !important;
    border-radius: 8px !important; background-color: #FF3B30 !important; color: #ffffff !important;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.6) !important; animation: none !important; 
}

.crisp-zoom-clone .easter-egg-trigger {
    width: 45px !important; height: 45px !important; font-size: 24px !important;
    top: -15px !important; left: -15px !important; cursor: pointer !important;
}


.crisp-root-clone .ar-root {
    font-family: 'Arakom', sans-serif !important; font-size: 130px !important; color: #000000 !important; 
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.4) !important; line-height: 1.2 !important; white-space: nowrap !important;
    display: block !important; direction: rtl !important; padding-bottom: 25px !important; 
}

@keyframes crispPopIn {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.glass-box.crisp-zoom-clone:hover {
    border-color: #FF3B30 !important; background-color: #fffaf9 !important; transform: translate(-50%, -50%) scale(1) !important; 
}
.glass-box.crisp-zoom-clone[style*="#bfffdf"]:hover { border-color: #000000 !important; background-color: #bfffdf !important; }

/* ARTI (+) MENÜSÜ */
#suffix-dropdown {
    transform: scale(1.1) !important; transform-origin: top center !important; z-index: 9999999 !important;
}
#suffix-dropdown .key.suggested-suffix {
    background-color: #fbbf24 !important; color: #1e293b !important; border-color: #f59e0b !important;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.5); transform: scale(1.08); font-weight: bold; transition: all 0.3s ease;
}

.plus-hint-badge {
    position: absolute; bottom: -10px; right: -10px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.4), rgba(245, 158, 11, 0.5)); 
    color: rgba(255, 255, 255, 0.75); font-size: 14px; width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.2); animation: pulseHintBadge 1.5s infinite;
    z-index: 20; pointer-events: none; backdrop-filter: blur(2px); 
}

@keyframes pulseHintBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.3); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.elegant-emoji {
    position: absolute; top: -10px; left: calc(100% + 5px); font-size: 65px; z-index: 100;
    pointer-events: none; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2)); opacity: 0; 
}
.elegant-emoji.animate-pop { animation: balloonFloat 1.5s ease-out forwards; }

@keyframes balloonFloat {
    0% { transform: scale(0) translateY(0); opacity: 0; }
    20% { transform: scale(1.2) translateY(-10px); opacity: 1; } 
    40% { transform: scale(1) translateY(-20px); opacity: 1; } 
    100% { transform: scale(0.9) translateY(-80px); opacity: 0; } 
}

.ornek-box {
    margin-top: 20px; 
    padding: 25px; 
    background: #f0f8ff; 
    border-radius: 12px; 
    border-right: 6px solid #2B88D9; 
    text-align: center !important; 
    display: flex;
    flex-direction: column; 
    align-items: center; 
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Örnek kutusu içindeki Arapça yazının devasa boyutu */
.ornek-box .easter-egg-ar {
    font-size: 85px !important; 
    margin-bottom: 20px !important;
}

/* Örnek kutusu içindeki Türkçe yazının devasa boyutu */
.ornek-box .easter-egg-tr {
    font-size: 55px !important; 
}

body.matrix-active { overflow: hidden !important; }

/* MOBİL TASARIM KORUMASI */
@media screen and (max-width: 1024px) {
    .top-bar, .window-pencere, .draggable-root-clone, #keyboard-overlay, 
    .zoom-toggle-area, #zoom-overlay, #root-display-box, #mobile-root-btn { display: none !important; }

    #verb-overlay .close-btn, .verb-close-btn { display: none !important; }

    body { padding: 15px 10px; background-color: #f0f4f8; }

    #mobile-top-bar {
        display: flex !important; justify-content: space-between; align-items: center;
        background-color: #2B88D9; color: #ffffff; padding: 12px 18px; border-radius: 14px;
        margin-bottom: 20px; box-shadow: 0 6px 20px rgba(43, 136, 217, 0.35);
        position: sticky; top: 10px; z-index: 99999;
    }

    .mobile-back-btn, .mobile-top-plus {
        width: 70px !important; height: 70px !important; display: flex; justify-content: center;
        align-items: center; background-color: #ffffff !important; color: #2B88D9 !important;            
        border-radius: 18px !important; font-size: 38px !important; cursor: pointer;
        transition: transform 0.2s; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 
    }
    .mobile-back-btn:active, .mobile-top-plus:active { transform: scale(0.9); }

    .mobile-root-display { font-family: 'Arakom', sans-serif; font-size: 90px !important; line-height: 1; direction: rtl; }

    .mobile-top-plus.plus-highlighted {
        background-color: #34C759 !important; color: #ffffff !important;            
        box-shadow: 0 0 20px rgba(52, 199, 89, 0.9); animation: crispPopIn 0.3s ease forwards;
    }

    #mobile-grid { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 15px; padding-bottom: 40px; }

    #mobile-grid .glass-box {
        width: 100% !important; margin: 0 !important; min-height: 160px; display: flex; flex-direction: column;
        justify-content: center; align-items: center; position: relative; border-width: 2px !important;
        border-bottom-width: 6px !important; border-radius: 14px !important;
    }

    #mobile-grid .ar, #mobile-grid .ar-small { font-size: 85px !important; line-height: 1.2 !important; }
    #mobile-grid .ref { font-size: 22px !important; padding: 6px 14px !important; border-radius: 8px !important; pointer-events: none !important; }

    .floating-emoji, .easter-egg-trigger { display: none !important; }

    .easter-egg-content { width: 95% !important; padding: 60px 25px 40px 25px !important; border-radius: 20px !important; }

    .easter-egg-close-btn {
        font-size: 55px !important; width: 70px !important; height: 70px !important;
        line-height: 70px !important; top: 10px !important; right: 15px !important;
        background-color: rgba(255, 0, 0, 0.1); border-radius: 50%;
    }

    .easter-egg-ar { font-size: 75px !important; line-height: 1.4 !important; margin-bottom: 35px !important; }
    .easter-egg-tr { font-size: 38px !important; line-height: 1.5 !important; }

    #suffix-dropdown {
        position: fixed !important; top: 110px !important; right: 20px !important; left: auto !important;
        transform: scale(2.2) !important; transform-origin: top right !important; z-index: 9999999 !important;
    }
}

/* HAZIR KÖK İKONU YÖNLENDİRME ANİMASYONU */
@keyframes bookWavePulse {
    0% { box-shadow: 0 0 0 0 rgba(43, 136, 217, 0.6); transform: scale(1); }
    70% { box-shadow: 0 0 0 15px rgba(43, 136, 217, 0); transform: scale(1.15); }
    100% { box-shadow: 0 0 0 0 rgba(43, 136, 217, 0); transform: scale(1); }
}

.ready-root-hint {
    animation: bookWavePulse 1.5s infinite ease-out !important;
    color: #2B88D9 !important; 
    border-radius: 50% !important; 
    display: inline-block; 
    transition: all 0.3s ease;
}

.siga-tr-text {
    display: block; font-family: sans-serif !important; font-size: 16px; color: #555555; margin-top: 8px; font-weight: bold;
}

/* --- EKLER MENÜSÜ TUŞ TASARIMI --- */
.suffix-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1.5rem;
    color: #333;
    padding: 8px 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.suffix-btn:hover {
    background-color: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.suffix-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* ========================================================= */
/* ÖNERİLEN EKLER İÇİN ALTIN SARI VURGU (İPUCU SİSTEMİ)      */
/* ========================================================= */
.suffix-btn.suggested-suffix {
    background-color: #FFD700 !important; /* Altın Sarısı */
    border-color: #D4AF37 !important;
    color: #000 !important;
    font-weight: 900 !important;
    transform: scale(1.05) !important; /* Öğrenci görsün diye hafifçe büyütür */
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.8) !important;
    animation: ipucuParla 1.5s infinite !important; /* Tatlı bir yanıp sönme efekti */
}

@keyframes ipucuParla {
    0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 15px rgba(255, 215, 0, 1); }
    100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
}

.suffix-menu-grid {
    display: grid; /* !important TAKISI KALDIRILDI */
    grid-template-columns: 1fr 1fr; 
    gap: 12px !important;            
    padding: 20px !important;       
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 0, 0, 0.1); 
    border-radius: 24px;            
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    width: 220px !important;        
    min-width: 220px !important;
    direction: rtl;
    z-index: 9999;                  
    position: absolute;
}

.menu-divider {
    grid-column: span 2; 
    height: 3px;                     /* Çizgiyi biraz kalınlaştırdık */
    background: #FF3B30 !important; 
    margin: 8px 0;                   /* Çizgi etrafındaki boşluğu artırdık */
    border-radius: 2px;
    opacity: 0.8;
}

.suffix-btn {
    width: 100%;
    height: 60px;                   /* Butonları parmak dostu boyuta getirdik */
    padding: 0;
    cursor: pointer;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    font-size: 1.4rem;              /* Yazıyı büyüttük */
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.suffix-btn:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
    transform: scale(1.05);          /* Hover'da çok hafif büyüme */
}

.suffix-btn:active {
    background-color: #f3f4f6;
    transform: scale(0.92);         /* Basıldığında gözle görülür tepki */
}

