    :root {
            --primary-color: #3b82f6;
            --primary-hover: #2563eb;
            --success-color: #22c55e;
            --success-hover: #16a34a;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --bg-light: #f8fafc;
            --card-bg: #ffffff;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
            --transition: all 0.25s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-main);
            line-height: 1.6;
        }

        .container {
            max-width: 1500px;
            margin: 40px auto;
            padding: 0 20px;
        }

        /* --- BREADCRUMB --- */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 25px;
        }

        .breadcrumb a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--primary-color);
        }

        /* --- İÇERİK DÜZENİ --- */
        .page-layout {
            display: flex;
            gap: 30px;
        }

        /* --- ANA İÇERİK ALANI (%75) --- */
        .main-content {
            flex: 0 0 75%;
            max-width: 75%;
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 35px;
            box-shadow: var(--shadow);
        }

        .post-header-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin-bottom: 30px;
            border: 1px solid var(--border-color);
            box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.05);
        }

        .main-content h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.85rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .seo-text {
            color: #334155;
            font-size: 1.05rem;
            margin-bottom: 25px;
        }

        .seo-text p {
            margin-bottom: 15px;
        }

        /* İndirme Kutusu */
        .download-box {
            background-color: #f1f5f9;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            margin: 35px 0;
            border: 2px dashed #cbd5e1;
        }

        .download-info {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 15px;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .download-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.download-button:hover {
    transform: scale(1.02);
}
/* Word Download Button */
#docx {
    background-color: #2b579a; /* Word Blue */
    color: #ffffff;
    border: 2px solid #20457c;
}

#docx::before {
    content: '\f1c2'; /* Font Awesome Word icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 2px solid #ffffff;
}

#docx::after {
    content: '.DOCX';
    font-weight: 700;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid #ffffff;
}

        /* --- LIGHTBOX2 GALERİ ALANI --- */
        .gallery {
            margin: 40px 0 20px 0;
            text-align: center;
            border-top: 1px solid var(--border-color);
            padding-top: 30px;
        }

        .gallery h2 {
            font-family: 'Poppins', sans-serif;
            margin-bottom: 20px;
            font-size: 1.4rem;
            font-weight: 600;
            color: #0f172a;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            display: block;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* --- SIDEBAR (YAN MENÜ %25) --- */
        .sidebar {
            flex: 0 0 25%;
            max-width: 25%;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .widget {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            box-shadow: var(--shadow);
        }

        .widget-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1f5f9;
            position: relative;
        }

        .widget-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .sidebar-links {
            list-style: none;
        }

        .sidebar-links li {
            margin-bottom: 12px;
        }

        .sidebar-links li:last-child {
            margin-bottom: 0;
        }

        .sidebar-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #475569;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
            padding: 4px 0;
        }

        .sidebar-links a:hover {
            color: var(--primary-color);
            transform: translateX(4px);
        }

        .sidebar-links i {
            color: var(--primary-color);
            font-size: 0.85rem;
        }

        /* --- SOSYAL MEDYA PAYLAŞIM ALANI --- */
        .share-section {
            background-color: var(--card-bg);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            padding: 25px;
            text-align: center;
            box-shadow: var(--shadow);
            margin-top: 40px;
        }

        .share-section h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .share-btn:hover {
            transform: translateY(-2px);
            filter: brightness(0.9);
        }

        .share-facebook { background-color: #1877f2; }
        .share-instagram { background-color: #e1306c; }
        .share-whatsapp { background-color: #25d366; }
        .share-pinterest { background-color: #bd081c; }
        .share-x { background-color: #000000; }
        .share-linkedin { background-color: #0a66c2; }

        /* --- Lightbox2 Ok Okları ve Kapat Butonu Ek Özelleştirmesi --- */
        .lb-nav a.lb-prev, .lb-nav a.lb-next {
            opacity: 1 !important;
            display: block !important;
        }

        /* --- RESPONSIVE (MOBİL UYUM) --- */
        @media (max-width: 992px) {
            .page-layout {
                flex-direction: column;
            }
            .content, .main-content, .sidebar {
                flex: none;
                max-width: 100%;
                width: 100%;
            }
            .main-content {
                padding: 24px;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }
        @media (max-width: 480px) {
            .main-content h1 {
                font-size: 1.5rem;
            }
            .download-info {
                flex-direction: column;
                gap: 8px;
            }
            .download-btn {
                width: 100%;
                justify-content: center;
            }
        }