:root {
    --glass-border: rgba(0, 0, 0, 0.08);
}

/* ── HEADER ── */
.blog-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
}

.blog-logo {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.blog-logo .logo-accent {
    color: var(--brand-red);
}

.header-nav {
    display: flex;
    gap: 2px;
    align-items: center;
}

.header-nav a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 13px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--text-main);
    background: rgba(255, 140, 0, 0.12);
}

.header-cta {
    background: var(--accent-gradient) !important;
    color: #fff !important;
    margin-left: 6px;
    box-shadow: 0 3px 12px rgba(255, 140, 0, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4) !important;
}

/* ── CONTAINER ── */
.blog-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 22px 70px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--brand-orange);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 3px;
    color: #444;
}

.breadcrumb .current {
    color: #aaa;
}

/* ── SEARCH ── */
.blog-search {
    margin-bottom: 28px;
}

.blog-search form {
    display: flex;
    gap: 10px;
    max-width: 520px;
}

.blog-search input {
    flex: 1;
    padding: 12px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    transition: 0.3s;
}

.blog-search input:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.2);
}

.blog-search button {
    padding: 12px 20px;
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
}

.blog-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

/* ── CATEGORY TABS ── */
.category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-dim);
}

.cat-tab {
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    border: 1px solid var(--border-glow);
    color: #aaa;
    background: var(--bg-card);
}

.cat-tab:hover {
    border-color: var(--brand-red);
    color: #fff;
    transform: translateY(-2px);
}

.cat-tab.active {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 3px 15px var(--shadow-red);
}

/* ── POST GRID ── */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s;
    position: relative;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(255, 140, 0, 0.18);
    border-color: rgba(255, 140, 0, 0.3);
}

.post-card-img {
    width: 100%;
    height: 200px;
    background: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.post-card:hover .post-card-img img {
    transform: scale(1.06);
}

.post-card-img .placeholder {
    font-size: 3.5rem;
    color: var(--border-glow);
}

.post-card-body {
    padding: 20px;
}

.post-card-cat {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.post-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-card-title a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.25s;
}

.post-card-title a:hover {
    color: var(--brand-orange);
}

.post-card-excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.post-card-meta {
    font-size: 0.75rem;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-dim);
}

.post-card-meta i {
    margin-right: 4px;
}

/* ── SINGLE ARTICLE ── */
.article-header {
    margin-bottom: 30px;
}

.article-cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.article-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 20px;
}

.article-meta {
    font-size: 0.875rem;
    color: #666;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 14px 0;
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
    margin-bottom: 25px;
}

.article-meta i {
    margin-right: 5px;
    color: var(--brand-red);
}

.article-featured-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    margin: 25px 0;
    border: 1px solid var(--border-glow);
    /*box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);*/
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
    /* Okunabilirlik için siyah tona çekildi */
}

/* Blog içi başlıklar global standartla uyumlu hale getirildi */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-main);
    border-bottom: none;
    /* Sade görünüm */
}

.article-content p {
    margin-bottom: 22px;
}

/* Modern Listeler - Turuncu Vurgu */
.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 20px;
    list-style: none;
}

.article-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.article-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--neon-fire);
    font-weight: 900;
    font-size: 1.2rem;
}

.article-content ol {
    counter-reset: item;
}

.article-content ol li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    counter-increment: item;
}

.article-content ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: var(--neon-fire);
    font-weight: 800;
}

.article-content a {
    color: var(--neon-fire);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--neon-fire);
    transition: 0.3s;
}

.article-content a:hover {
    color: var(--neon-yellow);
    border-bottom-style: solid;
}

/* Tablo Stilleri - Footer Çizgisi Renginde Kenarlıklar */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.article-content table th,
.article-content table td {
    padding: 15px;
    border: 1px solid var(--glass-border);
    text-align: left;
}

