/**
 * Ali Karamut - Makale & Video Paylaşım Sitesi
 * Modern Blog/Haber Sitesi Tasarımı
 */

:root {
    /* Açık ve okunabilir renk paleti */
    --bg: #f5f7fa;
    --bg-alt: #ffffff;
    --card: #ffffff;
    --card-hover: #fafbfc;
    --text: #1a202c;
    --text-secondary: #4a5568;
    --muted: #718096;
    --accent: #2563eb;
    --accent-light: #dbeafe;
    --accent-dark: #1d4ed8;
    --border: #e2e8f0;
    --success: #10b981;
    --radius: 12px;
    --radius-sm: 8px;
    --container: 1200px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================
   HEADER / NAVİGASYON
   ===================== */
.site-header {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
    text-decoration: none;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-weight: 700;
    color: var(--text);
}

.logo-title {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--muted);
}

.nav {
    display: none;
    gap: 8px;
}

.nav a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s;
}

.nav a:hover,
.nav a.active {
    background: var(--accent-light);
    color: var(--accent);
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
}

.nav-toggle:hover {
    background: var(--bg);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Header Social Icons */
.header-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.header-social .social-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* Notification Bell - Header içinde */
.notification-bell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
}

.notification-bell:hover {
    background: var(--accent-light);
    border-color: var(--accent);
    transform: scale(1.05);
}

.bell-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.notification-bell:hover .bell-icon {
    animation: bellRing 0.5s ease;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
    75% { transform: rotate(10deg); }
}

.bell-status {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--bg-alt);
}

.bell-status.active {
    background: #ef4444;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.bell-status.inactive {
    background: #9ca3af;
}

.bell-status.pending {
    background: #f59e0b;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.show {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text);
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.mobile-menu a:hover {
    background: var(--bg);
}

/* Mobil: Sosyal ikonları gizle */
@media (max-width: 767px) {
    .header-social {
        display: none;
    }
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    .nav-toggle {
        display: none;
    }
}

/* =====================
   ÖNE ÇIKAN MAKALE
   ===================== */
.featured-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 60px 0;
    color: white;
}

.featured-content {
    display: grid;
    gap: 40px;
    align-items: center;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.featured-excerpt {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 24px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.8;
    font-size: 0.9rem;
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--accent-dark);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-top: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.featured-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: var(--accent-dark);
}

.featured-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .featured-content {
        grid-template-columns: 1fr 1fr;
    }
    .featured-title {
        font-size: 2.5rem;
    }
    .featured-image img {
        height: 350px;
    }
}

/* =====================
   ANA İÇERİK ALANI
   ===================== */
.main-content {
    padding: 48px 0;
}

.content-layout {
    display: grid;
    gap: 40px;
}

@media (min-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr 340px;
    }
}

/* =====================
   MAKALE KARTI
   ===================== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.section-title-icon {
    font-size: 1.3rem;
}

.view-all {
    font-weight: 600;
    font-size: 0.95rem;
}

.articles-grid {
    display: grid;
    gap: 24px;
}

.article-card {
    display: grid;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
}

.article-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.article-card-horizontal {
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .article-card-horizontal {
        grid-template-columns: 280px 1fr;
    }
}

.article-card-image {
    position: relative;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-horizontal .article-card-image img {
    height: 100%;
    min-height: 180px;
}

.article-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.article-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text);
}

.article-card-title a {
    color: inherit;
}

.article-card-title a:hover {
    color: var(--accent);
}

.article-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 0.85rem;
}

.article-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =====================
   KOMPAKT MAKALE LİSTESİ
   ===================== */
.articles-list-compact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-item-compact {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.article-item-compact:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.article-item-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.article-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-item-compact:hover .article-item-thumb img {
    transform: scale(1.05);
}

.article-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.article-item-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}

.article-item-title a {
    color: var(--text);
    text-decoration: none;
}

.article-item-title a:hover {
    color: var(--accent);
}

.article-item-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-item-meta {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--muted);
}

.article-item-date,
.article-item-tag {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Makale Aksiyonları - Devamını Oku & Paylaş */
.article-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: var(--accent);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.read-more-btn:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateX(4px);
}

