:root {
    --primary-color: rgba(34, 156, 10, 0.9);
    --text-color: #ffffff;
    --bg-color: #1a1d20;
    --secondary-bg: #1A1D20;
    --gray-text: #a0a0a0;
    
    /* Blog detay özel renkler */
    --light-bg: #252830;
    --lighter-bg: #2D303A;
    --border-color: rgba(255, 255, 255, 0.1);
    --heading-color: #f0f0f0;
    --link-hover: rgba(34, 156, 10, 0.7);
    --code-bg: #191c24;
    --quote-bg: rgba(34, 156, 10, 0.1);
    --info-bg: rgba(65, 105, 225, 0.1);
}
/* Hero Bölümü */
.tumu-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 50px 0px 0px 0px;
}
.tumu-hero h1 {
    font-weight: 800;
    color: rgb(255, 255, 255);
    font-size: 3.1rem;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, rgb(34, 156, 10) 0%, rgb(79, 209, 197) 25%, rgb(34, 156, 10) 50%, rgb(79, 209, 197) 75%, rgb(34, 156, 10) 100%) 0% 0% / 200% text;
    animation: 3s linear 0s infinite normal none running shine;
}
/* Genel Stil */
body {
    background-color: #000000 !important;
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    position: relative;
}
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(34, 156, 10, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Banner stilleri header-footer.css dosyasından inherit edilir */

/* Ana Container */
.blogdetay-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.blogdetay-wrapper {
    display: flex;
    gap: 40px;
}
/* Ana İçerik Bölümü (Sol Taraf) */
.blogdetay-content {
    flex: 2;
    background-color: var(--secondary-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
/* Blog Başlık ve Meta Bilgiler */
.blogdetay-header {
    padding: 30px 30px 20px;
}
.blogdetay-kategori {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.blogdetay-badge {
    background-color: var(--primary-color);
    color: var(--bg-color);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blogdetay-tarih {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-left: 15px;
    position: relative;
    padding-left: 15px;
}
.blogdetay-tarih::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--gray-text);
}
.blogdetay-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin: 10px 0 20px;
    color: var(--heading-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    animation: blogdetayTitleIn 0.8s ease-out;
}
@keyframes blogdetayTitleIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.blogdetay-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.blogdetay-author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.blogdetay-author-info {
    margin-left: 12px;
}
.blogdetay-author-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}
.blogdetay-reading-time {
    font-size: 0.8rem;
    color: var(--gray-text);
}
/* Ana Görsel */
.blogdetay-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}
.blogdetay-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blogdetay-featured-image:hover img {
    transform: scale(1.03);
}
/* Makale İçeriği */
.blogdetay-article {
    padding: 40px 30px;
    position: relative;
}
.blogdetay-intro {
    font-size: 1.1rem;
    color: var(--heading-color);
    line-height: 1.7;
    margin-bottom: 30px;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    font-weight: 500;
}
.blogdetay-section-title {
    font-size: 1.6rem;
    color: var(--heading-color);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.blogdetay-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}
.blogdetay-article p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}
.blogdetay-article h2 {
    font-size: 1.6rem;
    color: var(--heading-color);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.blogdetay-article h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}
