        :root {
            --gold: #F0C66D;
            --gold-dark: #C9973B;
            --dark: #1a1a1a;
            --gray: #666;
            --light-bg: #fafafa;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.8;
            background: var(--light-bg);
        }

        .post-header {
            background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
            padding: 140px 5% 80px;
            color: white;
        }

        .post-header-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .post-category {
            display: inline-block;
            background: var(--gold);
            color: var(--dark);
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 20px;
            text-transform: capitalize;
        }

        .post-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .post-meta {
            display: flex;
            gap: 25px;
            font-size: 1rem;
            opacity: 0.9;
            flex-wrap: wrap;
        }

        .post-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .post-container {
            max-width: 900px;
            margin: -40px auto 80px;
            padding: 0 5%;
            position: relative;
            z-index: 10;
        }

        .post-content {
            background: white;
            padding: 60px;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            font-size: 1.15rem;
            line-height: 1.9;
        }

        /* Featured Image içeride */
        .post-featured-image {
            width: calc(100% + 80px);
            margin: -30px -40px 40px -40px;
            border-radius: 12px 12px 0 0;
            overflow: hidden;
        }

        .post-featured-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
        }

        .post-content h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: var(--dark);
            font-weight: 700;
        }

        .post-content h3 {
            font-size: 1.6rem;
            margin: 35px 0 18px;
            color: var(--dark);
            font-weight: 600;
        }

        .post-content p {
            margin-bottom: 25px;
            color: #333;
        }

        .post-content ul, .post-content ol {
            margin: 25px 0;
            padding-left: 30px;
        }

        .post-content li {
            margin-bottom: 12px;
        }

        /* İçerik içindeki resimler */
        .post-content img {
            max-width: 100%;
            height: auto;
            max-height: 450px;
            object-fit: contain;
            border-radius: 12px;
            margin: 35px auto;
            display: block;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .post-content p img {
            margin-left: auto;
            margin-right: auto;
        }

        .post-content blockquote {
            border-left: 4px solid var(--gold);
            padding: 20px 30px;
            margin: 30px 0;
            background: var(--light-bg);
            border-radius: 8px;
            font-style: italic;
            color: var(--gray);
        }

        .post-content a {
            color: var(--gold-dark);
            text-decoration: underline;
            transition: color 0.3s;
        }

        .post-content a:hover {
            color: var(--gold);
        }

        .post-tags {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #e0e0e0;
        }

        .post-tags h4 {
            font-size: 1rem;
            color: var(--gray);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tags-list {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tag {
            background: var(--light-bg);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s;
            border: 2px solid #e0e0e0;
        }

        .tag:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: white;
        }

        .share-buttons {
            margin: 50px 0 0;
            padding: 30px;
            background: var(--light-bg);
            border-radius: 12px;
            text-align: center;
        }

        .share-buttons h4 {
            margin-bottom: 20px;
            color: var(--dark);
            font-size: 1.2rem;
        }

        .share-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .share-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.2rem;
        }

        .share-btn.facebook { background: #3b5998; }
        .share-btn.twitter { background: #1da1f2; }
        .share-btn.linkedin { background: #0077b5; }
        .share-btn.whatsapp { background: #25d366; }
        .share-btn.email { background: var(--gray); }

        .share-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .related-posts {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 5%;
            background: white;
        }

        .related-posts h3 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--dark);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .related-card {
            background: var(--light-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .related-card-image {
            width: 100%;
            height: 220px;
            overflow: hidden;
            background: #e0e0e0;
        }

        .related-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .related-card:hover .related-card-image img {
            transform: scale(1.05);
        }

        .related-card-content {
            padding: 25px;
        }

        .related-card h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark);
            line-height: 1.4;
        }

        .related-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        @media (max-width: 968px) {
            .post-title {
                font-size: 2.5rem;
            }

            .post-content {
                padding: 40px 30px;
                font-size: 1.05rem;
            }

            .post-featured-image {
                width: calc(100% + 60px);
                margin: -20px -30px 30px -30px;
            }

            .post-featured-image img {
                height: 350px;
            }

            .post-content img {
                max-height: 380px;
            }
        }

        @media (max-width: 640px) {
            .post-header {
                padding: 120px 5% 60px;
            }

            .post-title {
                font-size: 2rem;
            }

            .post-content {
                padding: 30px 20px;
                font-size: 1rem;
            }

            .post-featured-image {
                width: calc(100% + 40px);
                margin: -15px -20px 25px -20px;
                border-radius: 8px 8px 0 0;
            }

            .post-featured-image img {
                height: 250px;
            }

            .post-content img {
                max-height: 300px;
            }

            .related-grid {
                grid-template-columns: 1fr;
            }

            .related-card-image {
                height: 180px;
            }
        }
    