.share-buttons {
    display: flex;
    gap: 6px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    transition: all 0.2s;
}

.share-btn:hover {
    transform: scale(1.15);
    color: white;
}

.share-twitter {
    background: #000;
}

.share-twitter:hover {
    background: #333;
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #0d65d9;
}

.share-linkedin {
    background: #0a66c2;
}

.share-linkedin:hover {
    background: #004182;
}

.share-whatsapp {
    background: #25d366;
}

.share-whatsapp:hover {
    background: #1da851;
}

@media (max-width: 600px) {
    .article-item-compact {
        flex-direction: column;
        gap: 12px;
    }
    
    .article-item-thumb {
        width: 100%;
        height: 160px;
    }
    
    .article-item-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .read-more-btn {
        justify-content: center;
    }
    
    .share-buttons {
        justify-content: center;
    }
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.article-tag {
    background: var(--accent-light);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Küçük Makale Kartı */
.article-card-small {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}

.article-card-small:hover {
    box-shadow: var(--shadow);
}

.article-card-small-image {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.article-card-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-small-body {
    flex: 1;
    min-width: 0;
}

.article-card-small-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--text);
}

.article-card-small-title a {
    color: inherit;
}

.article-card-small-title a:hover {
    color: var(--accent);
}

.article-card-small-date {
    font-size: 0.8rem;
    color: var(--muted);
}

/* =====================
   SİDEBAR
   ===================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    background: var(--card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Yazar Kutusu */
.author-box {
    text-align: center;
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    object-fit: cover;
    border: 4px solid var(--accent-light);
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-title {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.author-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.2s;
}

.author-social a:hover {
    background: var(--accent);
    color: white;
}

/* Etiketler Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    background: var(--bg);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.tag-link:hover {
    background: var(--accent);
    color: white;
}

/* Son Videolar Widget */
.video-widget-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-widget-item {
    display: flex;
    gap: 12px;
}

.video-widget-thumb {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.video-widget-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-widget-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    color: white;
    font-size: 1.5rem;
}

.video-widget-title {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
}

/* =====================
   VİDEOLAR BÖLÜMÜ
   ===================== */
.videos-section {
    background: var(--bg-alt);
    padding: 60px 0;
    margin-top: 48px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.video-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
}

.video-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.video-card-thumb {
    position: relative;
}

.video-card-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .video-play-overlay {
    opacity: 1;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.video-card:hover .video-play-btn {
    transform: scale(1);
}

.video-card-body {
    padding: 16px;
}

.video-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: var(--text);
    color: rgba(255,255,255,0.8);
    padding: 48px 0 24px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: background 0.2s;
}

.footer-social a:hover {
    background: var(--accent);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
}

/* =====================
   PWA & BİLDİRİM PROMPTS
   ===================== */
.pwa-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card);
    padding: 16px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
}

.pwa-banner.show {
    display: flex;
}

.pwa-banner-text h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--text);
}

.pwa-banner-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.pwa-install-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
}

.pwa-dismiss-btn {
    background: transparent;
    color: var(--muted);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.2rem;
}

.notification-prompt {
    position: fixed;
    top: 90px;
    right: 20px;
    background: var(--card);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 340px;
    z-index: 1000;
    display: none;
    border: 1px solid var(--border);
}

.notification-prompt.show {
    display: block;
    animation: slideIn 0.3s ease;
}

.notification-prompt-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.notification-prompt-icon {
    font-size: 2rem;
}

.notification-prompt-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.notification-prompt-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.notification-prompt-benefits {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 20px;
}

.notification-prompt-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notification-prompt-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 4px 0;
}

.notification-prompt-buttons {
    display: flex;
    gap: 12px;
}

.notification-prompt-buttons .pwa-install-btn {
    flex: 1;
}

.notification-prompt-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =====================
   MAKALE DETAY SAYFASI
   ===================== */
.article-page {
    padding: 40px 0;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.9rem;
}

.article-breadcrumb a {
    color: var(--muted);
}

