/* Blog Detail Page Styles */
body {
    background: #111;
    color: #fff;
}

.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
    background: crimson;
}

.navbar .logo a {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}

.navbar .logo a span {
    color: #111;
    transition: all 0.3s ease;
}

.navbar .menu li a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover {
    color: #111;
}

.blog-detail {
    padding-top: 120px;
    min-height: 100vh;
    background: #111;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Blog Container with Ads */
.blog-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1600px;
    padding: 0 20px;
}

/* Sol Reklam Alanı */
.ad-left {
    width: 300px;
    min-width: 300px;
    position: sticky;
    top: 120px;
    height: fit-content;
    max-height: calc(100vh - 140px);
}

/* Sağ Reklam Alanı */
.ad-right {
    width: 300px;
    min-width: 300px;
    position: sticky;
    top: 120px;
    height: fit-content;
    max-height: calc(100vh - 140px);
}

/* Reklam Placeholder */
.ad-placeholder {
    background: #222;
    border: 2px dashed #444;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 12px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ad-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #444;
}

.ad-placeholder p {
    margin: 5px 0;
    line-height: 1.4;
}

.ad-placeholder .ad-size {
    font-size: 10px;
    color: #555;
    margin-top: 10px;
}

/* Google AdSense Placeholder */
.adsense-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px dashed crimson;
}

/* Blog Content Area */
.blog-content-wrapper {
    flex: 1;
    max-width: 900px;
    min-width: 0;
}

.loading {
    text-align: center;
    padding: 100px 0;
    font-size: 24px;
    color: #999;
}

.loading i {
    font-size: 48px;
    margin-bottom: 20px;
    color: crimson;
}

/* Blog Content Elements */
.blog-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid crimson;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    color: crimson;
    margin-bottom: 15px;
    line-height: 1.2;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #999;
    font-size: 16px;
    margin-top: 15px;
}

.blog-meta i {
    margin-right: 8px;
    color: crimson;
}

.blog-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.blog-tag {
    background: crimson;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
}

/* Content Blocks */
.content-block {
    margin: 40px 0;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
    margin: 20px 0;
    text-align: justify;
}

.content-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

.content-header {
    font-size: 36px;
    font-weight: 600;
    color: crimson;
    margin: 40px 0 20px 0;
}

.content-small-header {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin: 30px 0 15px 0;
}

.content-quote {
    background: #222;
    border-left: 5px solid crimson;
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 20px;
    color: #ccc;
    border-radius: 5px;
}

.content-quote::before {
    content: '"';
    font-size: 48px;
    color: crimson;
    margin-right: 10px;
}

.content-list {
    margin: 20px 0;
    padding-left: 30px;
}

.content-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
    margin: 10px 0;
    list-style-type: none;
    position: relative;
}

.content-list li::before {
    content: '▸';
    color: crimson;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

/* Footer */
footer {
    background: #111;
    padding: 20px 23px;
    color: #fff;
    text-align: center;
    border-top: 2px solid crimson;
}

footer span a {
    color: crimson;
    text-decoration: none;
}

footer span a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1600px) {
    .ad-left,
    .ad-right {
        width: 250px;
        min-width: 250px;
    }

    .blog-container {
        gap: 20px;
    }
}

@media (max-width: 1400px) {
    .ad-left,
    .ad-right {
        width: 200px;
        min-width: 200px;
    }

    .ad-placeholder {
        min-height: 500px;
        padding: 15px;
    }

    .ad-placeholder i {
        font-size: 36px;
    }
}

@media (max-width: 1200px) {
    /* Tablet'te sadece sağ reklam göster */
    .ad-left {
        display: none;
    }

    .ad-right {
        width: 160px;
        min-width: 160px;
    }

    /* AdSense reklamını responsive yap */
    .ad-right .adsbygoogle {
        width: 160px !important;
        height: 600px !important;
    }

    .blog-container {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    /* Küçük ekranlarda reklamları gizle */
    .ad-left,
    .ad-right {
        display: none;
    }

    .blog-container {
        justify-content: center;
    }

    .blog-content-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .blog-detail {
        padding-top: 100px;
    }

    .blog-title {
        font-size: 32px;
    }

    .content-header {
        font-size: 28px;
    }

    .content-small-header {
        font-size: 22px;
    }

    .content-text {
        font-size: 16px;
    }

    .blog-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 24px;
    }

    .content-header {
        font-size: 22px;
    }
}

