/* ═══════════════════════════════════════
   NewGenNews — Unified Stylesheet v5
   Professional Editorial Magazine
   ═══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    background: #06060f;
    color: #e2e8f0;
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
}

a { color: #a78bfa; text-decoration: none; transition: color 0.3s; }
a:hover { color: #c4b5fd; }
img { max-width: 100%; height: auto; display: block; }

/* ─── Background ─── */
.bg-canvas { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.bg-canvas::before { content: ''; position: absolute; width: 900px; height: 900px; border-radius: 50%; background: radial-gradient(circle, rgba(99,56,239,0.1) 0%, transparent 70%); top: -20%; left: -10%; animation: bgFloat 22s ease-in-out infinite alternate; }
.bg-canvas::after { content: ''; position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(217,70,239,0.07) 0%, transparent 70%); bottom: -20%; right: -10%; animation: bgFloat 28s ease-in-out infinite alternate-reverse; }
@keyframes bgFloat { from { transform: translate(0,0); } to { transform: translate(40px,-25px); } }
.bg-noise { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); opacity: 0.4; }

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.site-header {
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(28px) saturate(1.3);
    -webkit-backdrop-filter: blur(28px) saturate(1.3);
    background: rgba(6,6,15,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 28px; height: 58px; gap: 20px;
}

.nav-logo {
    font-family: 'Inter', sans-serif;
    font-size: 21px; font-weight: 800;
    background: linear-gradient(135deg, #fff 20%, #a78bfa 80%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; letter-spacing: -0.5px; flex-shrink: 0;
}

.nav-datetime {
    font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.3);
    letter-spacing: 0.3px; flex-shrink: 0; display: flex; align-items: center; gap: 6px;
}
.nav-date-sep { color: rgba(255,255,255,0.12); }

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4); transition: color 0.2s; letter-spacing: 0.2px; }
.nav-links a:hover { color: #fff; -webkit-text-fill-color: unset; }

/* Language Switcher */
.lang-switch { display: flex; align-items: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 2px; flex-shrink: 0; }
.lang-btn { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.3); background: transparent; border: none; padding: 4px 10px; border-radius: 6px; cursor: pointer; transition: all 0.2s; letter-spacing: 0.5px; font-family: inherit; }
.lang-btn:hover { color: rgba(255,255,255,0.6); }
.lang-btn.active { background: rgba(167,139,250,0.15); color: #c4b5fd; }

/* Hamburger */
.hamburger-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; -webkit-tap-highlight-color: transparent; }
.hamburger-btn span { display: block; width: 20px; height: 2px; background: rgba(255,255,255,0.6); border-radius: 2px; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); margin: 5px 0; }
.hamburger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ═══════════════════════════════════════
   CATEGORY NAV BAR
   ═══════════════════════════════════════ */
