/* Google Kurumsal Tipografisi ve Ana Ayarlar */
:root {
    --apple-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body { 
    font-family: var(--apple-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fbfbfd;
    color: #202124; 
    padding-bottom: calc(env(safe-area-inset-bottom) + 130px); 
}

/* Scrollbar Gizleme ve Stilleme */
::-webkit-scrollbar { 
    width: 0px; 
    background: transparent; 
}

.menu-scroll::-webkit-scrollbar { 
    width: 4px; 
}
.menu-scroll::-webkit-scrollbar-track { 
    background: transparent; 
}
.menu-scroll::-webkit-scrollbar-thumb { 
    background-color: rgba(74, 44, 17, 0.15); 
    border-radius: 10px; 
}
.menu-scroll:hover::-webkit-scrollbar-thumb { 
    background-color: rgba(74, 44, 17, 0.3); 
}

/* Apple Tarzı Buzlu Cam Efekti */
.frosted-glass { 
    background-color: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(24px) saturate(180%); 
    -webkit-backdrop-filter: blur(24px) saturate(180%); 
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* İkon Stilleri */
.material-symbols-outlined.fill { 
    font-variation-settings: 'FILL' 1; 
}