        /* Blog Detay Sayfası Stilleri */
        .blog-detail-hero {
            height: 60vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
            margin-top: 0;
        }

        .blog-detail-hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .blog-detail-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
            z-index: -1;
        }

        .blog-detail-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 20px;
            background: white;
        }

        .breadcrumb {
            background: #f8f9fa;
            padding: 15px 0;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #c8a97e;
        }

        .breadcrumb span {
            color: #999;
            margin: 0 10px;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }

        .blog-category {
            background: #c8a97e;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .blog-date {
            color: #666;
            font-size: 0.95rem;
        }

        .blog-date i {
            margin-right: 8px;
            color: #c8a97e;
        }

        .blog-content {
            line-height: 1.8;
            color: #333;
        }

        .blog-content h2 {
            color: #2c3e50;
            margin: 40px 0 20px 0;
            font-size: 1.8rem;
            border-left: 4px solid #c8a97e;
            padding-left: 15px;
        }

        .blog-content h3 {
            color: #34495e;
            margin: 30px 0 15px 0;
            font-size: 1.4rem;
        }

        .blog-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }

        .blog-content ul, .blog-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        .blog-content li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .rule-box {
            background: #f8f9fa;
            border-left: 4px solid #c8a97e;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }

        .rule-box h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .rule-box h4 i {
            color: #c8a97e;
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-caption {
            padding: 15px;
            background: white;
            font-size: 0.9rem;
            color: #666;
            text-align: center;
        }

        .author-box {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin: 50px 0;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h4 {
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .author-info p {
            color: #666;
            margin: 0;
            font-size: 0.95rem;
        }

        .cta-section {
            background: linear-gradient(135deg, #c8a97e 0%, #b89465 100%);
            padding: 60px 20px;
            text-align: center;
            color: white;
            margin: 50px 0;
            border-radius: 15px;
        }

        .cta-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .cta-section p {
            color: white;
            margin-bottom: 30px;
            font-size: 1.2rem;
        }

        .related-posts {
            background: #f8f9fa;
            padding: 60px 20px;
        }

        .related-posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .blog-detail-hero {
                height: 50vh;
            }
            
            .author-box {
                flex-direction: column;
                text-align: center;
            }
            
            .blog-content {
                font-size: 1rem;
            }
            
            .blog-content h2 {
                font-size: 1.5rem;
            }
            
            .blog-content h3 {
                font-size: 1.2rem;
            }
            
            .cta-section h3 {
                font-size: 1.5rem;
            }
        }