/* Global Modern Tasarım Sistemi & CSS Değişkenleri */
:root {
    /* Açık Tema Değişkenleri */
    --bg-primary: #f1f5f9;
    --bg-surface: rgba(255, 255, 255, 0.65);
    --border-color: rgba(226, 232, 240, 0.8);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --primary-gradient: linear-gradient(135deg, #4f46e5, #8b5cf6);
    --primary-hover-gradient: linear-gradient(135deg, #4338ca, #7c3aed);
    --primary-color: #6366f1;
    --primary-light: rgba(99, 102, 241, 0.1);
    
    --news-color: #3b82f6;
    --news-light: rgba(59, 130, 246, 0.1);
    --announcement-color: #f97316;
    --announcement-light: rgba(249, 115, 22, 0.1);
    
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    --shadow-hover: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
    --glass-blur: blur(16px);
}

html.dark {
    /* Koyu Tema Değişkenleri */
    --bg-primary: #090d16;
    --bg-surface: rgba(15, 23, 42, 0.65);
    --border-color: rgba(255, 255, 255, 0.06);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --primary-gradient: linear-gradient(135deg, #6366f1, #a855f7);
    --primary-hover-gradient: linear-gradient(135deg, #4f46e5, #9333ea);
    --primary-color: #818cf8;
    --primary-light: rgba(129, 140, 248, 0.15);
    
    --news-color: #38bdf8;
    --news-light: rgba(56, 189, 248, 0.15);
    --announcement-color: #fb923c;
    --announcement-light: rgba(251, 146, 60, 0.15);
    
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 16px 48px 0 rgba(0, 0, 0, 0.6);
}

/* Sıfırlama (Reset) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: clip; /* Sticky header'ın kaymasını bozmaz */
    position: relative;
    width: 100%;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Arka Plan Glow Küreleri */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.25;
    transition: opacity 0.5s ease;
}

html.dark .bg-glow {
    opacity: 0.15;
}

.bg-glow-1 {
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -10%;
    right: -10%;
}

.bg-glow-2 {
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
    bottom: 10%;
    left: -10%;
}

/* Header & Navigasyon */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    padding: 6px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.site-logo-img {
    height: 85px;
    max-height: 85px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--text-primary);
    background: var(--primary-light);
    font-weight: 600;
}

.admin-btn {
    border: 1px dashed var(--primary-color);
}

.admin-btn:hover {
    background: var(--primary-light) !important;
    border-style: solid;
}

/* Header Eylemleri (Arama ve Tema) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    padding-right: 40px;
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    width: 220px;
    transition: all 0.3s ease;
}

.search-input:focus {
    width: 280px;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.search-submit {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 15px;
    transition: color 0.3s;
}

.search-submit:hover {
    color: var(--text-primary);
}

.theme-toggle-btn {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

/* Temaya Göre İkon Görünümü */
html.dark .dark-icon { display: none; }
html:not(.dark) .light-icon { display: none; }

/* Mobil Menü Butonu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    align-items: center;
    justify-content: center;
}

/* Ana Sayfa Kahraman (Hero) Bölümü */
.hero-section {
    width: 100%;
    padding: 120px 24px;
    margin-bottom: 0px; /* Container sarmalayıcısı margin verecek */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.25) 0%, #090d16 98%),
                radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent 50%),
                radial-gradient(circle at bottom left, rgba(168, 85, 247, 0.05), transparent 50%),
                #090d16;
    border-bottom: 1px solid var(--border-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: inset 80px 0 100px -80px #090d16, 
                inset -80px 0 100px -80px #090d16;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-badge {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-title {
    font-size: 48px;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: #cbd5e1; /* Her iki temada da okunur açık gri */
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover-gradient);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

/* İçerik Başlık ve Filtreleme Bölümü */
.content-header-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px; /* Hero alanından uzaklaştırıldı */
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    gap: 20px;
    flex-wrap: wrap;
}

.section-title-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-title {
    font-size: 20px;
    letter-spacing: -0.3px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    box-shadow: var(--shadow);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--text-primary);
}

.section-desc {
    font-size: 15px;
    color: var(--text-muted);
}

.filter-bar {
    display: flex;
    gap: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 14px;
}