.article-content table th {
    background: rgba(255, 140, 0, 0.05);
    /* Neon Fire hafif transparan */
    color: var(--text-main);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.article-content table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

/* Alıntı Stilleri - Sade ve Vurgulu */
.article-content blockquote {
    border-left: 4px solid var(--neon-fire);
    padding: 20px 25px;
    margin: 30px 0;
    background: rgba(255, 140, 0, 0.03);
    border-radius: 0 12px 12px 0;
    color: var(--text-muted);
    font-style: italic;
    font-size: 1.15rem;
}

.article-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-content th,
.article-content td {
    padding: 12px 15px;
    border: 1px solid var(--border-glow);
    text-align: left;
}

.article-content th {
    background: var(--bg-deep);
    color: var(--neon-yellow);
    font-weight: 700;
}

.article-content tr:hover td {
    background: rgba(255, 140, 0, 0.04);
}

/* ── RELATED ── */
.related-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid var(--border-dim);
}

.related-section h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--neon-yellow);
    margin-bottom: 24px;
}

/* ── PAGINATION ── */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s;
}

.pagination a {
    background: var(--bg-card);
    color: #aaa;
    border: 1px solid var(--border-glow);
}

.pagination a:hover {
    background: var(--bg-deep);
    color: #fff;
    border-color: var(--brand-red);
    transform: translateY(-2px);
}

.pagination .active {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

/* ── EMPTY STATE ── */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #555;
}

.empty-state i {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--border-glow);
}

.empty-state h2 {
    color: #aaa;
    margin-bottom: 12px;
}

/* ── BACK BUTTON ── */
.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--shadow-red);
}

.back-to-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-red);
}

/* ── FOOTER ── */
.blog-footer {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 50px 22px 30px;
    margin-top: 60px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.02);
}

.blog-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.blog-footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 15px;
}

.blog-footer-logo span {
    color: var(--brand-red);
}

.blog-footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.blog-footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.25s;
}

.blog-footer-links a:hover {
    color: var(--brand-orange);
}

.blog-footer-copy {
    font-size: 0.8rem;
    color: #444;
}

.rss-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--brand-orange) !important;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.3);
    padding: 4px 12px !important;
    border-radius: 20px;
}

/* ── SIDEBAR LAYOUT ── */
.blog-layout-grid {
    display: flex;
    gap: 32px;
    margin-top: 20px;
    align-items: flex-start;
}

.blog-main-column {
    flex: 1;
    min-width: 0;
}

.blog-sidebar-column {
    width: 340px;
    flex-shrink: 0;
    position: sticky !important;
    top: 100px !important;
    height: fit-content !important;
    z-index: 100 !important;
}

/* ── SIDEBAR WIDGETS ── */
.sidebar-widget {
    background: #F9FAFB;
    border: 1px solid #F9FAFB;
    border-radius: 20px;
    padding: 10px 20px 20px 20px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(202, 202, 202, 0.2);
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: var(--brand-red);
    font-size: 1rem;
}

/* Search Widget */
.sidebar-search-form {
    display: flex;
    background: #F9FAFB;
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.sidebar-search-form:focus-within {
    border-color: var(--brand-red);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.2);
}

.sidebar-search-form input {
    flex: 1;
    padding: 12px 15px;
    background: #e4e4e442;
    border: none;
    color: #111827;
    font-size: 0.9rem;
    outline: none;
}

.sidebar-search-form button {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}

/* Category Widget */
.sidebar-cat-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    border-radius: 12px;
    color: #aaa;
    transition: 0.3s;
}

.sidebar-cat-item:hover {
    background: rgba(255, 140, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.2);
    color: #111827;
    transform: translateX(5px);
}

/* Jackpot Sponsor Box */
.jackpot-widget {
    padding: 0;
    border: none;
    background: transparent;
    overflow: hidden;
}

.jackpot-neon-box {
    background: linear-gradient(145deg, #111, #000);
    border: 2px solid #222;
    padding: 30px 25px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.jackpot-neon-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--accent-gradient);
    z-index: -1;
    opacity: 0.3;
}

.jn-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.jn-icon {
    color: #ffe600;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px #ffe600);
}

