/* === İnönü Güncel - Premium Haber Sitesi CSS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Merriweather:wght@700;900&display=swap');

:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #fef2f2;
    --accent: #f59e0b;
    --bg: #f1f5f9;
    --surface: #ffffff;
    --text: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
    --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
    --shadow-xl: 0 20px 40px rgba(0,0,0,.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --max-width: 1320px;
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: var(--text); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */

/* Top Bar */
.header-top {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #94a3b8;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.header-top-inner { display: flex; justify-content: space-between; align-items: center; }
.header-date { display: flex; align-items: center; gap: 6px; }
.header-date::before { content: ''; display: inline-block; width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:.4; } }
.header-social { display: flex; gap: 4px; }
.header-social a {
    color: #94a3b8;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px;
    font-size: 12px; font-weight: 700;
    transition: all var(--transition);
    background: rgba(255,255,255,.05);
}
.header-social a:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }

/* Finance Ticker (topbar inline) */
.finance-ticker {
    display: none;
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 0 10px;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.finance-ticker-track {
    display: flex;
    align-items: center;
    gap: 6px;
    width: max-content;
    animation: financeScroll 30s linear infinite;
}
.finance-ticker:hover .finance-ticker-track { animation-play-state: paused; }
@keyframes financeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}
.fin-sep { color: rgba(255,255,255,.15); font-size: 10px; padding: 0 2px; flex-shrink: 0; }
.fin-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: rgba(255,255,255,.06);
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,.06);
    transition: background var(--transition);
    flex-shrink: 0;
}
.fin-item:hover { background: rgba(255,255,255,.12); }
.fin-name { color: #cbd5e1; font-weight: 600; font-size: 11px; letter-spacing: .3px; }
.fin-price { color: #f1f5f9; font-weight: 700; font-variant-numeric: tabular-nums; }
.fin-change { font-size: 11px; font-weight: 600; font-variant-numeric: tabular-nums; }
.fin-up { color: #4ade80; }
.fin-down { color: #f87171; }
.fin-stable { color: #94a3b8; }

/* Header Main */
.header-main {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.header-main-inner { display: flex; align-items: center; gap: 20px; }
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; display: block; transition: opacity var(--transition); }
.logo:hover .logo-img { opacity: .8; }

/* Search */
.search-form {
    display: flex;
    max-width: 420px;
    flex: 1;
    position: relative;
}
.search-form input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--border);
    border-radius: 50px 0 0 50px;
    font-size: 14px;
    outline: none;
    transition: all var(--transition);
    background: var(--bg);
    font-family: inherit;
}
.search-form input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(220,38,38,.1); }
.search-form button {
    padding: 12px 20px;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    border-left: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-size: 16px;
    transition: all var(--transition);
    display: flex; align-items: center;
}
.search-form button:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

/* Navigation */
.header-nav {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.header-nav .container { display: flex; align-items: center; justify-content: space-between; position: relative; }
.nav-inner { display: flex; overflow-x: auto; scrollbar-width: none; flex: 1; justify-content: center; }
.nav-inner::-webkit-scrollbar { display: none; }
.nav-link {
    color: #cbd5e1;
    padding: 14px 12px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
    position: relative;
    letter-spacing: .2px;
}
.nav-link:hover, .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,.06);
    border-bottom-color: var(--primary);
}
.nav-link:first-child { padding-left: 12px; }
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.mobile-menu-btn:hover { background: rgba(255,255,255,.1); }

/* ===== BREAKING NEWS TICKER ===== */
.breaking-bar {
    background: var(--primary);
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.breaking-label {
    background: var(--primary-dark);
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.breaking-label::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 0;
    bottom: 0;
    width: 16px;
    background: var(--primary-dark);
    transform: skewX(-12deg);
}
.breaking-pulse {
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-dot 1s infinite;
}
.breaking-ticker {
    flex: 1;
    overflow: hidden;
    padding: 0 16px;
}
.breaking-ticker-inner {
    display: flex;
    animation: ticker 6s linear infinite;
    white-space: nowrap;
}
.breaking-ticker-inner a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 32px;
    white-space: nowrap;
    opacity: .95;
}
.breaking-ticker-inner a:hover { opacity: 1; text-decoration: underline; color: #fff; }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SLIDER ===== */
.slider-section { margin-bottom: 36px; }
.slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
    background: #1e293b;
    box-shadow: var(--shadow-xl);
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.slide.active { opacity: 1; }
.slide-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}
.slide.active .slide-image { transform: scale(1.05); }
.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 40px;
    background: linear-gradient(transparent 0%, rgba(0,0,0,.3) 30%, rgba(0,0,0,.85) 100%);
}
.slide-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 14px;
}
.slide-title {
    font-family: 'Merriweather', serif;
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.slide-title a { color: #fff; }
.slide-title a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.slide-summary { color: #d1d5db; font-size: 15px; max-width: 600px; line-height: 1.5; }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all var(--transition);
    z-index: 2;
    border-radius: 50%;
}
.slider-btn:hover { background: rgba(255,255,255,.3); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}
.dot.active { background: #fff; transform: scale(1.2); border-color: rgba(255,255,255,.5); }
.dot:hover { background: rgba(255,255,255,.7); }

/* Slider progress bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    z-index: 3;
    animation: slider-progress 5s linear infinite;
}
@keyframes slider-progress { 0% { width:0; } 100% { width:100%; } }

/* ===== HOME GRID ===== */
.home-grid { display: grid; grid-template-columns: 1fr 380px; gap: 36px; }

/* Section Title */
.section-title {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--primary), transparent);
}
.section-title-icon {
    width: 32px; height: 32px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ===== NEWS CARDS ===== */
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.full-grid { grid-template-columns: repeat(3, 1fr); }

.news-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--border-light);
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}
.news-card-image {
    display: block;
    position: relative;
    height: 200px;
    overflow: hidden;
}
.news-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.08); }
.news-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,.15));
    pointer-events: none;
}
.news-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    z-index: 1;
    box-shadow: 0 2px 6px rgba(220,38,38,.3);
}
.news-card-body { padding: 18px 20px 20px; }
.news-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text);
}
.news-card-body h3 a { color: inherit; }
.news-card-body h3 a:hover { color: var(--primary); }
.news-card-summary {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.55;
}
.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}
.news-card-meta time { display: flex; align-items: center; gap: 4px; }
.news-card-meta time::before { content: ''; width:12px; height:12px; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") no-repeat center/contain; }

/* ===== SIDEBAR ===== */
.sidebar-box {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}
.sidebar-title {
    font-family: 'Merriweather', serif;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.sidebar-news-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}
.sidebar-news-item:hover { transform: translateX(4px); }
.sidebar-news-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sidebar-news-item img {
    width: 88px; height: 66px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.sidebar-news-item:hover img { transform: scale(1.05); }
.sidebar-news-item a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text);
}
.sidebar-news-item a:hover { color: var(--primary); }
.sidebar-news-item time { font-size: 12px; color: var(--text-muted); display: block; margin-top: 4px; }