.cat-nav-bar {
    position: sticky; top: 58px; z-index: 99;
    background: rgba(6,6,15,0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.cat-nav-bar::-webkit-scrollbar { display: none; }

.cat-nav-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; gap: 4px;
    padding: 8px 28px; white-space: nowrap;
}

.cat-nav-pill {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,0.4);
    padding: 5px 14px; border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.2s ease; text-decoration: none;
    letter-spacing: 0.2px; flex-shrink: 0;
}
.cat-nav-pill:hover { color: #fff; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); }
.cat-nav-pill.active { color: #fff; background: rgba(167,139,250,0.15); border-color: rgba(167,139,250,0.25); }

.pill-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pill-teknoloji .pill-dot { background: #06b6d4; }
.pill-ekonomi .pill-dot { background: #f59e0b; }
.pill-spor .pill-dot { background: #22c55e; }
.pill-otomotiv .pill-dot { background: #ef4444; }
.pill-gaming .pill-dot { background: #a855f7; }
.pill-sinema .pill-dot { background: #f97316; }
.pill-channels { color: rgba(255,255,255,0.5); }
.pill-channels:hover { color: #a78bfa; }

/* ═══════════════════════════════════════
   MOBILE OVERLAY
   ═══════════════════════════════════════ */
.mobile-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(6,6,15,0.97); backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px); flex-direction: column; display: none; opacity: 0; pointer-events: none; }
.mobile-overlay.open { display: flex; opacity: 1; pointer-events: auto; animation: overlayFadeIn 0.25s ease forwards; }
@keyframes overlayFadeIn { from { opacity: 0; } to { opacity: 1; } }
.mobile-overlay-header { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: 58px; border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
.mobile-close-btn { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; -webkit-tap-highlight-color: transparent; }
.mobile-close-btn:hover { background: rgba(255,255,255,0.1); }
.mobile-close-btn svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.7); stroke-width: 2; }
.mobile-overlay-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0 32px; gap: 0; }
.mobile-overlay-body a { font-size: 28px; font-weight: 800; color: rgba(255,255,255,0.4); padding: 18px 0; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.04); transition: all 0.3s ease; transform: translateX(-10px); opacity: 0; }
.mobile-overlay.open .mobile-overlay-body a { transform: translateX(0); opacity: 1; }
.mobile-overlay-body a:nth-child(1) { transition-delay: 0.05s; }
.mobile-overlay-body a:nth-child(2) { transition-delay: 0.1s; }
.mobile-overlay-body a:nth-child(3) { transition-delay: 0.15s; }
.mobile-overlay-body a:nth-child(4) { transition-delay: 0.2s; }
.mobile-overlay-body a:hover { color: #fff; padding-left: 12px; }
.mobile-overlay-footer { padding: 20px 32px 40px; flex-shrink: 0; }
.mobile-overlay-footer .lang-switch { width: 100%; display: flex; padding: 4px; border-radius: 12px; }
.mobile-overlay-footer .lang-btn { flex: 1; padding: 12px; font-size: 14px; border-radius: 10px; text-align: center; }

/* ═══════════════════════════════════════
   BREAKING NEWS TICKER
   ═══════════════════════════════════════ */
/* ─── Live Rates Bar ─── */
.rates-bar {
    background: rgba(6,6,15,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    height: 32px; overflow: hidden;
    position: relative; z-index: 1;
}
.rates-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; gap: 14px;
    padding: 0 28px; height: 100%;
}
.rates-label {
    display: flex; align-items: center; gap: 5px;
    font-size: 9px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; color: rgba(255,255,255,0.25);
    flex-shrink: 0; white-space: nowrap;
}
.rates-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: #22c55e; flex-shrink: 0;
    animation: livePulse 1.5s ease-in-out infinite;
}
.rates-items {
    display: flex; align-items: center; gap: 10px;
    overflow: hidden; flex: 1;
}
.rate-chip {
    display: flex; align-items: center; gap: 5px;
    white-space: nowrap; flex-shrink: 0;
}
.rate-lbl {
    font-size: 9px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.8px; color: rgba(255,255,255,0.3);
}
.rate-val {
    font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.75);
}
.rate-sep {
    color: rgba(255,255,255,0.1); font-size: 10px; flex-shrink: 0;
}
@media (max-width: 480px) {
    .rates-bar { display: none; }
}

.ticker-wrap {
    display: flex; align-items: center;
    background: rgba(167,139,250,0.06);
    border-bottom: 1px solid rgba(167,139,250,0.1);
    overflow: hidden; height: 38px;
    position: relative; z-index: 1;
}

.ticker-label {
    display: flex; align-items: center; gap: 7px;
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; color: #06060f;
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    padding: 0 18px; height: 100%; flex-shrink: 0;
    white-space: nowrap;
}

.ticker-live-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #06060f; flex-shrink: 0;
    animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.ticker-viewport { flex: 1; overflow: hidden; }

.ticker-track {
    display: flex; align-items: center; gap: 0;
    animation: tickerScroll 55s linear infinite;
    width: max-content;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tick-item {
    font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.65);
    white-space: nowrap; padding: 0 4px;
}
.tick-sep {
    font-size: 10px; color: rgba(167,139,250,0.4);
    padding: 0 18px; flex-shrink: 0;
}

/* ═══════════════════════════════════════
   MAIN LAYOUT
   ═══════════════════════════════════════ */
.page-main {
    position: relative; z-index: 1;
    max-width: 1280px; margin: 0 auto;
    padding: 32px 28px 80px;
}

/* ─── Section Headers ─── */
.section-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px; padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-icon-fire, .section-icon-chart { font-size: 18px; line-height: 1; }
.section-title {
    font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -0.3px; white-space: nowrap;
}
.section-line { flex: 1; height: 1px; background: rgba(255,255,255,0.04); }

/* ─── Scroll Animations ─── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero-section { margin-bottom: 32px; }

/* Top grid: big + side column */
.hero-grid-top {
    display: grid; grid-template-columns: 1.65fr 1fr;
    gap: 14px; margin-bottom: 14px;
}

.hero-mega {
    position: relative; border-radius: 18px; overflow: hidden;
    aspect-ratio: 16/10; display: flex; flex-direction: column;
    justify-content: flex-end; text-decoration: none; color: inherit;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero-mega:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.55); }
.hero-mega img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hero-mega:hover img { transform: scale(1.05); }
.hero-mega .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,15,0.97) 0%, rgba(6,6,15,0.55) 45%, rgba(6,6,15,0.1) 80%); }
.hero-mega .hero-body { position: relative; z-index: 2; padding: 32px; }
.hero-mega .hero-title { font-size: 28px; font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 10px; letter-spacing: -0.5px; }
.hero-mega .hero-excerpt { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; }