.article-breadcrumb a:hover {
    color: var(--accent);
}

.article-header {
    margin-bottom: 32px;
}

.article-category-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.article-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 0.9rem;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 40px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2 {
    font-size: 1.75rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text);
}

.article-content h3 {
    font-size: 1.35rem;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--text);
}

.article-content img {
    border-radius: var(--radius);
    margin: 32px 0;
}

.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.15rem;
}

.article-content ul,
.article-content ol {
    margin: 24px 0;
    padding-left: 28px;
}

.article-content li {
    margin-bottom: 12px;
}

.article-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.share-section h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text);
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.85;
    color: white;
}

.share-btn-twitter {
    background: #1da1f2;
}

.share-btn-facebook {
    background: #1877f2;
}

.share-btn-whatsapp {
    background: #25d366;
}

.share-btn-linkedin {
    background: #0077b5;
}

/* İlgili Makaleler */
.related-articles {
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

/* =====================
   EMPTY STATES
   ===================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.empty-state h3 {
    color: var(--text);
    margin-bottom: 8px;
}

/* =====================
   UTILITIES
   ===================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 480px) {
    .featured-section {
        padding: 40px 0;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .article-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .article-card-body {
        padding: 16px;
    }
    
    .article-card-title {
        font-size: 1.1rem;
    }
}

/* =====================
   MAKALE SAYFASI - YENİ STİLLER
   ===================== */

/* Sayfa Layout - 2 Kolon */
.article-page-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .article-page-layout {
        grid-template-columns: 1fr 320px;
    }
}

/* Geri Dön Butonu */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin-bottom: 24px;
}

.back-button:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Floating Share Buttons */
.floating-share {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 100;
}

.floating-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.floating-share a:hover {
    transform: scale(1.1);
}