.blogdetay-article h3 {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin: 30px 0 15px;
}
.blogdetay-quote {
    background: var(--quote-bg);
    border-left: 4px solid var(--primary-color);
    padding: 25px 25px 25px 35px;
    margin: 30px 0;
    font-size: 1.1rem;
    font-style: italic;
    border-radius: 0 8px 8px 0;
    position: relative;
}
.blogdetay-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.4;
    font-family: Georgia, serif;
}
.blogdetay-quote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--gray-text);
    font-style: normal;
}
.blogdetay-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}
.blogdetay-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.blogdetay-grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blogdetay-grid-item:hover img {
    transform: scale(1.05);
}
.blogdetay-caption {
    display: block;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 10px 15px;
    font-size: 0.85rem;
    color: var(--text-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: transform 0.3s ease;
}
.blogdetay-grid-item:hover .blogdetay-caption {
    transform: translateY(-5px);
}
.blogdetay-info-box {
    background: var(--info-bg);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
    border-left: 4px solid royalblue;
}
.blogdetay-info-title {
    margin-top: 0;
    margin-bottom: 10px;
    color: royalblue;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}
.blogdetay-info-title i {
    margin-right: 10px;
}
.blogdetay-info-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}
.blogdetay-conclusion {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0 20px;
    border-top: 3px solid var(--primary-color);
}
.blogdetay-conclusion h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}
.blogdetay-conclusion p {
    margin-bottom: 0;
}
/* Etiketler */
.blogdetay-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 30px 30px;
    border-bottom: 1px solid var(--border-color);
}
.blogdetay-tag-title {
    font-weight: 600;
    margin-right: 10px;
    color: var(--gray-text);
}
.blogdetay-tag {
    display: inline-block;
    background-color: var(--light-bg);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin: 5px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}
.blogdetay-tag:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}
/* Paylaşım Butonları */
.blogdetay-share {
    padding: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
}
.blogdetay-share-title {
    font-weight: 600;
    margin-right: 15px;
    color: var(--gray-text);
    margin-bottom: 10px;
}
.blogdetay-share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.blogdetay-share-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.blogdetay-twitter {
    background-color: #1DA1F2;
}
.blogdetay-facebook {
    background-color: #4267B2;
}
.blogdetay-linkedin {
    background-color: #0077B5;
}
.blogdetay-whatsapp {
    background-color: #25D366;
}
.blogdetay-copy {
    background-color: var(--light-bg);
    color: var(--text-color);
}
.blogdetay-share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
/* Sidebar (Sağ Taraf) */
.blogdetay-sidebar {
    flex: 1;
}
.blogdetay-sidebar-section {
    background-color: var(--secondary-bg);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.blogdetay-sidebar-title {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--heading-color);
    position: relative;
}
.blogdetay-sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}
.blogdetay-sidebar-author-mobile {
    display: none;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--secondary-bg);
    border-radius: 12px;
}
.blogdetay-sidebar-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}
.blogdetay-sidebar-author-info {
    margin-left: 15px;
}
.blogdetay-sidebar-author-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}
.blogdetay-sidebar-reading-time {
    font-size: 0.85rem;
    color: var(--gray-text);
}
/* İçindekiler */
.blogdetay-toc {
    position: sticky;
    top: 20px;
    z-index: 10;
}
.blogdetay-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blogdetay-toc-link {
    display: block;
    padding: 10px 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}
.blogdetay-toc-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s;
}
.blogdetay-toc-link:hover {
    color: var(--primary-color);
    padding-left: 20px;
}
.blogdetay-toc-link:hover::before {
    opacity: 1;
}
.blogdetay-toc-link:last-child {
    border-bottom: none;
}
/* İlgili Makaleler */
.blogdetay-related-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.blogdetay-related-post {
    display: flex;
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.blogdetay-related-post:hover {
    transform: translateY(-3px);
}
.blogdetay-related-image {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
}
.blogdetay-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogdetay-related-content {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
}
.blogdetay-related-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.blogdetay-related-title {
    font-size: 0.9rem;
    margin: 0 0 5px;
    line-height: 1.4;
}
.blogdetay-related-date {
    font-size: 0.7rem;
    color: var(--gray-text);
}
/* Kategoriler */
.blogdetay-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blogdetay-category-item {
    margin-bottom: 10px;
}
.blogdetay-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: var(--light-bg);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}
.blogdetay-category-link:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    transform: translateX(5px);
}
.blogdetay-category-count {
    background-color: var(--lighter-bg);
    color: var(--gray-text);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}