.hero-cat {
    font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
    display: inline-block; padding: 4px 12px; border-radius: 5px; margin-bottom: 12px;
}
.hero-cat.cat-teknoloji { background: rgba(6,182,212,0.18); color: #06b6d4; }
.hero-cat.cat-ekonomi { background: rgba(245,158,11,0.18); color: #f59e0b; }
.hero-cat.cat-spor { background: rgba(34,197,94,0.18); color: #22c55e; }
.hero-cat.cat-sinema { background: rgba(249,115,22,0.18); color: #f97316; }
.hero-cat.cat-otomotiv { background: rgba(239,68,68,0.18); color: #ef4444; }
.hero-cat.cat-gaming { background: rgba(168,85,247,0.18); color: #a855f7; }

.hero-meta-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.hero-meta { font-size: 11px; color: rgba(255,255,255,0.3); }
.hero-read-time { font-size: 11px; color: rgba(167,139,250,0.6); font-weight: 600; }

/* Side stack */
.hero-side { display: flex; flex-direction: column; gap: 14px; }
.hero-side-card {
    flex: 1; position: relative; border-radius: 14px; overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end;
    text-decoration: none; color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-side-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.45); }
.hero-side-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hero-side-card:hover img { transform: scale(1.05); }
.hero-side-card .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,15,0.95) 0%, rgba(6,6,15,0.5) 55%, transparent 85%); }
.hero-side-card .hero-body { position: relative; z-index: 2; padding: 18px; }
.hero-side-card .hero-title { font-size: 15px; font-weight: 700; line-height: 1.4; color: #fff; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 8px; }

/* Bottom row: 3 cards */
.hero-grid-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hero-bottom-card {
    position: relative; border-radius: 14px; overflow: hidden;
    aspect-ratio: 4/3; display: flex; flex-direction: column;
    justify-content: flex-end; text-decoration: none; color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-bottom-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.45); }
.hero-bottom-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hero-bottom-card:hover img { transform: scale(1.05); }
.hero-bottom-card .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,15,0.96) 0%, rgba(6,6,15,0.45) 55%, transparent 85%); }
.hero-bottom-card .hero-body { position: relative; z-index: 2; padding: 16px; }
.hero-bottom-card .hero-title { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 6px; }

/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */
.stats-bar {
    display: flex; align-items: center; gap: 0;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px; padding: 14px 24px;
    margin-bottom: 40px; flex-wrap: wrap;
}
.stat-item { display: flex; align-items: center; gap: 8px; padding: 4px 20px; }
.stat-item:first-child { padding-left: 0; }
.stat-num { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.stat-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.3); }
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.06); flex-shrink: 0; }
.stat-live { gap: 8px; }
.live-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex-shrink: 0; box-shadow: 0 0 8px rgba(34,197,94,0.5); animation: livePulse 2s ease-in-out infinite; }

/* ═══════════════════════════════════════
   TRENDING (with images)
   ═══════════════════════════════════════ */
.trending-section { margin-bottom: 48px; }

.trending-image-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}

.trend-img-card {
    position: relative; border-radius: 14px; overflow: hidden;
    aspect-ratio: 3/4; display: flex; flex-direction: column;
    justify-content: flex-end; text-decoration: none; color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.trend-img-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.5); }
.trend-img-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.trend-img-card:hover img { transform: scale(1.06); }
.trend-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,15,0.97) 0%, rgba(6,6,15,0.5) 50%, rgba(6,6,15,0.15) 80%); }

.trend-img-body { position: relative; z-index: 2; padding: 16px; display: flex; flex-direction: column; }
.trend-rank-badge {
    font-size: 40px; font-weight: 900; color: rgba(255,255,255,0.07);
    line-height: 1; margin-bottom: 8px; letter-spacing: -2px;
    font-family: 'Syne', 'Inter', sans-serif;
}
.trend-img-content { flex: 1; }
.trend-img-cat { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 6px; }
.trend-img-title { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 6px; }
.trend-img-meta { font-size: 10px; color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════
   CATEGORY BLOCKS
   ═══════════════════════════════════════ */
.cat-block { margin-bottom: 48px; }

.cat-block-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 18px; padding-bottom: 12px;
    border-bottom: 2px solid rgba(255,255,255,0.05);
}
.cat-block-header .cat-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.cat-block-header h2 { font-size: 17px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
.cat-count { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); padding: 2px 8px; border-radius: 20px; }
.cat-more { font-size: 12px; font-weight: 700; color: rgba(167,139,250,0.5); margin-left: auto; text-decoration: none; transition: color 0.2s; }
.cat-more:hover { color: #a78bfa; }

.cat-block-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Featured card */
.cat-featured {
    position: relative; border-radius: 16px; overflow: hidden;
    aspect-ratio: 4/3; display: flex; flex-direction: column;
    justify-content: flex-end; text-decoration: none; color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.cat-featured:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.45); }
