/* OyunBlog Premium Frontend Tasarım Sistemi */

/* Google Fonts: Outfit (Başlıklar) ve Inter (Gövde Metinleri) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Karanlık Mod Değişkenleri (Varsayılan) */
    --bg-base: #060913;
    --bg-surface: #0e1322;
    --bg-surface-hover: #171d32;
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --color-primary: #00f2fe; /* Neon Turkuaz */
    --color-secondary: #4facfe; /* Parlak Mavi */
    --color-accent: #8a2be2; /* Neon Mor */
    --color-success: #00e676;
    --color-warning: #ffea00;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --glass: rgba(14, 19, 34, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
}

/* Aydınlık Mod Değişkenleri */
[data-theme="light"] {
    --bg-base: #f3f4f6;
    --bg-surface: #ffffff;
    --bg-surface-hover: #f9fafb;
    --border-color: rgba(0, 0, 0, 0.08);
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --color-primary: #0284c7;
    --color-secondary: #0369a1;
    --color-accent: #7c3aed;
    --color-success: #16a34a;
    --color-warning: #d97706;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Kapsayıcı */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== 1. HEADER & MENÜ ==================== */
.main-header {
    background-color: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    height: 45px;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.header-top-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.platform-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.platform-menu a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-menu a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 15px;
    list-style: none;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}
.social-links a.facebook:hover { color: #395498; }
.social-links a.twitter:hover { color: #5da9dd; }
.social-links a.instagram:hover { color: #d54c40; }
.social-links a.youtube:hover { color: #ff0000; }
.social-links a.twitch:hover { color: #6441a5; }
.social-links a.discord:hover { color: #5865F2; }

/* Ana Navigasyon */
.header-main {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-menu a {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 10px;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu li.active a::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.action-icon:hover {
    background-color: var(--color-primary);
    color: #000;
    transform: scale(1.05);
}

/* Dinamik Arama Alanı */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 9, 19, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.search-box-wrap {
    width: 100%;
    max-width: 600px;
    padding: 24px;
    text-align: center;
    position: relative;
}

.search-box-wrap input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 3px solid var(--border-color);
    padding: 15px 0;
    font-size: 32px;
    color: #fff;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.search-box-wrap input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.btn-search-close {
    position: absolute;
    top: -50px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
}

/* ==================== 2. MANŞET ALANI (FEATURED GRID) ==================== */
.featured-grid-sec {
    margin-top: 30px;
    margin-bottom: 50px;
    display: block;
    width: 100%;
    /* height yok — featured-grid'in grid-template-rows:520px sec yüksekliğini otomatik belirler */
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 520px; /* Row yüksekliği burada — tüm hücreler otomatik 520px olur */
    gap: 20px;
}

.featured-left {
    min-height: 0; /* Grid overflow önleme */
    overflow: hidden;
    border-radius: 20px;
}

.featured-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    min-height: 0;
    overflow: hidden;
    border-radius: 20px;
}

.featured-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-item:hover img {
    transform: scale(1.08);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 9, 19, 0.95) 0%, rgba(6, 9, 19, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
}

.featured-right .featured-overlay {
    padding: 20px;
}

.tag-category {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.featured-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
}

.featured-right .featured-title {
    font-size: 18px;
}

.featured-meta {
    display: flex;
    gap: 15px;
    list-style: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.featured-meta li {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==================== 3. BLOG KARTLARI VE KART TASARIMI ==================== */
.main-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .main-content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
}

.posts-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.post-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    height: 250px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.1);
}

.post-thumb {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-card:hover .post-thumb img {
    transform: scale(1.05);
}

.post-details {
    width: 60%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.post-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.post-platform {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-success);
    letter-spacing: 0.5px;
}

.post-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 12px;
}

.post-title a:hover {
    color: var(--color-primary);
}

.post-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: block;
    overflow: visible;
    white-space: normal;
}

.post-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    font-size: 12px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.post-footer-left {
    display: flex;
    gap: 15px;
}

/* ==================== 4. DAİRESEL PUAN GÖSTERGESİ (RATING CIRCLE) ==================== */
.rating-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
}

.rating-circle {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(6, 9, 19, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-circle svg {
    position: absolute;
    width: 48px;
    height: 48px;
    transform: rotate(-90deg);
}

.rating-circle circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 3.5;
    stroke-linecap: round;
}

.circle-bg {
    stroke: rgba(255, 255, 255, 0.1);
}

.circle-progress {
    stroke: var(--color-primary);
    transition: stroke-dashoffset 1s ease;
}

.rating-value {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    z-index: 2;
}

/* ==================== 5. SIDEBAR (KENAR ÇUBUĞU) ==================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-self: start;
    /* position/z-index KALDIRILDI */
}

.widget {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

/* Popüler Yazılar Listesi */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.popular-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.popular-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-details {
    display: flex;
    flex-direction: column;
}

.popular-post-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
    display: block;
    overflow: visible;
    white-space: normal;
}

.popular-post-title a:hover {
    color: var(--color-primary);
}

.popular-post-meta {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Platform Kategori Butonları */
.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.platform-tag-btn {
    padding: 8px 16px;
    background-color: var(--border-color);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.platform-tag-btn:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #000;
    transform: translateY(-2px);
}

/* ==================== 6. GÖNDERİ DETAY SAYFASI ==================== */
.post-detail-wrap {
    margin-top: 30px;
}

.post-detail-header {
    margin-bottom: 30px;
}

.post-detail-category-plat {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.post-detail-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.post-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.post-detail-meta img.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.post-main-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.post-body-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

.post-body-content p {
    margin-bottom: 20px;
}

.post-body-content h2, 
.post-body-content h3 {
    font-family: 'Outfit', sans-serif;
    margin: 30px 0 15px;
    font-weight: 800;
}

/* Yorumlar Bölümü */
.comments-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.comment-item {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 15px;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.comment-author {
    font-weight: 700;
    font-size: 14px;
}

.comment-date {
    font-size: 11px;
    color: var(--text-secondary);
}

.comment-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Yorum Formu */
.comment-form-wrap {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
}

/* Form Elemanları (Frontend) */
.fe-form-group {
    margin-bottom: 20px;
}

.fe-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.fe-form-control {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.fe-form-control:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* ==================== 7. FOOTER (ALT BİLGİ) ==================== */
.main-footer {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
}

.footer-widget p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu a {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-menu a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Paginator / Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-surface);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-btn:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.page-btn.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.5), 0 5px 15px rgba(138, 43, 226, 0.4);
    transform: translateY(-2px) scale(1.05);
}

/* Mobil Menü Butonu */
.btn-mobile-menu {
    display: none;
}

/* ==================== RESPONSIVE DÜZENLEMELER ==================== */
@media (max-width: 992px) {
    .featured-grid-sec {
        height: auto;
        min-height: unset; /* Mobilde sabit yükseklik gerekmez */
    }
    .featured-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto; /* Mobilde satır yüksekliği serbest */
    }
    .featured-left {
        height: 350px;
    }
    .featured-right {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr; /* Mobilde yatay iki kart */
        height: 250px;
    }
    .main-content-layout {
        grid-template-columns: 1fr;
    }
    .sidebar-spacer {
        display: none; /* Mobilde sidebar alt alta gelir, spacer gereksiz */
    }
    .post-card {
        height: auto;
        flex-direction: column;
    }
    .post-thumb {
        width: 100%;
        height: 200px;
    }
    .post-details {
        width: 100%;
    }
    .nav-menu {
        display: none; /* Basitleştirilmiş mobil menü için */
    }
    .btn-mobile-menu {
        display: flex;
    }
}

@media (max-width: 576px) {
    .featured-right {
        grid-template-columns: 1fr;
        height: 400px;
    }
    .post-detail-title {
        font-size: 28px;
    }
}

/* ==================== FAZ-2 PREMIUM STİLLER ==================== */
.tag-badge-link:hover {
    border-color: var(--color-primary) !important;
    color: var(--color-primary) !important;
    background: rgba(0, 242, 254, 0.05) !important;
    transform: translateY(-2px);
}

.share-btn {
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.share-btn.fb-share:hover {
    background: #4c70ba !important;
}

.share-btn.x-share:hover {
    border-color: var(--color-primary) !important;
}

.share-btn.wa-share:hover {
    background: #2fe674 !important;
}

.share-btn.tg-share:hover {
    background: #0099e6 !important;
}

.share-btn.copy-share:hover {
    border-color: var(--color-primary) !important;
    color: var(--color-primary) !important;
}

.fe-comment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4) !important;
}

/* ==================== FAZ-2 MEGA MENÜ & DROPDOWN SİTEMİ ==================== */
/* Dropdown Genel */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 210px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: var(--shadow);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(0, 242, 254, 0.05);
    color: var(--color-primary);
    padding-left: 25px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Menü */
.has-mega-menu {
    position: static; /* Full width yayılması için static olmalı */
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 3px solid var(--color-primary);
    border-top: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

.mega-menu-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px;
    display: flex;
    gap: 40px;
}

.has-mega-menu:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Kolon 1: Kategoriler */
.mega-col-categories {
    width: 30%;
    border-right: 1px solid var(--border-color);
    padding-right: 20px;
}

.mega-col-categories h4,
.mega-col-posts h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.mega-col-categories h4::after,
.mega-col-posts h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
}

.mega-col-categories ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-col-categories a {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.mega-col-categories a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

/* Mega Kolon 2: Yazılar */
.mega-col-posts {
    width: 70%;
}

.mega-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mega-post-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.mega-post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.08);
}

.mega-post-thumb {
    height: 100px;
    overflow: hidden;
}

.mega-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mega-post-card:hover .mega-post-thumb img {
    transform: scale(1.05);
}

.mega-post-info {
    padding: 12px;
}

.mega-post-cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.mega-post-info h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

/* Mobil için Mega Menüyü Kapat */
@media (max-width: 992px) {
    .has-mega-menu, .has-dropdown {
        position: relative !important;
    }
    .mega-menu-content {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        border: none !important;
        background: none !important;
        padding: 0 !important;
    }
    .mega-menu-inner {
        flex-direction: column !important;
        padding: 10px 20px !important;
        gap: 20px !important;
    }
    .mega-col-categories, .mega-col-posts {
        width: 100% !important;
        border: none !important;
        padding: 0 !important;
    }
    .mega-posts-grid {
        grid-template-columns: 1fr !important;
    }
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        width: 100% !important;
        padding-left: 20px !important;
    }
}

/* ==================== YILDIZ PUANLAMA SİSTEMİ (STAR RATINGS) ==================== */
.post-star-rating-box {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.post-star-rating-box:hover {
    border-color: rgba(255, 184, 0, 0.4) !important;
    box-shadow: 0 0 35px rgba(255, 184, 0, 0.1) !important;
    transform: translateY(-2px);
}

.interactive-stars .star-item {
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.2);
}

.interactive-stars:not([data-voted="true"]) .star-item:hover {
    color: #ffb800 !important;
    text-shadow: 0 0 20px rgba(255, 184, 0, 1) !important;
}

@keyframes pulseStar {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 184, 0, 0.6);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(255, 184, 0, 0.9);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 184, 0, 0.6);
    }
}