.blogdetay-category-link:hover .blogdetay-category-count {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--bg-color);
}
/* Etiket Bulutu */
.blogdetay-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.blogdetay-cloud-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--light-bg);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.blogdetay-cloud-tag:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}
/* Responsive Tasarım */
@media (max-width: 1024px) {
    .blogdetay-wrapper {
        flex-direction: column;
    }
    
    .blogdetay-content {
        flex: none;
    }
    
    .blogdetay-sidebar {
        flex: none;
        order: -1;
        margin-bottom: 30px;
    }
    
    .blogdetay-sidebar-author-mobile {
        display: flex;
    }
    
    .blogdetay-author {
        display: none;
    }
    
    .blogdetay-toc {
        position: static;
    }
}
@media (max-width: 768px) {
    .blogdetay-title {
        font-size: 1.8rem;
    }
    
    .blogdetay-featured-image {
        height: 300px;
    }
    
    .blogdetay-header,
    .blogdetay-article,
    .blogdetay-tags,
    .blogdetay-share {
        padding: 20px;
    }
    
    .blogdetay-image-grid {
        grid-template-columns: 1fr;
    }
    
    .blogdetay-related-post {
        flex-direction: column;
    }
    
    .blogdetay-related-image {
        width: 100%;
        height: 120px;
    }
    
    #banner-section .breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    #banner-section .breadcrumb li:not(:last-child)::after {
        margin-left: 10px;
    }
}
@media (max-width: 480px) {
    .blogdetay-container {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .blogdetay-title {
        font-size: 1.5rem;
    }
    
    .blogdetay-featured-image {
        height: 200px;
    }
    
    .blogdetay-sidebar-section {
        padding: 20px;
    }
    
    #banner-section .breadcrumb {
        font-size: 12px;
    }
}
/* Animasyonlar ve Geçişler */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Scroll Efektleri */
.blogdetay-article p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.blogdetay-article p.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Kopyala Butonu Stilleri */
.blogdetay-copy.copied {
    background-color: #4CAF50;
}
.blogdetay-copy.copied i {
    animation: pop 0.3s ease-out;
}
@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* WordPress Editor Stilleri - Editörden Yönetilebilir İçerikler */
.wp-editor-content h2 {
    font-size: 1.6rem;
    color: var(--heading-color);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.wp-editor-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.wp-editor-content h3 {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin: 30px 0 15px;
}

.wp-editor-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.wp-editor-content blockquote {
    background: var(--quote-bg);
    border-left: 4px solid var(--primary-color);
    padding: 25px 25px 25px 35px;
    margin: 30px 0;
    font-size: 1.1rem;
    font-style: italic;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.wp-editor-content blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.4;
    font-family: Georgia, serif;
}

.wp-editor-content .wp-block-image {
    margin: 30px 0;
}

.wp-editor-content .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wp-editor-content .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.wp-editor-content .wp-block-code {
    background: var(--code-bg);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    overflow-x: auto;
}

.wp-editor-content code {
    background: var(--code-bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.wp-editor-content .wp-block-quote {
    background: var(--quote-bg);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

/* Info Box için özel div */
.wp-editor-content .info-box {
    background: var(--info-bg);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
    border-left: 4px solid royalblue;
}

.wp-editor-content .info-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: royalblue;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

/* Sonuç kutusu için özel div */
.wp-editor-content .conclusion-box {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0 20px;
    border-top: 3px solid var(--primary-color);
}

.wp-editor-content .conclusion-box h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* İmaj grid için özel div */
.wp-editor-content .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.wp-editor-content .image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.wp-editor-content .image-grid img:hover {
    transform: scale(1.05);
}

/* Responsive - WordPress Editor */
@media (max-width: 768px) {
    .wp-editor-content .wp-block-gallery,
    .wp-editor-content .image-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Galeri Sistemi - En üstte */
.blogdetay-gallery {
    margin: 20px 0 30px 0;
    background-color: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
}

.blogdetay-gallery-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blogdetay-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
}

.blogdetay-gallery-main {
    width: 100%;
    height: 400px;
}

.blogdetay-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.blogdetay-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blogdetay-gallery-item.main-image {
    height: 400px;
}

.blogdetay-gallery-item.sub-image {
    height: 130px;
}

.blogdetay-gallery-item:hover {
    transform: scale(1.02);
}

.blogdetay-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blogdetay-gallery-item:hover img {
    transform: scale(1.1);
}

.blogdetay-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blogdetay-gallery-item:hover .blogdetay-gallery-overlay {
    opacity: 1;
}

.blogdetay-gallery-caption {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Farklı Blog Şemaları */

/* Schema 1: Warning Box */
.wp-editor-content .warning-box {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 193, 7, 0.1));
    border-left: 4px solid #ff9800;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    position: relative;
}

.wp-editor-content .warning-box::before {
    content: "⚠️";
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
}

.wp-editor-content .warning-box h3 {
    margin-top: 0;
    margin-left: 35px;
    color: #ff9800;
}

.wp-editor-content .warning-box p {
    margin-left: 35px;
    margin-bottom: 0;
}

/* Schema 2: Success Box */
.wp-editor-content .success-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(129, 199, 132, 0.1));
    border-left: 4px solid #4CAF50;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    position: relative;
}

.wp-editor-content .success-box::before {
    content: "✅";
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
}

.wp-editor-content .success-box h3 {
    margin-top: 0;
    margin-left: 35px;
    color: #4CAF50;
}

.wp-editor-content .success-box p {
    margin-left: 35px;
    margin-bottom: 0;
}

/* Schema 3: Feature Card */
.wp-editor-content .feature-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    border: 2px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-editor-content .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 156, 10, 0.2);
}