.jn-label {
    font-size: 0.75rem;
    font-weight: 900;
    color: #aaa;
    letter-spacing: 2px;
}

.jn-title {
    font-size: 1.3rem;
    font-weight: 1000;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.1;
}

.jn-text {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 25px;
    line-height: 1.5;
}

.jn-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-gradient);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
    transition: 0.3s;
}

.jn-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.6);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .blog-sidebar-column {
        width: 300px;
    }
}

@media (max-width: 900px) {
    .blog-layout-grid {
        display: block !important;
        /* Flex riskini tamamen kaldır */
        width: 100% !important;
    }

    .blog-main-column {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .blog-sidebar-column {
        width: 100% !important;
        position: relative !important;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .post-grid {
        grid-template-columns: 1fr;
    }

    .article-title {
        font-size: 1.65rem;
    }

    .header-nav a span {
        display: none;
    }
}

@media (max-width: 480px) {
    .blog-container {
        padding: 18px 14px 50px;
    }

    .article-title {
        font-size: 1.4rem;
    }

    .header-nav a {
        padding: 8px 10px;
    }

    .blog-footer-links {
        gap: 12px;
    }
}

/* ── PRECISE SINGLE ARTICLE MODERN STYLES ── */
.blog-single-header-modern {
    text-align: center;
    /*background: #fff;*/
    padding: 60px 40px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 40px;
    border-radius: 40px;
}

.blog-breadcrumb-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.at-title,
.article-title {
    font-size: 2.6rem;
    font-weight: 950;
    margin-bottom: 25px;
    color: var(--text-main);
    line-height: 1.15;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.main-header-meta {
    justify-content: center;
    color: var(--text-muted);
}

.author-header-meta {
    justify-content: flex-start;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.meta-dot {
    opacity: 0.3;
    margin: 0 5px;
}

.article-featured-image {
    margin-bottom: 40px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.article-toc-wrapper {
    background: #fcfcfc;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.article-toc-wrapper h4 {
    font-weight: 950;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.article-toc-wrapper h4 i {
    color: var(--neon-fire);
}

#dynamic-toc {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}

#dynamic-toc a {
    text-decoration: none;
    color: #555;
    transition: all 0.3s;
}

#dynamic-toc a:hover {
    color: var(--neon-fire);
    transform: translateX(6px);
}

.article-content {
    font-size: 1.18rem;
    line-height: 1.85;
    color: #1a1a1a;
}

.author-bio-box {
    margin-top: 60px;
    padding: 40px;
    /*background: #fff;*/
    border: 1px solid #f0f0f0;
    border-radius: 30px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.author-avatar {
    width: 85px;
    height: 85px;
    background: var(--accent-gradient);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-weight: 950;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    font-weight: 500;
}

.related-posts-section {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid #f0f0f0;
}

.related-posts-section h3 {
    font-weight: 950;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.7rem;
}

.v-bar {
    width: 8px;
    height: 38px;
    background: var(--accent-gradient);
    border-radius: 4px;
}

/* ── MOBILE OPTİMIZASYONLARI (SINGLE BLOG) ── */
@media (max-width: 768px) {

    .page-blog-single,
    .page-brand-modern,
    .page-casino-hub {
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: visible !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .blog-single-header-modern {
        padding: 30px 15px;
        border-radius: 20px;
        margin-bottom: 25px;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Premium Breadcrumb Mobil Düzenleme */
    .premium-breadcrumb {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 6px !important;
        font-size: 0.68rem !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }

    .premium-breadcrumb span.current {
        display: inline;
        overflow: visible;
        max-width: none;
        text-align: center;
    }

    .article-title {
        font-size: 1.75rem !important;
        margin-bottom: 15px;
        line-height: 1.2 !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .main-header-meta {
        font-size: 0.8rem;
        gap: 10px;
    }

    .meta-dot {
        margin: 0 2px;
    }

    .author-header-meta {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .article-content h2 {
        scroll-margin-top: 120px;
        /* Menünün altında kalmaması için güvenli alan */
    }

    /* --- NUCLEAR OVERFLOW PROTECTIONS --- */
    .article-content img,
    .article-content video,
    .article-content iframe,
    .article-content table {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .article-content {
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        hyphens: auto;
    }

    .premium-breadcrumb {
        display: flex;
        flex-wrap: wrap !important;
        gap: 5px;
        font-size: 0.75rem !important;
        justify-content: flex-start !important;
    }

    .article-featured-image {
        border-radius: 20px;
        margin-bottom: 25px;
        width: 100%;
        height: auto;
        max-height: 45vh;
        overflow: hidden;
        background: rgba(255, 140, 0, 0.03);
        border: 1px solid rgba(255, 140, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        /* Taşmayı engellemek için kritik */
    }

    .article-featured-image img {
        width: 100%;
        height: auto;
        max-height: 45vh;
        object-fit: contain;
        /* ASLA KESME: Görselin tamamını göster */
        display: block;
    }

    .premium-breadcrumb {
        display: flex;
        flex-wrap: wrap;
        /* Taşmayı engeller, sığmazsa alt satıra geçer */
        gap: 5px;
        font-size: 0.8rem;
        align-items: center;
        padding: 0 5px;
    }

    .editors-picks-box {
        padding: 20px !important;
        margin: 30px 0 !important;
        border-radius: 20px !important;
    }

    .article-toc-wrapper {
        padding: 20px;
        border-radius: 15px;
    }

    .article-content {
        font-size: 1.05rem;
        line-height: 1.7;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .author-bio-box {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        gap: 15px;
    }

    .author-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .related-posts-section {
        margin-top: 50px;
        padding-top: 35px;
    }

    .related-posts-section h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .v-bar {
        height: 30px;
        width: 6px;
    }
}

/* --- RELATED POSTS SHOWCASE (PROFESSIONAL SLIDER) --- */
.related-slider-wrapper {
    position: relative;
    width: 100%;
}

.related-posts-grid {
    display: flex !important;
    overflow-x: auto !important;
    gap: 30px;
    padding: 10px 5px 30px 5px;
    margin: 0 -10px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap !important;
    scroll-behavior: smooth;
}

.related-posts-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.related-posts-grid .blog-grid-card {
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navigasyon Okları */
.rel-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100%;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    font-size: 1.1rem;
}

.rel-slider-btn:hover {
    background: var(--accent-gradient);
    color: #fff;
    transform: translateY(-55%) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.rel-slider-btn.prev {
    left: -25px;
}

.rel-slider-btn.next {
    right: -25px;
}

@media (max-width: 992px) {
    .related-posts-grid {
        gap: 20px;
        margin: 0 -15px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .related-posts-grid .blog-grid-card {
        min-width: 280px;
        max-width: 280px;
    }

    .rel-slider-btn {
        display: none;
        /* Mobilde buton yerine kaydırma ön planda */
    }
}

/* --- PREMIUM RESPONSIVE TABLES --- */
.responsive-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 30px 0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* Scrollbar özelleştirme (Premium Görünüm) */
.responsive-table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.responsive-table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.2);
    border-radius: 10px;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 500px;
    /* Mobilde kaydırmayı tetikler ama metni ezmez */
}

.article-content table th {
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 700;
    text-align: left;
    padding: 18px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    white-space: nowrap;
    /* Başlıklar asla bölünmesin */
}

.article-content table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f2f2f2;
    color: #444;
    vertical-align: middle;
    white-space: nowrap;
    /* Hücre içerikleri (RTP vb.) bölünmesin */
}

.article-content table tr:last-child td {
    border-bottom: none;
}

.article-content table tr:nth-child(even) {
    background: #fafafa;
}

.article-content table tr:hover {
    background: rgba(255, 140, 0, 0.02);
}

@media (max-width: 768px) {
    .article-content table {
        font-size: 0.85rem;
    }

    .article-content table th,
    .article-content table td {
        padding: 12px 15px;
    }
}