/* Popular List */
.popular-list { list-style: none; counter-reset: popular; }
.popular-list li {
    counter-increment: popular;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all var(--transition);
}
.popular-list li:hover { transform: translateX(4px); }
.popular-list li:last-child { border-bottom: none; }
.popular-list li::before {
    content: counter(popular);
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    opacity: .2;
    line-height: 1;
    min-width: 28px;
    text-align: center;
    flex-shrink: 0;
}
.popular-list li:nth-child(1)::before { opacity: .4; color: #ef4444; }
.popular-list li:nth-child(2)::before { opacity: .35; color: #f97316; }
.popular-list li:nth-child(3)::before { opacity: .3; color: #eab308; }
.popular-list li a { font-size: 14px; font-weight: 600; line-height: 1.45; color: var(--text); }
.popular-list li a:hover { color: var(--primary); }
.view-count { font-size: 12px; color: var(--text-muted); display: block; margin-top: 2px; }

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}
.empty-state-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: .5;
}
.empty-state h3 { font-size: 20px; color: var(--text-secondary); margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); font-size: 15px; }

/* ===== DETAIL ===== */
.detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 36px; }
.news-detail {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}
.detail-header { margin-bottom: 28px; }
.detail-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 5px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: .3px;
}
.detail-header h1 {
    font-family: 'Merriweather', serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 14px;
    color: var(--text);
}
.detail-meta {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.detail-image {
    margin-bottom: 28px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.detail-image img { width: 100%; display: block; }
.detail-summary {
    background: linear-gradient(135deg, #fef3c7, #fef9c3);
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 28px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    color: #92400e;
}
.detail-content { font-size: 16.5px; line-height: 1.85; color: var(--text-secondary); }
.detail-content p { margin-bottom: 18px; }
.detail-content img { border-radius: var(--radius-sm); margin: 20px 0; box-shadow: var(--shadow-md); }

/* Tags */
.detail-tags { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.tag {
    display: inline-block;
    background: var(--bg);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin: 4px 4px 4px 0;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.tag:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }

.detail-source { margin-top: 16px; font-size: 14px; color: var(--text-muted); }
.detail-source a { color: var(--primary); font-weight: 600; }

/* Share Buttons */
.share-buttons {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.share-buttons strong { font-size: 14px; color: var(--text-muted); }
.share-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    transition: all var(--transition);
}
.share-buttons a:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.share-buttons a:nth-child(2) { background: #1da1f2; }
.share-buttons a:nth-child(3) { background: #1877f2; }
.share-buttons a:nth-child(4) { background: #25d366; }

/* ===== PAGE TITLE ===== */
.page-title {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: none;
    position: relative;
}
.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.page-link {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.page-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-link.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 12px rgba(220,38,38,.3); }

/* ===== ERROR PAGE ===== */
.error-page { text-align: center; padding: 100px 20px; }
.error-page h1 {
    font-family: 'Merriweather', serif;
    font-size: 100px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.error-page p { font-size: 18px; color: var(--text-muted); margin: 16px 0 28px; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(220,38,38,.3);
}
.btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); color: #fff; }

/* ===== FOOTER ===== */
/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #94a3b8;
    padding: 64px 0 0;
    margin-top: 56px;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), #3b82f6, var(--primary));
    background-size: 200% 100%;
    animation: footerGradient 6s linear infinite;
}
@keyframes footerGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    display: block;
    margin-bottom: 20px;
}
.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: opacity var(--transition);
}
.footer-logo-img:hover { opacity: .8; }
.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    max-width: 340px;
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 8px;
}
.footer-social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    color: #94a3b8;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220,38,38,.3);
}
.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .8px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.footer-col ul { list-style: none; }
.footer-col-categories ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    color: #94a3b8;
    font-size: 14px;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul a::before {
    content: '';
    width: 5px; height: 5px;
    background: #334155;
    border-radius: 50%;
    transition: all var(--transition);
    flex-shrink: 0;
}
.footer-col ul a:hover { color: #fff; transform: translateX(4px); }
.footer-col ul a:hover::before { background: var(--primary); box-shadow: 0 0 8px rgba(220,38,38,.5); }
.footer-contact { margin-bottom: 20px; }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}
.footer-contact-item svg { color: var(--primary); flex-shrink: 0; }
.footer-contact-item a { color: #94a3b8; transition: color var(--transition); }
.footer-contact-item a:hover { color: #fff; }
.footer-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(220,38,38,.1);
    border: 1px solid rgba(220,38,38,.2);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #fca5a5;
}
.footer-app-badge svg { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.apridev-link { font-weight: 700; font-size: 14px; letter-spacing: .5px; transition: opacity var(--transition); }
.apridev-link:hover { opacity: .8; }

/* ===== MAIN ===== */
.site-main { padding: 36px 0; min-height: 60vh; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px; height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(220,38,38,.4);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 99;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); background: var(--primary-dark); }

/* Header Shortcuts */
.header-shortcuts {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.header-shortcut {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition);
    text-decoration: none;
    border: 1px solid var(--border);
}
.header-shortcut:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.shortcut-icon { border-radius: 4px; object-fit: contain; flex-shrink: 0; }
.header-shortcut-pharmacy {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}
.header-shortcut-pharmacy:hover { background: #dcfce7; color: #166534; }
.header-shortcut-gold {
    background: #fffbeb;
    color: #92400e;
    border-color: #fde68a;
}
.header-shortcut-gold:hover { background: #fef3c7; color: #92400e; }

/* ===== PHARMACY PAGE ===== */
.pharmacy-page { padding: 32px 0; }
.pharmacy-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.pharmacy-icon {
    width: 84px; height: 84px;
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background: #fff;
    padding: 8px;
    box-shadow: 0 8px 24px rgba(220,38,38,.15);
    border: 1px solid var(--border);
}
.pharmacy-title {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 4px;
}
.pharmacy-date {
    display: flex; align-items: center; gap: 6px;
    color: var(--text-muted);
    font-size: 14px;
}
.pharmacy-source {
    display: flex; align-items: center; gap: 6px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 13px;
    color: #166534;
    margin-bottom: 28px;
}
.pharmacy-section { margin-bottom: 36px; }
.pharmacy-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pharmacy-section-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .3px;
}
.pharmacy-section-badge.merkez { background: linear-gradient(135deg, #22c55e, #16a34a); }
.pharmacy-section-badge.eski { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.pharmacy-count {
    margin-left: auto;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}
.pharmacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 16px;
}
.pharmacy-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 16px;
    transition: all var(--transition);
    position: relative;
}
.pharmacy-card:hover {
    border-color: #22c55e;
    box-shadow: 0 4px 20px rgba(34,197,94,.12);
    transform: translateY(-2px);
}
.pharmacy-card-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background: #fff;
    padding: 4px;
    border: 1px solid var(--border-light);
}
.pharmacy-card-body { flex: 1; min-width: 0; }
.pharmacy-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}
.pharmacy-address {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}
.pharmacy-address svg { flex-shrink: 0; margin-top: 2px; color: var(--text-muted); }
.pharmacy-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #22c55e;
    padding: 6px 14px;
    background: #f0fdf4;
    border-radius: 20px;
    transition: all var(--transition);
}
.pharmacy-phone:hover { background: #22c55e; color: #fff; }
.pharmacy-status {
    position: absolute;
    top: 16px;
    right: 16px;
}
.pharmacy-open-badge {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #22c55e;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: .3px;
    text-transform: uppercase;
}
.pharmacy-pulse {
    width: 6px; height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
.pharmacy-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}
.pharmacy-empty svg { margin-bottom: 16px; }
.pharmacy-empty h3 { font-size: 18px; color: var(--text-secondary); margin-bottom: 8px; }
.pharmacy-empty a { color: var(--primary); text-decoration: underline; }
.pharmacy-subtitle { font-size: 15px; color: var(--text-secondary); margin-bottom: 2px; }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    padding: 16px 0 0;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--text-secondary); font-weight: 500; }