.wp-editor-content .feature-card .feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.wp-editor-content .feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Schema 4: Stats Grid */
.wp-editor-content .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.wp-editor-content .stat-item {
    background: var(--light-bg);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.wp-editor-content .stat-item:hover {
    transform: translateY(-3px);
}

.wp-editor-content .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.wp-editor-content .stat-label {
    color: var(--text-color);
    font-weight: 500;
}

/* Schema 5: Step Process */
.wp-editor-content .step-process {
    margin: 30px 0;
}

.wp-editor-content .step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    position: relative;
}

.wp-editor-content .step-number {
    background: var(--primary-color);
    color: var(--bg-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.wp-editor-content .step-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--heading-color);
}

/* Schema 6: Pricing Table */
.wp-editor-content .pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.wp-editor-content .pricing-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.wp-editor-content .pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.wp-editor-content .pricing-card.featured::before {
    content: "Popüler";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.wp-editor-content .pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
}

.wp-editor-content .pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.wp-editor-content .pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.wp-editor-content .pricing-features li:last-child {
    border-bottom: none;
}

/* Schema 7: Comparison Table */
.wp-editor-content .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
}

.wp-editor-content .comparison-table th,
.wp-editor-content .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.wp-editor-content .comparison-table th {
    background: var(--primary-color);
    color: var(--bg-color);
    font-weight: bold;
}

.wp-editor-content .comparison-table tr:last-child td {
    border-bottom: none;
}

.wp-editor-content .comparison-table .check {
    color: #4CAF50;
    font-weight: bold;
}

.wp-editor-content .comparison-table .cross {
    color: #f44336;
    font-weight: bold;
}

/* Schema 8: Timeline */
.wp-editor-content .timeline {
    position: relative;
    margin: 30px 0;
    padding-left: 30px;
}

.wp-editor-content .timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.wp-editor-content .timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    margin-left: 30px;
}

.wp-editor-content .timeline-item::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 25px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

.wp-editor-content .timeline-date {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

/* Responsive Şemalar */
@media (max-width: 768px) {
    .wp-editor-content .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wp-editor-content .pricing-table {
        grid-template-columns: 1fr;
    }
    
    .wp-editor-content .pricing-card.featured {
        transform: none;
    }
    
    /* Galeri responsive - tablet */
    .blogdetay-gallery-main .main-image {
        height: 300px;
    }
    
    .blogdetay-gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .blogdetay-gallery-item.sub-image {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .wp-editor-content .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .wp-editor-content .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .wp-editor-content .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    /* Galeri responsive - mobil */
    .blogdetay-gallery-main .main-image {
        height: 250px;
    }
    
    .blogdetay-gallery-thumbnails {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .blogdetay-gallery-item.sub-image {
        height: 120px;
    }
}
