 /* =========================================================
               1. ORTAK TEMEL DEĞİŞKENLER
               ========================================================= */
            :root {
                --bg-base: #F8FAFC; 
                --bg-glass: rgba(255, 255, 255, 0.85);
                --bg-solid: #FFFFFF;
                
                --text-heading: #0F172A; 
                --text-body: #334155;
                --text-muted: #64748B;
                
                --border-glass: rgba(15, 23, 42, 0.08);
                --border-solid: #E2E8F0;
                
                --accent-primary: #8B5CF6; 
                --accent-secondary: #0EA5E9; 
                --accent-gold: #D97706; 
                --accent-danger: #EF4444;
                
                --font-display: 'Outfit', sans-serif;
                --font-body: 'Plus Jakarta Sans', sans-serif;
                
                --shadow-glass: 0 10px 40px -10px rgba(15, 23, 42, 0.06);
                --shadow-float: 0 20px 50px -20px rgba(139, 92, 246, 0.15);
                --shadow-dropdown: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
                
                --radius-sm: 12px;
                --radius-md: 20px;
                --radius-lg: 32px;
                
                --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            }
    
            ::-webkit-scrollbar { width: 6px; height: 6px; }
            ::-webkit-scrollbar-track { background: var(--bg-base); }
            ::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 10px; }
            ::-webkit-scrollbar-thumb:hover { background: #94A3B8; }
    
            * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
            body { background-color: var(--bg-base); color: var(--text-body); font-family: var(--font-body); line-height: 1.75; font-size: 1.05rem; overflow-x: hidden; scroll-behavior: smooth; }
            ::selection { background: var(--accent-primary); color: #fff; }
            a { text-decoration: none; color: inherit; transition: var(--transition); }
            button, input { font-family: var(--font-body); appearance: none; -webkit-appearance: none; outline: none; border: none; }
    
            .ethereal-bg {
                position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1;
                background: 
                    radial-gradient(at 0% 0%, rgba(139, 92, 246, 0.08) 0px, transparent 50%),
                    radial-gradient(at 100% 0%, rgba(14, 165, 233, 0.08) 0px, transparent 50%),
                    radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.05) 0px, transparent 50%),
                    radial-gradient(at 0% 100%, rgba(14, 165, 233, 0.05) 0px, transparent 50%);
                animation: pulseBg 20s ease-in-out infinite alternate;
            }
            @keyframes pulseBg { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
    
            /* =========================================================
               2. ORTAK HEADER
               ========================================================= */
            .site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: transparent; padding: 1.5rem 0; transition: var(--transition); }
            .site-header.scrolled { background: var(--bg-glass); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid var(--border-glass); box-shadow: var(--shadow-glass); padding: 1rem 0; }
            .nav-container { max-width: 1440px; width: 95%; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
            .brand { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--text-heading); letter-spacing: -0.03em; z-index: 1001; position: relative; display: flex; align-items: center; line-height: 1; margin-bottom: 0; }
            .brand span { background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
            
            .header-actions { display: flex; align-items: center; gap: 4rem; }
            .main-menu { display: flex; gap: 3.5rem; list-style: none; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; align-items: center; margin: 0; padding: 0; }
            .main-menu a { color: var(--text-heading); position: relative; padding: 0.5rem 0; }
            .main-menu a:hover { color: var(--accent-primary); }
            .main-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent-primary); transition: var(--transition); }
            .main-menu a:hover::after { width: 100%; }
    
            .custom-lang-dropdown { position: relative; user-select: none; }
            .dropdown-trigger { display: flex; align-items: center; gap: 8px; background: var(--bg-solid); border: 1px solid var(--border-solid); border-radius: 50px; padding: 0.5rem 1.2rem; font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--text-heading); cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.02); transition: var(--transition); }
            .dropdown-trigger:hover { border-color: var(--accent-primary); }
            .custom-lang-dropdown.active .dropdown-trigger i { transform: rotate(180deg); }
            .dropdown-menu { position: absolute; top: calc(100% + 10px); right: 0; background: var(--bg-solid); border: 1px solid var(--border-solid); border-radius: var(--radius-sm); box-shadow: var(--shadow-dropdown); min-width: 150px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: var(--transition); z-index: 1000; overflow: hidden; }
            .custom-lang-dropdown.active .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
            .dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 0.8rem 1.2rem; font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: var(--text-body); border-bottom: 1px solid var(--bg-base); }
            .dropdown-menu a:hover, .dropdown-menu a.active { background: var(--bg-base); color: var(--accent-primary); padding-left: 1.5rem; }
    
            .mobile-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
            .mobile-toggle span { display: block; width: 30px; height: 3px; background: var(--text-heading); border-radius: 3px; transition: var(--transition); }
            .mobile-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
            .mobile-toggle.active span:nth-child(2) { opacity: 0; }
            .mobile-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
            .mobile-menu-overlay { display: none; }
    
            /* =========================================================
               3. ANA SAYFAYA ÖZEL: HERO & ARAMA
               ========================================================= */
            .hero-section { padding: 12rem 2rem 6rem 2rem; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
            .hero-badge { display: inline-block; padding: 0.5rem 1.5rem; background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.2); border-radius: 50px; color: var(--accent-primary); font-weight: 700; font-size: 0.9rem; margin-bottom: 1.5rem; letter-spacing: 0.05em; text-transform: uppercase; }
            .hero-title { font-family: var(--font-display); font-size: 4.5rem; font-weight: 900; color: var(--text-heading); line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
            .hero-title span { background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
            .hero-subtitle { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 3rem auto; }
    
            .search-container { width: 100%; max-width: 750px; position: relative; margin: 0 auto; z-index: 10; }
            .search-box { display: flex; align-items: center; background: var(--bg-solid); border: 2px solid var(--bg-solid); border-radius: 50px; padding: 0.5rem 0.5rem 0.5rem 1.8rem; box-shadow: var(--shadow-dropdown); transition: var(--transition); }
            .search-box:focus-within { border-color: var(--accent-primary); box-shadow: var(--shadow-float); transform: translateY(-2px); }
            .search-box i.fa-magnifying-glass { font-size: 1.4rem; color: var(--text-muted); transition: color 0.3s; }
            .search-box:focus-within i.fa-magnifying-glass { color: var(--accent-primary); }
            
            .search-input { width: 100%; background: transparent; padding: 1.2rem 1rem; font-size: 1.2rem; color: var(--text-heading); font-family: var(--font-body); font-weight: 500; }
            .search-input::placeholder { color: #94A3B8; font-weight: 400; }
            
            .search-btn { background: var(--text-heading); color: #fff; padding: 1.2rem 2.5rem; border-radius: 50px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2); transition: var(--transition); }
            .search-btn:hover { background: var(--accent-primary); box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4); transform: scale(1.05); }
    
            .ajax-results { position: absolute; top: calc(100% + 15px); left: 0; width: 100%; background: var(--bg-solid); border: 1px solid var(--border-solid); border-radius: var(--radius-md); box-shadow: var(--shadow-float); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: var(--transition); text-align: left; overflow: hidden; }
            .search-container.active .ajax-results { opacity: 1; visibility: visible; transform: translateY(0); }
            .ajax-results ul { list-style: none; max-height: 350px; overflow-y: auto; }
            .ajax-results a { display: flex; align-items: center; gap: 15px; padding: 1.2rem 1.5rem; font-weight: 500; color: var(--text-body); border-bottom: 1px solid var(--bg-base); transition: background 0.2s; }
            .ajax-results a:last-child { border-bottom: none; }
            .ajax-results a:hover { background: var(--bg-base); color: var(--accent-primary); padding-left: 2rem; }
            .ajax-results i { font-size: 0.9rem; color: var(--border-solid); transition: color 0.2s; }
            .ajax-results a:hover i { color: var(--accent-primary); }
    
            /* Ana Layout */
            .main-layout { max-width: 1440px; width: 95%; margin: 0 auto 6rem auto; }
    
            /* =========================================================
               4. ALFABETİK DİZİN (MİNİMAL - FLEX WRAP)
               ========================================================= */
            .section-header { text-align: center; margin-bottom: 2.5rem; }
            .section-header h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--text-heading); margin-bottom: 0.5rem; }
            .section-header p { color: var(--text-muted); font-size: 1.1rem; }
    
            /* Minimal ve sarma yapan (wrapping) alfabe konteyneri */
            .alphabet-container {
                display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 3rem; max-width: 1000px; margin-left: auto; margin-right: auto;
            }
            
            .alpha-btn {
                display: inline-flex; align-items: center; justify-content: center; 
                width: 48px; height: 48px; background: var(--bg-solid); 
                border: 1px solid var(--border-solid); border-radius: 12px; 
                font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text-muted); 
                cursor: pointer; transition: var(--transition); box-shadow: 0 2px 5px rgba(0,0,0,0.02);
            }
            .alpha-btn:hover { background: var(--bg-base); color: var(--text-heading); border-color: #CBD5E1; transform: translateY(-2px); }
            .alpha-btn.active { background: var(--text-heading); color: #fff; border-color: var(--text-heading); box-shadow: 0 8px 15px rgba(15, 23, 42, 0.2); transform: translateY(-2px); }
    
            /* Dinamik Sözlük Alanı (AJAX Container) */
            .dictionary-bento { background: var(--bg-glass); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border-glass); border-radius: var(--radius-lg); padding: 3rem; box-shadow: var(--shadow-glass); position: relative; min-height: 400px; }
            
            .dict-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; opacity: 1; transition: opacity 0.3s ease; }
            .dict-grid.loading { opacity: 0.3; pointer-events: none; }
            
            .dict-item { display: flex; align-items: center; gap: 12px; padding: 1.2rem 1.5rem; background: var(--bg-solid); border: 1px solid var(--border-solid); border-radius: var(--radius-sm); font-weight: 600; font-size: 1.05rem; color: var(--text-body); box-shadow: 0 2px 4px rgba(0,0,0,0.01); transition: var(--transition); }
            .dict-item i { color: var(--border-solid); font-size: 0.9rem; transition: var(--transition); }
            .dict-item:hover { border-color: var(--accent-primary); color: var(--accent-primary); box-shadow: 0 6px 12px rgba(139, 92, 246, 0.08); transform: translateX(5px); }
            .dict-item:hover i { color: var(--accent-primary); transform: translateX(3px); }
    
            /* Load More Butonu */
            .load-more-wrapper { text-align: center; margin-top: 3rem; }
            .btn-load-more { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 2px solid var(--border-solid); color: var(--text-heading); padding: 1rem 2.5rem; border-radius: 50px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; transition: var(--transition); }
            .btn-load-more:hover { border-color: var(--text-heading); background: var(--text-heading); color: #fff; }
            .btn-load-more.loading i { animation: spin 1s linear infinite; }
            @keyframes spin { 100% { transform: rotate(360deg); } }
    
            /* =========================================================
               5. TRENDLER & GÜNÜN RÜYALARI (Alt Bento)
               ========================================================= */
            .trends-wrapper { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; margin-top: 6rem; }
            .bento-card { background: var(--bg-solid); border: 1px solid var(--border-glass); border-radius: var(--radius-lg); padding: 3rem; box-shadow: var(--shadow-glass); transition: var(--transition); }
            .bento-card:hover { border-color: rgba(14, 165, 233, 0.2); box-shadow: var(--shadow-float); }
            .card-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--text-heading); margin-bottom: 2rem; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border-solid); padding-bottom: 1rem; }
            
            .trend-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; }
            .trend-item { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem; background: var(--bg-base); border: 1px solid var(--border-solid); border-radius: var(--radius-sm); font-weight: 600; color: var(--text-heading); transition: var(--transition); }
            .trend-item:hover { background: var(--text-heading); color: #fff; border-color: var(--text-heading); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(15, 23, 42, 0.1); }
            .trend-count { font-size: 0.85rem; background: var(--bg-solid); color: var(--text-muted); padding: 0.3rem 0.8rem; border-radius: 50px; font-weight: 500; }
            .trend-item:hover .trend-count { color: var(--text-heading); }
    
            /* Off-Page SEO Blok */
            .seo-text-block { max-width: 1000px; margin: 6rem auto 2rem auto; text-align: center; }
            .seo-text-block h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--text-heading); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
            .seo-text-block p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1.2rem; line-height: 1.8; }
    
            /* =========================================================
               6. ORTAK FOOTER
               ========================================================= */
            .site-footer { background: var(--bg-solid); border-top: 1px solid var(--border-solid); padding: 5rem 2rem 2rem 2rem; margin-top: 4rem; }
            .footer-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
            .footer-brand { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--text-heading); margin-bottom: 1rem; letter-spacing: -0.03em; }
            .footer-col h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-heading); margin-bottom: 1.5rem; }
            .footer-col ul { list-style: none; }
            .footer-col ul li { margin-bottom: 0.8rem; }
            .footer-col ul a { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
            .footer-col ul a:hover { color: var(--accent-primary); }
            .footer-bottom { max-width: 1440px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border-solid); display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
    
            /* =========================================================
               7. RESPONSIVE MİMARİ
               ========================================================= */
            @media (max-width: 1024px) {
                .trends-wrapper { grid-template-columns: 1fr; }
                .footer-grid { grid-template-columns: 1fr 1fr; }
            }
            @media (max-width: 768px) {
                .site-header { padding: 1rem; }
                .nav-container { position: relative; width: 100%; }
                .header-actions { display: none; }
                .mobile-toggle { display: flex; }
                
                .mobile-menu-overlay {
                    display: flex !important; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
                    background: var(--bg-glass); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
                    z-index: 999; flex-direction: column; align-items: center; justify-content: center;
                    opacity: 0; visibility: hidden; transition: var(--transition); transform: translateY(-20px);
                }
                .mobile-menu-overlay.active { opacity: 1; visibility: visible; transform: translateY(0); }
                .mobile-menu-overlay .main-menu { display: flex; flex-direction: column; text-align: center; gap: 2rem; font-size: 1.5rem; margin-bottom: 3rem; }
    
                .hero-section { padding: 8rem 1rem 4rem 1rem; }
                .hero-title { font-size: 3rem; }
                
                /* Native Search Box on Mobile */
                .search-box { flex-direction: column; padding: 0.5rem; border-radius: var(--radius-md); gap: 0.5rem; }
                .search-box i.fa-magnifying-glass { display: none; }
                .search-input { text-align: center; padding: 1rem; }
                .search-btn { width: 100%; border-radius: var(--radius-sm); }
                
                /* Minimal Alfabe Mobil Uyum (Kompakt) */
                .alphabet-container { gap: 0.4rem; margin-bottom: 2rem; }
                .alpha-btn { width: 40px; height: 40px; font-size: 1.05rem; border-radius: 10px; }
                
                .dictionary-bento { padding: 1.5rem; border-radius: var(--radius-md); }
                .bento-card { padding: 1.5rem; border-radius: var(--radius-md); }
                
                .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
                .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
            }   