/* Pharmacy SEO Content */
.pharmacy-seo-content {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.pharmacy-seo-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}
.pharmacy-seo-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin: 28px 0 14px;
}
.pharmacy-seo-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.pharmacy-faq {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    transition: border-color var(--transition);
}
.pharmacy-faq:hover { border-color: var(--primary); }
.pharmacy-faq[open] { border-color: var(--primary); }
.pharmacy-faq summary {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pharmacy-faq summary::-webkit-details-marker { display: none; }
.pharmacy-faq summary::after { content: '+'; font-size: 18px; color: var(--text-muted); font-weight: 400; }
.pharmacy-faq[open] summary::after { content: '-'; }
.pharmacy-faq p {
    padding: 0 18px 14px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}


/* ===== GOLD PAGE ===== */
.gold-page { padding: 32px 0; }
.gold-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}
.gold-header-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, #f59e0b, #d97706, #b45309);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 28px rgba(245,158,11,.3);
}
.gold-header-icon span {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0,0,0,.3);
}
.gold-title {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 4px;
}
.gold-subtitle { font-size: 15px; color: var(--text-secondary); }

/* Spot Cards */
.gold-spots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.gold-spot-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border: 1px solid rgba(245,158,11,.15);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gold-spot-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
}
.gold-spot-label {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.gold-spot-value {
    font-size: 28px;
    font-weight: 800;
    color: #fbbf24;
    font-variant-numeric: tabular-nums;
    font-family: 'Inter', monospace;
    line-height: 1.2;
}
.gold-spot-unit {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}
.gold-spot-time .gold-spot-value { color: #fff; font-size: 24px; }
.gold-live-dot {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    color: #4ade80;
    font-weight: 600;
}
.gold-pulse {
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

/* Table */
.gold-table-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}
.gold-table-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.gold-th-buy { text-align: right; color: #fca5a5; }
.gold-th-sell { text-align: right; color: #86efac; }
.gold-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
    transition: background var(--transition);
}
.gold-row:last-child { border-bottom: none; }
.gold-row:hover { background: #fffbeb; }
.gold-row:nth-child(even) { background: var(--bg); }
.gold-row:nth-child(even):hover { background: #fffbeb; }
.gold-row-flash { animation: goldFlash .6s ease; }
@keyframes goldFlash {
    0% { background: rgba(245,158,11,.15); }
    100% { background: transparent; }
}
.gold-row-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text);
    font-size: 15px;
}
.gold-row-icon-img {
    width: 28px; height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}
.gold-row-buy {
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}
.gold-row-sell {
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    color: #16a34a;
    font-variant-numeric: tabular-nums;
}

/* Source & SEO */
.gold-source {
    display: flex; align-items: center; gap: 6px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 13px;
    color: #92400e;
    margin-bottom: 28px;
}
.gold-seo-content {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.gold-seo-content h2 {
    font-size: 20px; font-weight: 700;
    color: var(--text); margin-bottom: 12px;
}
.gold-seo-content p {
    font-size: 14px; line-height: 1.8;
    color: var(--text-secondary); margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .home-grid, .detail-grid { grid-template-columns: 1fr; }
    .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-col-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .header-date { font-size: 11px; }
    .header-social a { width: 26px; height: 26px; }
    .header-social a svg { width: 12px; height: 12px; }
    .finance-ticker { display: none !important; }
    .gold-spots { grid-template-columns: 1fr; gap: 10px; }
    .gold-spot-card { padding: 14px 18px; }
    .gold-spot-value { font-size: 22px; }
    .gold-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .gold-header-icon { width: 56px; height: 56px; }
    .gold-header-icon span { font-size: 18px; }
    .gold-title { font-size: 22px; }
    .gold-table-header { padding: 10px 14px; font-size: 11px; }
    .gold-row { padding: 12px 14px; }
    .gold-row-name { font-size: 13px; gap: 8px; }
    .gold-row-icon-img { width: 24px; height: 24px; }
    .gold-row-buy, .gold-row-sell { font-size: 14px; }
    .breaking-ticker-inner { animation-duration: 4s; }
    .breaking-label { padding: 8px 12px; font-size: 11px; }
    .breaking-ticker-inner a { font-size: 12px; padding: 8px 24px; }
    .slider { height: 340px; border-radius: var(--radius); }
    .slide-title { font-size: 22px; }
    .slide-overlay { padding: 28px 24px; }
    .slide-summary { display: none; }
    .news-grid, .full-grid { grid-template-columns: 1fr; }
    .sidebar { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-col-brand { text-align: center; }
    .footer-col-brand .footer-logo { margin-bottom: 16px; }
    .footer-col-brand .footer-logo-img { margin: 0 auto; }
    .footer-col-brand .footer-desc { margin: 0 auto 20px; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-col:not(.footer-col-brand) { text-align: center; }
    .footer-col ul a { justify-content: center; }
    .footer-contact-item { justify-content: center; }
    .footer-app-badge { margin: 0 auto; }
    .header-main-inner { flex-direction: column; gap: 12px; }
    .header-shortcuts { width: 100%; justify-content: center; }
    .header-shortcut { padding: 8px 12px; font-size: 11px; }
    .shortcut-icon { width: 18px !important; height: 18px !important; }
    .search-form { max-width: 100%; width: 100%; }
    .logo-img { height: 38px; }
    .mobile-menu-btn { display: block; }
    .nav-inner {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e293b;
        z-index: 99;
        box-shadow: var(--shadow-lg);
    }
    .nav-inner.open { display: flex; }
    .nav-link { padding: 14px 20px; border-bottom: 1px solid #334155; border-left: 3px solid transparent; }
    .nav-link:hover { border-left-color: var(--primary); border-bottom-color: #334155; }
    .pharmacy-grid { grid-template-columns: 1fr; }
    .pharmacy-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .pharmacy-title { font-size: 22px; }
    .pharmacy-icon { width: 56px; height: 56px; }
    .pharmacy-icon svg { width: 32px; height: 32px; }
    .detail-header h1 { font-size: 24px; }
    .news-detail { padding: 24px; border-radius: var(--radius); }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .breaking-label { font-size: 11px; padding: 8px 12px; }
    .slider-btn { width: 36px; height: 36px; font-size: 14px; }
    .page-title { font-size: 22px; }
}

@media (max-width: 480px) {
    .slider { height: 280px; }
    .slide-title { font-size: 18px; }
    .news-card-image { height: 160px; }
    .news-card-body { padding: 14px 16px 16px; }
    .share-buttons a { padding: 6px 12px; font-size: 12px; }
}