.filter-btn {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-btn:hover {
    color: var(--text-primary);
}

.filter-btn.active {
    color: #ffffff;
    background: var(--primary-gradient);
    box-shadow: 0 4px 10px 0 rgba(99, 102, 241, 0.2);
}

/* Arama Sonuç Çubuğu */
.search-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-light);
    border: 1px solid rgba(99, 102, 241, 0.1);
    color: var(--text-primary);
    padding: 14px 24px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.clear-search-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.clear-search-btn:hover {
    opacity: 0.8;
}

/* Kartlar Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Kart Tasarımı */
.news-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(99, 102, 241, 0.3);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #1e293b;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .card-image {
    transform: scale(1.06);
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.card-type-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.card-type-badge.news {
    background: var(--news-color);
}

.card-type-badge.announcement {
    background: var(--announcement-color);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.card-summary {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
}

.read-more-btn {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.read-more-btn:hover {
    gap: 10px;
}

/* Boş Durum (Empty State) */
.empty-state {
    grid-column: 1 / -1;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    backdrop-filter: var(--glass-blur);
}

.empty-state-icon {
    font-size: 64px;
    color: var(--text-muted);
}

.empty-state h3 {
    font-size: 24px;
}

.empty-state p {
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: 10px;
}

/* Detay Sayfası */
.navigation-nav-back {
    margin: 30px 0 20px 0;
}

.back-link-btn {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.back-link-btn:hover {
    color: var(--primary-color);
    transform: translateX(-4px);
}

.detail-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 80px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

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

.detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-right: 12px;
}

.detail-badge.news { background-color: var(--news-color); }
.detail-badge.announcement { background-color: var(--announcement-color); }

.detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-title {
    font-size: 40px;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.25;
}

.detail-summary-intro {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 20px 0;
}

.detail-featured-image-wrapper {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.detail-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Instagram Tarzı Carousel/Slider */
.detail-slider-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    background: #000000;
}

.detail-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.detail-slider-slide {
    min-width: 100%;
    height: 100%;
}

.detail-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Yön Okları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-50%) scale(1.08);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Alt Noktalar (Dots) */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #ffffff;
    transform: scale(1.2);
    width: 18px;
    border-radius: 4px;
}

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

.detail-footer-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.share-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-box span {
    font-weight: 600;
    color: var(--text-secondary);
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.twitter { background-color: #1da1f2; }
.share-btn.facebook { background-color: #1877f2; }
.share-btn.whatsapp { background-color: #25d366; }

/* Footer Alanı */
.footer {
    margin-top: auto;
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0 0;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-nav h3, .footer-stats h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-nav ul li a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.stats-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-box-small {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 12px;
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: none; /* Kapalıyken render ağacından kaldırılır, kaymayı önler */
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    display: block;
    opacity: 1;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--bg-primary);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open .mobile-menu-container {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-search-form {
    position: relative;
    width: 100%;
}

.mobile-search-form .search-input {
    width: 100%;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--text-primary);
    background: var(--primary-light);
}

.mobile-nav .divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

/* Tablet & Mobil Uyumluluk Ayarları */
@media (max-width: 992px) {
    .hero-title { font-size: 38px; }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .bg-glow {
        display: none !important;
    }
    .hero-title {
        font-size: 28px !important;
    }
    .hero-subtitle {
        font-size: 14px;
    }
    .hero-section {
        padding: 60px 16px;
        box-shadow: inset 30px 0 60px -30px #090d16, 
                    inset -30px 0 60px -30px #090d16;
    }
    .site-logo-img {
        height: 55px;
        max-height: 55px;
    }
    .logo-text {
        font-size: 22px;
    }
    .nav { display: none; }
    .header-actions .search-form { display: none; }
    .header-actions .theme-toggle-btn { display: none !important; }
    .mobile-menu-btn { display: flex; }
    .content-header-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .filter-bar {
        width: 100%;
        overflow-x: auto;
    }
    .filter-btn {
        flex: 1;
        justify-content: center;
    }
    .detail-container { padding: 24px; }
    .detail-featured-image-wrapper {
        height: 240px;
    }
    .detail-slider-wrapper {
        height: 250px;
    }
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .slider-btn.prev { left: 10px; }
    .slider-btn.next { right: 10px; }
    .detail-title { font-size: 30px; }
    .detail-footer-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