.cat-featured img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-featured:hover img { transform: scale(1.05); }
.cat-featured .cf-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,15,0.96) 0%, rgba(6,6,15,0.45) 50%, transparent 82%); }
.cat-featured .cf-body { position: relative; z-index: 2; padding: 20px; }

.cf-cat { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 8px; display: inline-block; }
.cf-title { font-size: 17px; font-weight: 800; color: #fff; line-height: 1.35; margin-bottom: 8px; }
.cf-excerpt { font-size: 12px; color: rgba(255,255,255,0.45); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; line-height: 1.6; }
.cf-meta-row { display: flex; align-items: center; justify-content: space-between; }
.cf-meta { font-size: 11px; color: rgba(255,255,255,0.25); }
.cf-read-time { font-size: 11px; color: rgba(167,139,250,0.5); font-weight: 600; }

/* List cards */
.cat-list { display: flex; flex-direction: column; gap: 10px; }

.cat-list-card {
    display: flex; gap: 14px; padding: 12px 14px;
    border-radius: 12px; background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    text-decoration: none; color: inherit;
    transition: all 0.25s ease; flex: 1;
}
.cat-list-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.09);
    transform: translateX(5px);
}

.cat-list-card .cl-thumb { width: 88px; height: 64px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: rgba(255,255,255,0.03); }
.cat-list-card .cl-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat-list-card:hover .cl-thumb img { transform: scale(1.07); }