/* ==================== STICKY SIDEBAR (YAPIŞKAN KENAR ÇUBUĞU) ==================== */
.sidebar-sticky-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Sol sütundaki .section-title yüksekliğiyle (font 24px + pb 12px + mb 30px + border 1px ≈ 67px)
   sidebar widget'larını hizalamak için görünmez boşluk bloğu */
.sidebar-spacer {
    height: 67px;
    flex-shrink: 0;
}

/* ==================== RESİMLİ GİRİŞ POPUP MODAL TASARIMI ==================== */
.entry-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 9, 19, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeInPopup 0.4s ease forwards;
}

.entry-popup-content {
    background: var(--bg-surface);
    border: 1px solid rgba(138, 43, 226, 0.2);
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.25);
    border-radius: 24px;
    width: 90%;
    max-width: 850px;
    position: relative;
    overflow: hidden;
    animation: scaleInPopup 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15) forwards;
}

.entry-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.entry-popup-close:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.entry-popup-body {
    display: flex;
    min-height: 400px;
}

.entry-popup-image-side {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.entry-popup-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.entry-popup-text-side {
    width: 55%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.entry-popup-text-side.full-width {
    width: 100%;
    padding: 60px 50px;
}

.entry-popup-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-primary), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.entry-popup-message {
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.entry-popup-message h2, .entry-popup-message h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.entry-popup-action-btn {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
    transition: var(--transition);
}

.entry-popup-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
    color: #fff;
}

@keyframes fadeInPopup {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleInPopup {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .entry-popup-body {
        flex-direction: column;
    }
    .entry-popup-image-side {
        width: 100%;
        height: 200px;
    }
    .entry-popup-text-side {
        width: 100%;
        padding: 30px 25px;
    }
}

/* ==================== ANKET WIDGET TASARIMI (CYBERPUNK NEON) ==================== */
.poll-widget-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.poll-widget-container:hover {
    border-color: rgba(138, 43, 226, 0.25);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.08);
}

.poll-question {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.poll-question::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-accent);
}

.poll-options-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.poll-option-label {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.poll-option-label:hover {
    border-color: rgba(138, 43, 226, 0.3);
    color: var(--text-primary);
    background: rgba(138, 43, 226, 0.02);
}

.poll-option-label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
}

.poll-option-label input[type="radio"]::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    transform: scale(0);
    transition: var(--transition);
}

.poll-option-label input[type="radio"]:checked {
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

.poll-option-label input[type="radio"]:checked::before {
    transform: scale(1);
}

.poll-option-label:has(input[type="radio"]:checked) {
    border-color: var(--color-accent);
    background: rgba(138, 43, 226, 0.05);
    color: var(--text-primary);
}

.btn-poll-submit {
    background: linear-gradient(135deg, var(--color-accent), #6a1b9a);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    transition: var(--transition);
    width: 100%;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-poll-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.5);
}

.poll-results-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.poll-result-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.poll-result-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-primary);
}

.poll-result-text {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 15px;
}

.poll-result-percent {
    font-family: 'Outfit', sans-serif;
    color: var(--color-accent);
    font-weight: 700;
}

.poll-progress-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.poll-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
    transition: width 1.2s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.poll-total-votes-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

