    /* =========================================================
           1. ETHEREAL LIGHT TEMA DEĞİŞKENLERİ (PRODUCTION READY)
           ========================================================= */
        :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);
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg-base); }
        ::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: #94A3B8; }

        /* =========================================================
           2. SIFIRLAMA & MESH GRADIENT
           ========================================================= */
        * { 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 { cursor: pointer; font-family: var(--font-body); }
        
        /* Form Elementleri Native Reset */
        input, textarea { font-family: var(--font-body); appearance: none; -webkit-appearance: 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); } }

        /* =========================================================
           3. MEGA HEADER & MOBİL MENU TOGGLE
           ========================================================= */
        .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; 
            padding: 0;
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
        }
        .brand {
            font-family: var(--font-display); font-size: 2rem; font-weight: 800;
            color: var(--text-heading); letter-spacing: -0.03em; z-index: 1001; position: relative;
        }
        .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: 2rem; }

        .main-menu { display: flex; gap: 2.5rem; list-style: none; font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
        .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); }
        .dropdown-trigger i { font-size: 0.75rem; color: var(--text-muted); transition: transform 0.3s ease; }
        .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:last-child { border-bottom: none; }
        .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); }

        /* =========================================================
           4. BENTO GRID ANA MİMARİ
           ========================================================= */
        .layout-wrapper {
            max-width: 1300px; margin: 8rem auto 6rem auto; padding: 0 2rem;
            display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start;
        }
        .bento-card {
            background: var(--bg-solid); border: 1px solid var(--border-glass);
            border-radius: var(--radius-lg); box-shadow: var(--shadow-glass);
            padding: 3.5rem; position: relative; transition: var(--transition);
        }
        .bento-card:hover { border-color: rgba(139, 92, 246, 0.2); box-shadow: var(--shadow-float); }

        /* =========================================================
           5. SOL SÜTUN: CONTENT & ÖNE ÇIKAN GÖRSEL
           ========================================================= */
        .breadcrumb {
            display: flex; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
            margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.05em; flex-wrap: wrap;
        }
        .breadcrumb a:hover { color: var(--accent-primary); }
        .breadcrumb span.sep { color: var(--border-solid); }

        .article-h1 {
            font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--text-heading);
            line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.02em;
        }

        .trust-bar {
            display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
            padding: 1.2rem 0; border-top: 1px dashed var(--border-solid); border-bottom: 1px dashed var(--border-solid); margin-bottom: 2.5rem;
        }
        .trust-group { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
        .trust-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--text-body); }
        .trust-badge i { color: var(--accent-secondary); font-size: 1.1rem; }
        .trust-badge.rating i { color: var(--accent-gold); }
        
        .action-btns { display: flex; gap: 0.5rem; }
        .action-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bg-base); border: 1px solid var(--border-solid); color: var(--text-muted); transition: var(--transition); cursor: pointer; }
        .action-btn:hover { background: var(--accent-primary); color: #fff; border-color: var(--accent-primary); transform: translateY(-2px); }

        .featured-image { margin-bottom: 3rem; border-radius: var(--radius-md); overflow: hidden; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .featured-image img { width: 100%; height: auto; display: block; object-fit: cover; max-height: 500px; transition: transform 0.5s ease; }
        .featured-image:hover img { transform: scale(1.02); }
        .featured-image figcaption {
            position: absolute; bottom: 0; left: 0; width: 100%; padding: 1.5rem;
            background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
            color: #fff; font-size: 0.95rem; font-weight: 500; text-align: center;
        }

        .focus-box {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(14, 165, 233, 0.05));
            border: 1px solid rgba(139, 92, 246, 0.15); border-left: 4px solid var(--accent-primary);
            border-radius: var(--radius-md); padding: 2.5rem; margin-bottom: 3rem;
        }
        .focus-box h3 { font-family: var(--font-display); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-primary); margin-bottom: 0.5rem; }
        .focus-box p { font-size: 1.3rem; font-weight: 500; color: var(--text-heading); margin: 0; line-height: 1.6; }

        .dynamic-content p { margin-bottom: 1.8rem; font-size: 1.1rem; }
        .dynamic-content h2 {
            font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--text-heading);
            margin: 4rem 0 1.5rem 0; display: flex; align-items: center; gap: 1rem;
        }
        .dynamic-content h2::before { content: ''; display: block; width: 24px; height: 4px; background: var(--accent-secondary); border-radius: 2px; }
        
        .citations-box {
            margin-top: 4rem; padding: 2.5rem; background: var(--bg-base); border: 1px solid var(--border-solid);
            border-radius: var(--radius-md); position: relative;
        }
        .citations-box h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-heading); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px; }
        .citations-box h4 i { color: var(--accent-primary); }
        .citations-box ul { list-style: none; }
        .citations-box li { margin-bottom: 0.8rem; padding-left: 20px; position: relative; font-size: 0.95rem; color: var(--text-muted); }
        .citations-box li::before { content: '\f02d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--border-solid); font-size: 0.8rem; }

        .author-bio-box {
            display: flex; gap: 2rem; align-items: center; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border-solid);
        }
        .author-bio-box img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid var(--bg-base); box-shadow: var(--shadow-glass); }
        .author-bio-text h4 { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-heading); margin-bottom: 0.3rem; }
        .author-bio-text .role { font-size: 0.85rem; color: var(--accent-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.8rem; }
        .author-bio-text p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

        /* =========================================================
           6. GELİŞMİŞ YORUM SİSTEMİ
           ========================================================= */
        .comments-section { margin-top: 4rem; padding-top: 3rem; border-top: 2px solid var(--bg-base); }
        .comments-header { font-family: var(--font-display); font-size: 2rem; color: var(--text-heading); margin-bottom: 2rem; }
        
        .comment-form { background: var(--bg-base); padding: 2rem; border-radius: var(--radius-md); border: 1px solid var(--border-solid); margin-bottom: 4rem; }
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
        .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
        .form-group label { font-weight: 600; font-size: 0.9rem; color: var(--text-heading); }
        .form-control { width: 100%; padding: 1rem 1.2rem; border: 1px solid var(--border-solid); border-radius: var(--radius-sm); font-size: 1rem; color: var(--text-body); background: var(--bg-solid); transition: var(--transition); }
        .form-control:focus { outline: none; border-color: var(--accent-primary); box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1); }
        textarea.form-control { resize: vertical; min-height: 120px; grid-column: 1 / -1; }
        .btn-submit { background: var(--text-heading); color: #fff; border: none; padding: 1rem 2rem; border-radius: var(--radius-sm); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 10px; }
        .btn-submit:hover { background: var(--accent-primary); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2); }

        .comment-list { list-style: none; }
        .comment-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; }
        .comment-avatar img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; background: var(--border-solid); }
        .comment-body { flex: 1; background: var(--bg-solid); border: 1px solid var(--border-solid); padding: 1.5rem; border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md); position: relative; }
        .comment-body::before { content: ''; position: absolute; top: 20px; left: -8px; width: 15px; height: 15px; background: var(--bg-solid); border-left: 1px solid var(--border-solid); border-bottom: 1px solid var(--border-solid); transform: rotate(45deg); }
        .comment-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
        .comment-author { font-family: var(--font-display); font-weight: 700; color: var(--text-heading); font-size: 1.1rem; }
        .comment-date { font-size: 0.85rem; color: var(--text-muted); }
        .comment-text { font-size: 1rem; color: var(--text-body); margin-bottom: 1rem; }
        .comment-reply { background: transparent; border: none; color: var(--accent-primary); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; transition: var(--transition); }
        .comment-reply:hover { color: var(--text-heading); }
        
        .comment-item.reply { margin-left: 4rem; position: relative; }
        .comment-item.reply::before { content: ''; position: absolute; top: -2rem; left: -2.5rem; width: 2px; height: calc(100% + 2rem); background: var(--border-solid); }

        /* =========================================================
           7. SAĞ SÜTUN: SIDEBAR
           ========================================================= */
        .sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 2rem; }
        .widget { background: var(--bg-solid); border: 1px solid var(--border-glass); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-glass); }
        .widget-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-heading); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-solid); }
        
        .toc-list { list-style: none; }
        .toc-list li { margin-bottom: 0.5rem; }
        .toc-list a { display: block; padding: 0.8rem 1rem; border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 600; color: var(--text-muted); transition: var(--transition); background: var(--bg-base); }
        .toc-list a:hover { background: var(--text-heading); color: #fff; transform: translateX(5px); }

        .promo-widget { background: linear-gradient(135deg, var(--text-heading), #1E293B); color: #fff; text-align: center; }
        .promo-widget .widget-title { color: #fff; border-color: rgba(255,255,255,0.1); }

        /* =========================================================
           8. EKSİKSİZ 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: 1300px; 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: 1300px; 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); }

        /* =========================================================
           9. RESPONSIVE
           ========================================================= */
        @media (max-width: 1024px) {
            .layout-wrapper { grid-template-columns: 1fr; }
            .sidebar { position: relative; top: 0; display: grid; grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .site-header { padding: 1rem; }
            .nav-container { position: relative; }
            
            .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; display: flex; 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; }
            
            .layout-wrapper { padding: 0 1rem; margin-top: 6rem; }
            .bento-card { padding: 2rem 1.25rem; border-radius: 20px; }
            
            .article-h1 { font-size: 2.4rem; }
            .trust-bar { flex-direction: column; align-items: flex-start; }
            .form-grid { grid-template-columns: 1fr; }
            .comment-item { flex-direction: column; }
            .comment-body::before { display: none; }
            .comment-item.reply { margin-left: 1.5rem; }
            
            .sidebar { grid-template-columns: 1fr; gap: 1.5rem; }
            .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
        }
        .mobile-menu-overlay { display: none; }
        /* --- PAYLAŞIM MENÜSÜ (SHARE DROPDOWN) --- */
        .share-dropdown {
            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: 180px; opacity: 0; visibility: hidden;
            transform: translateY(-10px); transition: var(--transition);
            z-index: 1050; display: flex; flex-direction: column; overflow: hidden;
        }
        .share-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
        .share-opt {
            display: flex; align-items: center; gap: 12px; padding: 12px 16px;
            font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
            color: var(--text-body); border-bottom: 1px solid var(--bg-base);
            cursor: pointer; text-decoration: none; transition: background 0.2s ease;
        }
        .share-opt:last-child { border-bottom: none; }
        .share-opt:hover { background: var(--bg-base); }
        .share-opt.wa:hover i { color: #25D366; }
        .share-opt.tw:hover i { color: #000000; }
        .share-opt.fb:hover i { color: #1877F2; }
        .share-opt.tg:hover i { color: #0088cc; }
        .share-opt.copy-link:hover i { color: var(--accent-primary); }
        /* --- İNTERAKTİF RATING SİSTEMİ CSS --- */
        .interactive-rating { position: relative; cursor: pointer; }
        .interactive-rating .rating-display { display: flex; align-items: center; gap: 0.5rem; }
        .interactive-rating .stars-dropdown {
            position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-10px);
            background: var(--bg-solid); border: 1px solid var(--border-solid); box-shadow: var(--shadow-dropdown);
            border-radius: var(--radius-sm); padding: 12px 15px; display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: var(--transition); z-index: 1050; min-width: 140px;
        }
        /* Telefondaki tıklama ve Masaüstündeki Hover efekti */
        .interactive-rating:hover .stars-dropdown, .interactive-rating:focus-within .stars-dropdown { 
            opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); 
        }
        .stars-row { display: flex; gap: 5px; flex-direction: row-reverse; /* Hover matematiği için ters dizilim */ }
        .stars-row i { font-size: 1.3rem; color: var(--border-solid); transition: color 0.2s, transform 0.2s; cursor: pointer; }
        
        /* Sağdan sola hover dolum mantığı (CSS Hack) */
        .stars-row i:hover, .stars-row i:hover ~ i { color: var(--accent-gold); transform: scale(1.15); }
        
        .rating-thanks { font-size: 0.85rem; font-family: var(--font-display); font-weight: 700; color: var(--accent-primary); white-space: nowrap; }
        /* --- LOKAL YAZAR AVATARI --- */
        .local-avatar {
            width: 120px; /* Mevcut tasarımına göre 100px veya 150px yapabilirsin */
            height: 120px;
            border-radius: 50%; /* Tam yuvarlak yapar */
            color: #ffffff; /* Yazı rengi beyaz */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem; /* Harf büyüklüğü */
            font-family: var(--font-display);
            font-weight: 800;
            letter-spacing: 2px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin: 0 auto 15px auto; /* Ortalamak ve  altından boşluk vermek için */
            user-select: none; /* Metnin fareyle seçilmesini engeller (resim hissi verir) */
        }