.cat-list-card .cl-body { flex: 1; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.cl-cat { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.cl-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); line-height: 1.4; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cl-meta { font-size: 11px; color: rgba(255,255,255,0.25); }
.cl-meta-row { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.cl-read { font-size: 10px; color: rgba(167,139,250,0.5); font-weight: 600; white-space: nowrap; }

/* Category colors */
.cat-teknoloji { color: #06b6d4; }
.cat-ekonomi { color: #f59e0b; }
.cat-spor { color: #22c55e; }
.cat-sinema { color: #f97316; }
.cat-otomotiv { color: #ef4444; }
.cat-gaming { color: #a855f7; }
.cat-danismanlik { color: #ec4899; }

.dot-teknoloji { background: #06b6d4; }
.dot-ekonomi { background: #f59e0b; }
.dot-spor { background: #22c55e; }
.dot-sinema { background: #f97316; }
.dot-otomotiv { background: #ef4444; }
.dot-gaming { background: #a855f7; }

/* ═══════════════════════════════════════
   EN ÇOK OKUNAN (MOST POPULAR)
   ═══════════════════════════════════════ */
.popular-section { margin-bottom: 48px; }

.popular-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

.popular-img-card {
    position: relative; border-radius: 16px; overflow: hidden;
    aspect-ratio: 4/5; display: flex; flex-direction: column;
    justify-content: flex-end; text-decoration: none; color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.popular-img-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.popular-img-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.popular-img-card:hover img { transform: scale(1.05); }
.popular-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,15,0.97) 0%, rgba(6,6,15,0.5) 50%, transparent 82%); }
.popular-body { position: relative; z-index: 2; padding: 20px; display: flex; align-items: flex-end; gap: 14px; }
.popular-rank { font-size: 56px; font-weight: 900; color: rgba(255,255,255,0.07); line-height: 0.9; flex-shrink: 0; letter-spacing: -3px; font-family: 'Syne', 'Inter', sans-serif; }
.popular-cat { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 6px; }
.popular-title { font-size: 15px; font-weight: 800; color: #fff; line-height: 1.35; margin-bottom: 6px; }
.popular-meta { font-size: 10px; color: rgba(255,255,255,0.3); }

/* List column (items 3-5) */
.popular-list-col { display: flex; flex-direction: column; gap: 10px; }
.popular-list-item {
    display: flex; align-items: center; gap: 12px;
    padding: 14px; border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    text-decoration: none; color: inherit;
    transition: all 0.25s ease; flex: 1;
}
.popular-list-item:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); transform: translateX(4px); }
.popular-list-rank { font-size: 28px; font-weight: 900; color: rgba(167,139,250,0.15); line-height: 1; width: 36px; flex-shrink: 0; text-align: center; font-family: 'Syne', 'Inter', sans-serif; }
.popular-list-item .cl-thumb { width: 80px; height: 58px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: rgba(255,255,255,0.03); }
.popular-list-item .cl-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.popular-list-item:hover .cl-thumb img { transform: scale(1.07); }
.popular-list-body { flex: 1; min-width: 0; }
.popular-list-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px; }
.popular-list-meta { font-size: 10px; color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════
   MINI CATEGORIES ROW
   ═══════════════════════════════════════ */
.mini-cats-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-bottom: 48px;
}

.mini-cat-block {}

.mini-featured {
    position: relative; border-radius: 14px; overflow: hidden;
    aspect-ratio: 16/10; display: flex; flex-direction: column;
    justify-content: flex-end; text-decoration: none; color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    margin-bottom: 10px; box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.mini-featured:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.45); }
.mini-featured img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mini-featured:hover img { transform: scale(1.05); }
.mini-featured .cf-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,15,0.96) 0%, rgba(6,6,15,0.45) 55%, transparent 85%); }
.mini-featured .cf-body { position: relative; z-index: 2; padding: 16px; }
.mini-featured .cf-title { font-size: 14px; font-weight: 800; color: #fff; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 6px; }

.mini-list-card { margin-top: 0; }

/* ═══════════════════════════════════════
   CHANNELS CTA
   ═══════════════════════════════════════ */
.cta-section { margin-bottom: 16px; }

.cta-card {
    position: relative; border-radius: 20px; overflow: hidden;
    background: linear-gradient(135deg, rgba(99,56,239,0.12) 0%, rgba(167,139,250,0.06) 50%, rgba(217,70,239,0.08) 100%);
    border: 1px solid rgba(167,139,250,0.15);
    padding: 48px 52px;
}

.cta-glow {
    position: absolute; top: -60px; right: -60px;
    width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(circle, rgba(167,139,250,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content { display: flex; align-items: center; gap: 40px; position: relative; }
.cta-icon-wrap { font-size: 56px; line-height: 1; flex-shrink: 0; }
.cta-text { flex: 1; }
.cta-title { font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -0.5px; margin-bottom: 12px; line-height: 1.2; }
.cta-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; max-width: 520px; }
.cta-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.cta-cat-badge { font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-teknoloji { background: rgba(6,182,212,0.12); color: #06b6d4; border: 1px solid rgba(6,182,212,0.2); }
.badge-spor { background: rgba(34,197,94,0.12); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
.badge-ekonomi { background: rgba(245,158,11,0.12); color: #f59e0b; border: 1px solid rgba(245,158,11,0.2); }
.badge-gaming { background: rgba(168,85,247,0.12); color: #a855f7; border: 1px solid rgba(168,85,247,0.2); }
.badge-otomotiv { background: rgba(239,68,68,0.12); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }
.badge-sinema { background: rgba(249,115,22,0.12); color: #f97316; border: 1px solid rgba(249,115,22,0.2); }

.cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 800; color: #06060f;
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    padding: 13px 28px; border-radius: 12px;
    text-decoration: none; transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(167,139,250,0.3);
    letter-spacing: 0.2px;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(167,139,250,0.4); color: #06060f; -webkit-text-fill-color: unset; }
.cta-arrow { transition: transform 0.3s ease; }
.cta-btn:hover .cta-arrow { transform: translateX(3px); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
    position: relative; z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.01);
    padding: 52px 28px 0;
}

.footer-main {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 48px; padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-size: 20px; font-weight: 800; display: block; margin-bottom: 14px;
    background: linear-gradient(135deg, #fff 20%, #a78bfa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; letter-spacing: -0.5px; text-decoration: none;
}
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.75; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4); transition: all 0.2s ease; text-decoration: none;
}
.social-link:hover { background: rgba(167,139,250,0.12); border-color: rgba(167,139,250,0.2); color: #a78bfa; }

.footer-col-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.3); margin-bottom: 18px; }

.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-list li a {
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.4);
    text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 8px;
}
.footer-links-list li a:hover { color: rgba(255,255,255,0.8); }
.footer-link-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

.footer-bottom {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0 28px; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.15); letter-spacing: 0.5px; }
.footer-bottom-links { display: flex; align-items: center; gap: 14px; }
.footer-bottom-links a { font-size: 11px; color: rgba(255,255,255,0.2); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }
.footer-bottom-links .sep { color: rgba(255,255,255,0.08); font-size: 11px; }

/* ═══════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════ */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 50;
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(167,139,250,0.15);
    border: 1px solid rgba(167,139,250,0.25);
    display: flex; align-items: center; justify-content: center;
    color: #a78bfa; cursor: pointer;
    opacity: 0; transform: translateY(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: rgba(167,139,250,0.25); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }

/* ═══════════════════════════════════════
   CONTENT CARDS (legal / contact pages)
   ═══════════════════════════════════════ */
.page-main { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 32px 28px 80px; }
.content-wrap { max-width: 720px; margin: 0 auto; }
.content-card { border-radius: 16px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 24px; margin-bottom: 14px; }
.content-card h2 { font-size: 15px; font-weight: 800; color: #c4b5fd; margin-bottom: 12px; }
.content-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 10px; }
.content-card ul { list-style: disc; padding-left: 20px; margin-bottom: 10px; }
.content-card li { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 6px; }
.content-card strong { color: rgba(255,255,255,0.75); }
.content-card a { color: #a78bfa; }
.contact-link { font-size: 16px; font-weight: 700; color: #a78bfa; }
.legal-page { padding-top: 20px; }
.legal-page .content-card { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

.page-title { font-size: 28px; font-weight: 900; letter-spacing: -0.5px; background: linear-gradient(135deg, #fff 0%, #c4b5fd 50%, #a78bfa 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px; }
.page-subtitle { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.3); margin-bottom: 36px; }

/* ═══════════════════════════════════════
   ARTICLE PAGE
   ═══════════════════════════════════════ */
.article-hero { width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; margin-bottom: 28px; position: relative; background: rgba(255,255,255,0.03); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, rgba(6,6,15,0.4) 0%, transparent 100%); pointer-events: none; }
.article-header { margin-bottom: 32px; }
.article-cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; display: inline-block; padding: 5px 14px; background: rgba(167,139,250,0.1); border-radius: 6px; }
.article-title { font-size: 32px; font-weight: 900; color: #fff; line-height: 1.25; letter-spacing: -0.5px; margin-bottom: 14px; }
.article-meta { font-size: 13px; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.article-meta .sep { color: rgba(255,255,255,0.12); }
.article-body { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.9; }
.article-body h2 { font-size: 22px; font-weight: 800; color: #e2e8f0; margin: 32px 0 14px; }
.article-body h3 { font-size: 18px; font-weight: 700; color: #c4b5fd; margin: 24px 0 10px; }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 16px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote { border-left: 3px solid #a78bfa; padding: 12px 20px; margin: 20px 0; background: rgba(167,139,250,0.04); border-radius: 0 8px 8px 0; font-style: italic; color: rgba(255,255,255,0.55); }
.article-body strong { color: rgba(255,255,255,0.85); }
.article-source { margin-top: 32px; padding: 16px; border-radius: 12px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); font-size: 13px; color: rgba(255,255,255,0.3); }
.article-source a { color: #a78bfa; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.25); margin-bottom: 24px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.35); }
.breadcrumb a:hover { color: #a78bfa; }
.breadcrumb .sep { color: rgba(255,255,255,0.12); }

/* Pipeline (privacy page) */
.pipeline { display: flex; flex-direction: column; gap: 0; margin: 20px 0 8px; }
.pipe-step { display: flex; align-items: flex-start; gap: 14px; position: relative; }
.pipe-line { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 32px; }
.pipe-dot { width: 32px; height: 32px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; position: relative; z-index: 1; }
.pipe-connector { width: 2px; height: 28px; background: linear-gradient(180deg, rgba(167,139,250,0.3), rgba(167,139,250,0.06)); flex-shrink: 0; }
.pipe-content { padding: 4px 0 24px; flex: 1; min-width: 0; }
.pipe-content h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.75); margin-bottom: 4px; }
.pipe-content p { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 0; }
.pipe-step:last-child .pipe-content { padding-bottom: 0; }
.pipe-step:last-child .pipe-connector { display: none; }
.legal-ref { display: inline; font-size: 11px; color: rgba(167,139,250,0.5); font-weight: 500; }

/* Auto-posts (legacy) */
.auto-posts-section { margin: 40px 0; }
.auto-posts-section .section-title { margin-bottom: 16px; }
.recent-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cl-cat { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 2px 8px; border-radius: 20px; display: inline-block; margin-bottom: 4px; }

/* ═══════════════════════════════════════
   MISSING CATEGORY COLOR
   ═══════════════════════════════════════ */
.cat-dunya { color: #e2e8f0; }
.hero-cat.cat-dunya { background: rgba(226,232,240,0.12); color: #e2e8f0; }

/* ═══════════════════════════════════════
   RESPONSIVE — 1100px
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
    .popular-grid { grid-template-columns: 1fr 1fr; }
    .popular-list-col { grid-column: span 2; flex-direction: row; flex-wrap: wrap; }
    .popular-list-item { flex: 1; min-width: 260px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: span 2; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 960px (tablet)
   ═══════════════════════════════════════ */
@media (max-width: 960px) {
    .hero-grid-top { grid-template-columns: 1fr; }
    .hero-side { flex-direction: row; }
    .hero-side-card { min-height: 200px; }
    .hero-grid-bottom { grid-template-columns: 1fr 1fr; }
    .trending-image-grid { grid-template-columns: repeat(2, 1fr); }
    .trend-img-card { aspect-ratio: 4/3; }
    .cat-block-grid { grid-template-columns: 1fr; }
    .cat-featured { aspect-ratio: 16/9; }
    .mini-cats-row { grid-template-columns: 1fr 1fr; gap: 16px; }
    .mini-cat-block:last-child { grid-column: span 2; }
    .mini-featured { aspect-ratio: 16/9; }
    .cta-content { flex-direction: column; text-align: center; }
    .cta-cats { justify-content: center; }
    .cta-card { padding: 36px 28px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 768px (mobile start)
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body { overflow-x: hidden; font-size: 15px; }

    /* ── Header ── */
    .nav-inner { padding: 0 16px; height: 52px; gap: 0; }
    .nav-datetime { display: none; }
    .nav-links { display: none; }
    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px; height: 44px;
        padding: 0;
        border-radius: 10px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.07);
        gap: 0;
    }
    .hamburger-btn span {
        width: 22px; height: 2px;
        margin: 3px 0;
        background: rgba(255,255,255,0.75);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    }
    .hamburger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
    .hamburger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

    /* ── Mobile overlay: full-screen ── */
    .mobile-overlay {
        position: fixed; inset: 0; z-index: 200;
        background: rgba(6,6,15,0.97);
        backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
        display: none; flex-direction: column;
        opacity: 0; pointer-events: none;
    }
    .mobile-overlay.open {
        display: flex; opacity: 1; pointer-events: auto;
        animation: overlayFadeIn 0.25s ease forwards;
    }
    .mobile-overlay-header {
        display: flex; align-items: center; justify-content: space-between;
        padding: 0 20px; height: 56px;
        border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0;
    }
    .mobile-close-btn {
        width: 44px; height: 44px; border-radius: 12px;
        background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
        display: flex; align-items: center; justify-content: center;
        cursor: pointer; -webkit-tap-highlight-color: transparent;
    }
    .mobile-overlay-body {
        flex: 1; display: flex; flex-direction: column;
        justify-content: center; padding: 0 28px; gap: 0;
    }
    .mobile-overlay-body a {
        font-size: 30px; font-weight: 800;
        color: rgba(255,255,255,0.5);
        padding: 20px 0; min-height: 64px;
        display: flex; align-items: center;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        transition: all 0.3s ease;
        transform: translateX(-10px); opacity: 0;
    }
    .mobile-overlay.open .mobile-overlay-body a { transform: translateX(0); opacity: 1; }
    .mobile-overlay-body a:hover { color: #fff; padding-left: 10px; }
    .mobile-overlay-footer { padding: 20px 28px 48px; flex-shrink: 0; }
    .mobile-overlay-footer .lang-switch {
        width: 100%; display: flex; padding: 4px; border-radius: 12px;
        background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    }
    .mobile-overlay-footer .lang-btn {
        flex: 1; padding: 14px; font-size: 14px; border-radius: 10px; text-align: center;
    }

    /* ── Category nav: horizontal scroll ── */
    .cat-nav-bar {
        overflow-x: auto; overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .cat-nav-bar::-webkit-scrollbar { display: none; }
    .cat-nav-inner {
        padding: 8px 16px; gap: 6px;
        flex-wrap: nowrap; white-space: nowrap;
    }
    .cat-nav-pill {
        padding: 7px 14px; font-size: 12px;
        flex-shrink: 0;
    }

    /* ── Page main ── */
    .page-main { padding: 16px 16px 64px; }

    /* ── Hero: mega card ── */
    .hero-section { margin-bottom: 24px; }
    .hero-grid-top { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
    .hero-mega {
        width: 100%; border-radius: 14px;
        min-height: 260px; aspect-ratio: unset;
    }
    .hero-mega img { height: 100%; }
    .hero-mega .hero-body { padding: 20px; }
    .hero-mega .hero-title { font-size: 20px; line-height: 1.3; margin-bottom: 8px; }
    .hero-mega .hero-excerpt { display: none; }
    .hero-mega .hero-meta-row { flex-wrap: wrap; gap: 6px; }

    /* ── Hero: side cards stacked below mega ── */
    .hero-side { flex-direction: column; gap: 10px; }
    .hero-side-card {
        min-height: 160px; border-radius: 12px;
        flex: unset; width: 100%;
    }
    .hero-side-card .hero-body { padding: 14px; }
    .hero-side-card .hero-title { font-size: 14px; }

    /* ── Hero: bottom 3 cards stacked ── */
    .hero-grid-bottom { display: flex; flex-direction: column; gap: 10px; }
    .hero-bottom-card {
        width: 100%; aspect-ratio: unset; min-height: 150px;
        border-radius: 12px;
    }
    .hero-bottom-card .hero-body { padding: 14px; }
    .hero-bottom-card .hero-title { font-size: 14px; }

    /* ── Category blocks ── */
    .cat-block { margin-bottom: 32px; }
    .cat-block-grid { grid-template-columns: 1fr; gap: 12px; }
    .cat-featured { aspect-ratio: unset; min-height: 220px; border-radius: 12px; }
    .cat-featured .cf-body { padding: 16px; }
    .cf-title { font-size: 15px; }

    /* List cards: horizontal row layout */
    .cat-list { gap: 8px; }
    .cat-list-card {
        display: flex; flex-direction: row;
        gap: 12px; padding: 10px 12px;
        border-radius: 10px;
        align-items: center;
    }
    .cat-list-card .cl-thumb {
        width: 80px; height: 80px;
        min-width: 80px; border-radius: 8px;
        flex-shrink: 0;
    }
    .cat-list-card .cl-body { flex: 1; min-width: 0; }
    .cl-title { font-size: 13px; -webkit-line-clamp: 3; }

    /* ── Popular section ── */
    .popular-section { margin-bottom: 32px; }
    .popular-grid { display: flex; flex-direction: column; gap: 10px; }
    .popular-img-card {
        width: 100%; aspect-ratio: unset; min-height: 180px;
        border-radius: 12px;
    }
    .popular-list-col { display: flex; flex-direction: column; gap: 8px; }
    .popular-list-item {
        padding: 12px; border-radius: 10px;
        min-height: 44px;
    }
    .popular-list-item .cl-thumb { width: 72px; height: 56px; border-radius: 8px; }
    .popular-list-rank { font-size: 22px; width: 28px; }
    .popular-title { font-size: 14px; }

    /* ── Mini cats row: stack vertically ── */
    .mini-cats-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
    .mini-cat-block { width: 100%; }
    .mini-cat-block:last-child { grid-column: span 1; }
    .mini-featured { aspect-ratio: unset; min-height: 200px; border-radius: 12px; margin-bottom: 8px; }
    .mini-featured .cf-body { padding: 14px; }
    .mini-featured .cf-title { font-size: 14px; }

    /* ── CTA ── */
    .cta-card { padding: 28px 20px; }
    .cta-content { flex-direction: column; text-align: center; gap: 20px; }
    .cta-icon-wrap { font-size: 44px; }
    .cta-title { font-size: 22px; }
    .cta-desc { font-size: 13px; }
    .cta-cats { justify-content: center; }
    .cta-btn { width: 100%; justify-content: center; padding: 15px 24px; font-size: 15px; }

    /* ── Footer ── */
    .site-footer { padding: 40px 16px 0; }
    .footer-main { grid-template-columns: 1fr; gap: 24px; padding-bottom: 28px; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 0 24px; }

    /* ── General ── */
    .back-to-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
    .page-title { font-size: 22px; }
    .article-title { font-size: 22px; }
    .article-body { font-size: 14px; }
    .content-card { padding: 18px 16px; }
    .recent-posts-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 15px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 430px (small mobile)
   ═══════════════════════════════════════ */
@media (max-width: 430px) {
    body { font-size: 14px; }
    .page-main { padding: 12px 12px 56px; }
    .nav-inner { padding: 0 12px; }
    .cat-nav-inner { padding: 7px 12px; }
    .hero-mega { min-height: 230px; }
    .hero-mega .hero-title { font-size: 18px; }
    .hero-side-card { min-height: 140px; }
    .hero-bottom-card { min-height: 130px; }
    .cat-list-card .cl-thumb { width: 72px; height: 72px; min-width: 72px; }
    .popular-img-card { min-height: 160px; }
    .mini-featured { min-height: 180px; }
    .cta-title { font-size: 20px; }
    .footer-col-title { font-size: 11px; }
}

/* ═══════════════════════════════════════
   HIDE MOBILE OVERLAY ON DESKTOP
   ═══════════════════════════════════════ */
@media (min-width: 769px) {
    .mobile-overlay { display: none !important; }
    .hamburger-btn { display: none; }
}

/* ═══════════════════════════════════════
   SKELETON LOADERS (dinamik render öncesi)
   2026-05-28 — Ana sayfa _posts.json'dan render edilirken
   içerik gelene kadar gösterilen iskelet placeholder'lar.
   ═══════════════════════════════════════ */
.home-skeleton { width: 100%; }
.hero-skeleton {
    display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px;
}
.skel-col { display: flex; flex-direction: column; gap: 16px; }
.skel-box {
    border-radius: 16px;
    background: linear-gradient(100deg, rgba(255,255,255,0.03) 30%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 70%);
    background-size: 200% 100%;
    animation: skelShimmer 1.4s ease-in-out infinite;
}
.skel-hero-mega { aspect-ratio: 16/11; }
.skel-hero-side { flex: 1; min-height: 150px; }
@keyframes skelShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
@media (max-width: 960px) {
    .hero-skeleton { grid-template-columns: 1fr; }
    .skel-col { flex-direction: row; }
}

