
        :root {
            --primary-dark: #0c1e3e;
            --primary-color: #1a365d;
            --secondary-color: #d4af37;
            --accent-color: #8b4513;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --text-color: #333;
            --gray-light: #e9ecef;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .main-content {
            flex: 1;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--primary-dark);
        }
        
        /* Header - 3 Bölümlü Modern Tasarım */
        .main-header {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            position: relative;
        }
        
        /* 1. Bölüm - Sosyal Medya */
        .social-section {
            flex: 1;
            display: flex;
            gap: 12px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .social-icon:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-color), #e6c158);
            border-radius: 50%;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .social-icon i {
            position: relative;
            z-index: 1;
            font-size: 1.1rem;
        }
        
        .social-icon:hover:after {
            transform: translateY(0);
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 2. Bölüm - Logo ve Menü */
        .logo-menu-section {
            flex: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 30px;
        }
        
        /* 1. DEĞİŞİKLİK: Logo sadece Ebru Ekşioğlu olacak, avukat kalkacak */
        .site-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-dark);
            text-decoration: none;
            text-align: center;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            letter-spacing: 1px;
        }
        
        .site-logo span {
            color: var(--secondary-color);
            position: relative;
        }
        
        .site-logo span:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(212, 175, 55, 0.2);
            z-index: -1;
        }
        
        .main-nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 35px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-link:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        
        .nav-link:hover:before,
        .nav-link.active:before {
            width: 100%;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--secondary-color);
        }
        
        /* 3. Bölüm - Blog ve Dil */
        .blog-language-section {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 25px;
        }
        
        .blog-header-btn {
            background: linear-gradient(135deg, var(--accent-color), #a0522d);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .blog-header-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }
        
        .blog-header-btn:hover:before {
            left: 100%;
        }
        
        .blog-header-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
        }
        
        .language-switcher {
            display: flex;
            background-color: var(--gray-light);
            border-radius: 30px;
            padding: 5px;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .lang-btn {
            background: transparent;
            border: none;
            padding: 8px 18px;
            border-radius: 25px;
            font-weight: 600;
            color: var(--primary-dark);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .lang-btn.active {
            background-color: white;
            color: var(--primary-dark);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        /* Mobil Menü Tasarımı */
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: var(--primary-dark);
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: all 0.3s;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .mobile-menu-btn:hover {
            background-color: rgba(12, 30, 62, 0.05);
        }
        
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
        }
        
        .mobile-menu-container {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100%;
            background: white;
            z-index: 1000;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            transition: right 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        
        .mobile-menu-container.active {
            right: 0;
        }
        
        .mobile-menu-header {
            padding: 25px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* 1. DEĞİŞİKLİK: Mobil logo sadece Ebru Ekşioğlu */
        .mobile-menu-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            line-height: 1.3;
            display: flex;
            flex-direction: column;
        }
        
        .mobile-menu-logo .name-text {
            font-size: 2rem;
            color: var(--secondary-color);
        }
        
        .mobile-close-btn {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .mobile-close-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .mobile-nav {
            flex: 1;
            padding: 30px 25px;
        }
        
        .mobile-nav ul {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
        }
        
        .mobile-nav li {
            margin-bottom: 15px;
        }
        
        .mobile-nav a {
            display: block;
            padding: 15px 20px;
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 10px;
            transition: all 0.3s;
            border-left: 4px solid transparent;
        }
        
        .mobile-nav a:hover,
        .mobile-nav a.active {
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--secondary-color);
            border-left-color: var(--secondary-color);
            transform: translateX(5px);
        }
        
        .mobile-language-switcher {
            display: flex;
            background-color: var(--gray-light);
            border-radius: 30px;
            padding: 5px;
            margin: 0 25px 30px;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-lang-btn {
            flex: 1;
            background: transparent;
            border: none;
            padding: 10px;
            border-radius: 25px;
            font-weight: 600;
            color: var(--primary-dark);
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }
        
        .mobile-lang-btn.active {
            background-color: white;
            color: var(--primary-dark);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-social-section {
            padding: 25px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .mobile-social-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .mobile-social-icon:hover {
            background: linear-gradient(135deg, var(--secondary-color), #e6c158);
            transform: translateY(-3px);
        }
        
        /* Blog Detay Hero Section */
        .blog-detail-hero {
            background: linear-gradient(rgba(12, 30, 62, 0.9), rgba(12, 30, 62, 0.85)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 180px 0 100px;
            margin-top: 100px;
            text-align: center;
            position: relative;
        }
        
        .blog-detail-hero:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, transparent, white);
        }
        
        .blog-detail-category {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--primary-dark);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .blog-detail-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: white;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .blog-detail-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .meta-item i {
            color: var(--secondary-color);
        }
        
        /* Blog Detay Ana İçerik */
        .blog-detail-content {
            padding: 200px 0;
        }
        
        .blog-container {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 60px;
        }
        
        /* Blog İçerik Ana Alan (SOL TARAF) */
        .blog-main-content {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }
        
        .blog-featured-image {
            width: 100%;
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .blog-featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .blog-featured-image:hover img {
            transform: scale(1.05);
        }
        
        /* Sağ Sidebar (SAĞ TARAF) */
        .blog-sidebar {
            position: sticky;
            top: 150px;
            height: fit-content;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .widget-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--gray-light);
            position: relative;
        }
        
        .widget-title:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }
        
        /* Ebru Ekşioğlu Bölümü */
        .author-widget {
            text-align: center;
        }
        
        .author-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 5px solid var(--secondary-color);
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-name {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary-dark);
        }
        
        .author-title {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .author-bio {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .btn-author-contact {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }
        
        .btn-author-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(12, 30, 62, 0.2);
            color: white;
        }
        
        /* Son Yazılar Widget */
        .recent-posts-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .recent-post-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .recent-post-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .recent-post-img {
            width: 90px;
            height: 90px;
            border-radius: 10px;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .recent-post-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .recent-post-item:hover .recent-post-img img {
            transform: scale(1.05);
        }
        
        .recent-post-content {
            flex: 1;
        }
        
        .recent-post-content h4 {
            font-size: 1rem;
            margin-bottom: 8px;
            line-height: 1.4;
            font-weight: 600;
        }
        
        .recent-post-content h4 a {
            color: var(--primary-dark);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .recent-post-content h4 a:hover {
            color: var(--secondary-color);
        }
        
        .recent-post-content .date {
            color: var(--secondary-color);
            font-size: 0.85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* Sesli MP3 Oynatıcı */
        .audio-player-section {
            background: linear-gradient(135deg, #0c1e3e, #1a365d);
            border-radius: 15px;
            padding: 35px;
            margin: 0px 0 50px 0;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .audio-player-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }
        
        .audio-player-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            gap: 20px;
        }
        
        .audio-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary-color), #e6c158);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary-dark);
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .audio-title-container {
            flex: 1;
        }
        
        .audio-podcast-title {
            font-size: 1rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .audio-title {
            font-size: 1.6rem;
            margin-bottom: 5px;
            color: white;
            font-weight: 700;
        }
        
        .audio-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .ai-badge {
            background-color: rgba(76, 175, 80, 0.2);
            color: #4CAF50;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .audio-player {
            width: 100%;
        }
        
        .audio-controls {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .play-pause-btn {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--secondary-color), #e6c158);
            border-radius: 50%;
            border: none;
            color: var(--primary-dark);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .play-pause-btn:hover {
            background: linear-gradient(135deg, #e6c158, #f1d98d);
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        .progress-container {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            height: 10px;
            border-radius: 5px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .progress-bar {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            border-radius: 5px;
            transition: width 0.1s;
        }
        
        .time-display {
            display: flex;
            justify-content: space-between;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            margin-top: 10px;
            font-weight: 500;
        }
        
        .audio-features {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .volume-control {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
        }
        
        .volume-control i {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
        
        .volume-slider {
            flex: 1;
            max-width: 120px;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
        }
        
        .volume-level {
            width: 70%;
            height: 100%;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            border-radius: 3px;
        }
        
        .download-audio {
            background: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .download-audio:hover {
            background-color: rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }
        
        /* Paylaşım Butonları */
        .share-section {
            background-color: var(--light-color);
            border-radius: 15px;
            padding: 30px;
            margin: 50px 0;
            text-align: center;
        }
        
        .share-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--primary-dark);
        }
        
        .share-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .share-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            color: white;
            min-width: 160px;
            justify-content: center;
        }
        
        .share-btn.facebook {
            background-color: #1877F2;
        }
        
        .share-btn.twitter {
            background-color: #1DA1F2;
        }
        
        .share-btn.linkedin {
            background-color: #0077B5;
        }
        
        .share-btn.whatsapp {
            background-color: #25D366;
        }
        
        .share-btn.copy-link {
            background: linear-gradient(135deg, var(--secondary-color), #e6c158);
            color: var(--primary-dark);
        }
        
        .share-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        /* Blog İçeriği - SEO Uyumlu Başlıklar */
        .blog-text-content h1 {
            font-size: 2.5rem;
            margin: 40px 0 20px;
            color: var(--primary-dark);
            position: relative;
            padding-bottom: 15px;
        }
        
        .blog-text-content h1:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }
        
        .blog-text-content h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: var(--primary-dark);
            position: relative;
            padding-bottom: 15px;
        }
        
        .blog-text-content h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }
        
        .blog-text-content h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: var(--primary-dark);
        }
        
        .blog-text-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .blog-text-content ul, .blog-text-content ol {
            margin-bottom: 25px;
            padding-left: 25px;
        }
        
        .blog-text-content li {
            margin-bottom: 10px;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .quote-box {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
            border-left: 4px solid var(--secondary-color);
            padding: 30px;
            margin: 40px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            font-size: 1.2rem;
            line-height: 1.6;
        }
        
        .quote-author {
            margin-top: 15px;
            font-weight: 600;
            color: var(--primary-dark);
            font-style: normal;
        }
        
        /* 4. DEĞİŞİKLİK: Pagination - Önceki/Sonraki yazı butonları */
        .blog-pagination {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid #eee;
        }
        
        .pagination-btn {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 30px;
            background-color: white;
            border: 1px solid #eee;
            border-radius: 15px;
            text-decoration: none;
            color: var(--primary-dark);
            transition: all 0.3s;
            width: 48%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .pagination-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--secondary-color);
        }
        
        .pagination-btn.prev {
            text-align: left;
        }
        
        .pagination-btn.next {
            text-align: right;
            flex-direction: row-reverse;
        }
        
        .pagination-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .pagination-btn:hover .pagination-icon {
            background: linear-gradient(135deg, var(--secondary-color), #e6c158);
        }
        
        .pagination-content {
            flex: 1;
        }
        
        .pagination-label {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .pagination-title {
            font-weight: 700;
            font-size: 1.1rem;
            line-height: 1.4;
        }
        
        /* Footer - Modern */
        .footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
            width: 100%;
            margin-top: auto;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }
        
        /* 1. DEĞİŞİKLİK: Footer logo da sadece Ebru Ekşioğlu */
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .footer-logo span {
            color: var(--secondary-color);
        }
        
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .footer-social a:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            border-radius: 50%;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .footer-social a i {
            position: relative;
            z-index: 1;
        }
        
        .footer-social a:hover:after {
            transform: translateY(0);
        }
        
        .footer-social a:hover {
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive Tasarım */
        @media (max-width: 1200px) {
            .blog-detail-title {
                font-size: 3rem;
            }
            
            .site-logo {
                font-size: 2.5rem;
            }
            
            .blog-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .blog-sidebar {
                position: static;
            }
        }
        
        @media (max-width: 992px) {
            .header-container {
                padding: 12px 0;
                position: relative;
            }
            
            /* Masaüstü menüyü gizle, mobil menü butonunu göster */
            .social-section, .blog-language-section, .main-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                right: 15px;
                top: 50%;
                transform: translateY(-50%);
            }
            
            .logo-menu-section {
                order: 1;
                padding: 0;
                flex: 1;
                text-align: left;
                align-items: flex-start;
            }
            
            .site-logo {
                font-size: 2.2rem;
                margin-bottom: 0;
                text-align: left;
            }
            
            .blog-detail-hero {
                padding: 150px 0 80px;
                margin-top: 80px;
            }
            
            .blog-detail-title {
                font-size: 2.5rem;
            }
            
            .blog-main-content {
                padding: 35px;
            }
            
            .blog-featured-image {
                height: 400px;
            }
            
            .share-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .share-btn {
                width: 100%;
                max-width: 300px;
            }
            
            .mobile-menu-overlay {
                display: block;
            }
            
            /* Mobil menü açıkken body scroll'u engelle */
            body.menu-open {
                overflow: hidden;
            }
            
            .blog-pagination {
                flex-direction: column;
                gap: 20px;
            }
            
            .pagination-btn {
                width: 100%;
            }


        .blog-detail-content {
            padding: 80px 0;
        }
        }
        
        @media (max-width: 768px) {

    .blog-detail-content {
            padding: 80px 0;
        }


            .blog-detail-title {
                font-size: 2.2rem;
            }
            
            .blog-detail-meta {
                flex-direction: column;
                gap: 15px;
            }
            
            .blog-featured-image {
                height: 300px;
            }
            
            .audio-player-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .audio-icon {
                margin: 0 auto;
            }
            
            .audio-features {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .volume-control {
                width: 100%;
            }
            
            .mobile-menu-container {
                width: 280px;
            }
            
            .blog-main-content {
                padding: 25px;
            }
            
            .audio-player-section {
                padding: 25px;
            }
            
            .audio-title {
                font-size: 1.4rem;
            }
        }
        
        @media (max-width: 576px) {
            .site-logo {
                font-size: 1.8rem;
            }
            
            .blog-detail-title {
                font-size: 1.8rem;
            }
            
            .blog-header-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .blog-text-content h1 {
                font-size: 2rem;
            }
            
            .blog-text-content h2 {
                font-size: 1.8rem;
            }
            
            .blog-text-content h3 {
                font-size: 1.5rem;
            }
            
            .audio-player-section {
                padding: 20px;
            }
            
            .play-pause-btn {
                width: 55px;
                height: 55px;
            }
            
            .blog-detail-hero {
                padding: 120px 0 60px;
                margin-top: 70px;
            }
            
            .recent-post-item {
                flex-direction: column;
            }
            
            .recent-post-img {
                width: 100%;
                height: 180px;
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .blog-detail-title {
                font-size: 1.6rem;
            }
            
            .blog-detail-category {
                font-size: 0.8rem;
                padding: 8px 15px;
            }
            
            .share-btn {
                min-width: 100%;
            }
            
            .audio-title {
                font-size: 1.2rem;
            }
            
            .pagination-btn {
                padding: 15px 20px;
            }
            
            .pagination-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .pagination-title {
                font-size: 1rem;
            }
        }
        
        /* Scroll Bar Özelleştirme */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--secondary-color), var(--accent-color));
            border-radius: 5px;
        }



/* Blog yazısı tarihi stili */
.blog-post-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #888;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.blog-post-date i {
    color: var(--secondary-color, #e6c158); /* Altın rengi veya varsayılan bir renk */
    font-size: 1.1rem;
}