.floating-share .share-twitter:hover { background: #1da1f2; color: white; border-color: #1da1f2; }
.floating-share .share-facebook:hover { background: #4267B2; color: white; border-color: #4267B2; }
.floating-share .share-whatsapp:hover { background: #25D366; color: white; border-color: #25D366; }
.floating-share .share-linkedin:hover { background: #0077b5; color: white; border-color: #0077b5; }

@media (max-width: 1200px) {
    .floating-share {
        display: none;
    }
}

/* İçerik Resimleri için Çerçeve */
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 3px solid var(--border);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s;
    margin: 16px 0;
}

.article-content img:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

/* Featured Image */
.article-featured-image {
    width: 100%;
    border-radius: var(--radius);
    border: 3px solid var(--border);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 32px;
}

.article-featured-image:hover {
    border-color: var(--accent);
}

/* Article Video */
.article-video {
    margin: 32px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid var(--border);
}

.article-video iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

/* Image Lightbox */
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-lightbox.show {
    display: flex;
}

.image-lightbox img {
    max-width: 95%;
    max-height: 95%;
    border-radius: var(--radius);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

/* Article Tags as Links */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.article-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

.article-tag:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Share Section */
.share-section {
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 32px;
}

.share-section h4 {
    margin: 0 0 16px 0;
    font-size: 1rem;
}

.share-buttons-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-buttons-inline .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.share-buttons-inline .share-twitter:hover { background: #1da1f2; color: white; border-color: #1da1f2; }
.share-buttons-inline .share-facebook:hover { background: #4267B2; color: white; border-color: #4267B2; }
.share-buttons-inline .share-whatsapp:hover { background: #25D366; color: white; border-color: #25D366; }
.share-buttons-inline .share-linkedin:hover { background: #0077b5; color: white; border-color: #0077b5; }

/* İlgili Yazılar - 2 Kolon Kompakt */
.related-articles {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.related-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 600px) {
    .related-grid-compact {
        grid-template-columns: 1fr;
    }
}

.related-item-compact {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
    text-decoration: none;
}

.related-item-compact:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.related-thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-info {
    flex: 1;
    min-width: 0;
}

.related-info h4 {
    font-size: 0.9rem;
    margin: 0 0 4px 0;
    line-height: 1.3;
    color: var(--text);
}

.related-item-compact:hover .related-info h4 {
    color: var(--accent);
}

.related-date {
    font-size: 0.75rem;
    color: var(--muted);
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Article Main Card */
.article-card-wrapper {
    min-width: 0;
}

.article-main-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .article-main-card {
        padding: 20px;
    }
}

.sidebar-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.sidebar-card-title {
    margin: 0 0 16px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Author Card */
.author-card {
    text-align: center;
}

.author-card .author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 3px solid var(--border);
}

.author-card .author-name {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
}

.author-card .author-title {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}

/* Sidebar Videos */
.sidebar-videos {
    display: flex;
    flex-direction: column;
}

.sidebar-video-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.3s;
}

.sidebar-video-item:last-child {
    border-bottom: none;
}

.sidebar-video-item:hover {
    background: var(--bg);
    margin: 0 -10px;
    padding: 10px;
    border-radius: var(--radius-sm);
}

.sidebar-video-thumb {
    width: 80px;
    height: 45px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.sidebar-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-video-thumb .play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-video-item:hover .play-icon {
    opacity: 1;
}

.sidebar-video-title {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.3;
}

.sidebar-video-item:hover .sidebar-video-title {
    color: var(--accent);
}

/* =====================
   HAKKINDA SAYFASI
   ===================== */

/* Content Section */
.about-content-section {
    padding-bottom: 60px;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr 320px;
    }
}

.about-main {
    min-width: 0;
}

.about-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.about-card-header h2 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Profil + Özgeçmiş Yan Yana Layout */
.about-content-inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    padding: 24px;
}

/* Kompakt Profil (Sol) */
.about-profile-compact {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.about-photo-compact {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
    margin-bottom: 12px;
}

.about-name-compact {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text);
    line-height: 1.3;
}

.about-title-compact {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.about-social-compact {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.social-btn-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.social-btn-compact:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* Özgeçmiş Bölümü (Sağ) */
.about-bio-section {
    line-height: 1.8;
    color: var(--text);
}

.about-bio-section h3 {
    color: var(--accent);
    margin: 24px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
    font-size: 1rem;
}

.about-bio-section h3:first-child {
    margin-top: 0;
}

.about-bio-section ul {
    padding-left: 20px;
    margin: 12px 0;
}

.about-bio-section li {
    margin-bottom: 6px;
}

.about-bio-section p {
    margin-bottom: 12px;
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    .about-content-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px;
    }
    
    .about-profile-compact {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 12px;
    }
    
    .about-photo-compact {
        width: 70px;
        height: 70px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .about-name-compact {
        font-size: 1rem;
    }
    
    .about-title-compact {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    
    .about-social-compact {
        justify-content: flex-start;
    }
    
    .social-btn-compact {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

.about-bio {
    padding: 24px;
    line-height: 1.8;
}

.about-bio h3 {
    color: var(--accent);
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
    font-size: 1.1rem;
}

.about-bio h3:first-child {
    margin-top: 0;
}

.about-bio ul {
    padding-left: 24px;
    margin: 16px 0;
}

.about-bio li {
    margin-bottom: 8px;
}

.about-bio p {
    margin-bottom: 16px;
}

.empty-bio {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
}

.empty-bio p {
    margin: 8px 0;
}

/* About Sidebar */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
}

.contact-item:hover {
    background: var(--accent);
    color: white;
}

.contact-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: 50%;
    font-size: 0.9rem;
}

.contact-item:hover .contact-icon {
    background: rgba(255,255,255,0.2);
}

.contact-text {
    flex: 1;
    font-size: 0.9rem;
}

/* Sidebar Articles */
.sidebar-articles {
    display: flex;
    flex-direction: column;
}

.sidebar-article-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.3s;
}

.sidebar-article-item:last-child {
    border-bottom: none;
}

.sidebar-article-item:hover {
    padding-left: 8px;
}

.sidebar-article-title {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.4;
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--accent);
}

.sidebar-article-date {
    font-size: 0.75rem;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
    .about-content-section {
        padding-top: 24px;
    }
    
    .about-bio {
        padding: 20px;
    }
}
