/* ============================================================
   AmedSpor - FOTOMAÇ TARZI Modern Spor Sitesi CSS
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --secondary: #1d3557;
    --secondary-dark: #0a1a2e;
    --accent: #ffd60a;
    --live-green: #06d6a0;
    --live-green-dark: #058f6a;
    --gray-50: #fafbfc;
    --gray-100: #f4f6f8;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --success: #06d6a0;
    --warning: #ffb700;
    --danger: #ef233c;
    --info: #3b82f6;
    
    --font-display: 'Anton', 'Bebas Neue', Impact, sans-serif;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --radius: 6px;
    --radius-lg: 10px;
    --radius-xl: 14px;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 45px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-800);
    background: #f4f6f8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

/* ============================================================
   ÜST BAR - CANLI SKOR + KAYAN MAÇLAR (Fotomaç Tarzı)
   ============================================================ */
.livescore-bar {
    display: flex;
    align-items: stretch;
    background: var(--secondary);
    color: white;
    height: 56px;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.livescore-cta {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--live-green) 0%, var(--live-green-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.5px;
    transition: filter 0.2s;
    cursor: pointer;
    text-transform: uppercase;
    border-right: 2px solid rgba(0,0,0,0.1);
}
.livescore-cta:hover { filter: brightness(1.1); }
.livescore-cta small { 
    font-size: 11px; 
    font-weight: 700; 
    opacity: 0.95;
    display: block;
    margin-top: 2px;
}

.livescore-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}

.livescore-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: tickerScroll 90s linear infinite;
    will-change: transform;
}
.livescore-ticker:hover .livescore-track { animation-play-state: paused; }

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

.ticker-match {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
    height: 56px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}
.ticker-match:hover { background: rgba(255,255,255,0.05); }
.ticker-match.live { background: rgba(6,214,160,0.1); }

.ticker-date {
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 500;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.ticker-match.live .ticker-date { color: var(--live-green); font-weight: 700; }

.ticker-live-dot {
    width: 8px; height: 8px;
    background: var(--live-green);
    border-radius: 50%;
    display: inline-block;
    animation: livePulse 1.2s infinite;
}
@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(6,214,160,0.7); }
    50% { box-shadow: 0 0 0 6px rgba(6,214,160,0); }
}

.ticker-home, .ticker-away {
    font-weight: 600;
    color: white;
    font-size: 13px;
}
.ticker-home { text-align: right; }

.ticker-logo, .ticker-logo-placeholder {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}
.ticker-logo-placeholder {
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.ticker-score {
    background: rgba(0,0,0,0.3);
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 4px;
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.5px;
}
.ticker-match.live .ticker-score {
    background: var(--live-green);
    color: white;
}

.ticker-empty {
    padding: 0 20px;
    color: var(--gray-400);
    font-size: 13px;
    font-style: italic;
}

.livescore-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(255,255,255,0.1);
}
.livescore-action {
    width: 50px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
    font-size: 16px;
    border-left: 1px solid rgba(255,255,255,0.05);
}
.livescore-action:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}
.livescore-search {
    background: var(--primary);
    color: white;
}
.livescore-search:hover {
    background: var(--primary-dark);
    color: white;
}

@media (max-width: 992px) {
    .livescore-bar { height: 50px; }
    .livescore-cta { padding: 0 14px; font-size: 11px; }
    .livescore-cta small { font-size: 9px; }
    .ticker-match { padding: 0 14px; height: 50px; gap: 6px; }
    .ticker-date { display: none; }
    .ticker-logo { width: 18px; height: 18px; }
    .livescore-actions .livescore-action:not(.livescore-search) { display: none; }
    .livescore-action { width: 50px; height: 50px; }
}
@media (max-width: 576px) {
    .livescore-bar { height: 46px; }
    .livescore-cta { padding: 0 10px; font-size: 10px; line-height: 1.1; }
    .livescore-cta small { font-size: 8px; }
    .ticker-match { height: 46px; padding: 0 10px; font-size: 11px; gap: 5px; }
    .ticker-score { font-size: 11px; padding: 3px 7px; }
    .livescore-action { width: 44px; height: 46px; }
}

/* ============================================================
   ANA HEADER - LOGO + MENÜ (Fotomaç tarzı)
   ============================================================ */
.main-header {
    background: var(--secondary);
    color: white;
    border-bottom: 4px solid var(--primary);
    position: relative;
    z-index: 100;
}
.main-header-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 16px 16px;
    max-width: 1280px;
    margin: 0 auto;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    text-decoration: none;
}
.brand-text {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 0.9;
    letter-spacing: 1px;
    color: white;
    text-transform: lowercase;
    font-weight: 400;
    font-style: italic;
}
.brand-text-accent {
    color: var(--accent);
    font-weight: 400;
}
.brand-tagline {
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 4px;
}

.menu-trigger {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    margin-left: auto;
}
.menu-trigger span {
    display: block;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: 0.2s;
}

.main-nav {
    flex: 1;
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.main-nav li a {
    display: block;
    padding: 12px 16px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    position: relative;
    text-transform: uppercase;
}
.main-nav li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.2s;
}
.main-nav li a:hover { color: var(--accent); }
.main-nav li a:hover::after { width: 60%; }

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
}
.mobile-menu-overlay.show { display: block; }

@media (max-width: 992px) {
    .main-header-inner { padding: 12px 16px; gap: 16px; }
    .brand-text { font-size: 36px; }
    .brand-tagline { font-size: 9px; }
    .menu-trigger { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--secondary-dark);
        overflow-y: auto;
        transition: right 0.3s;
        z-index: 100;
        padding-top: 60px;
    }
    .main-nav.show { right: 0; }
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .main-nav li a {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
}
@media (max-width: 576px) {
    .brand-text { font-size: 30px; }
    .brand-tagline { display: none; }
}

/* ============================================================
   FOTOMAÇ TARZI NUMARALI MANŞET GRID
   ============================================================ */
.headlines-section {
    padding: 20px 0 30px;
    background: var(--gray-100);
}

.headlines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* Birinci haber 2x büyük */
.headline-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.headline-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--secondary);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.headline-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.headline-card:nth-child(1) {
    aspect-ratio: auto;
}

.headline-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.headline-card:hover .headline-image { transform: scale(1.05); }

/* Sol-alt ÜZERINE GRADIENT */
.headline-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0,0,0,0.4) 65%, rgba(0,0,0,0.85) 95%);
    z-index: 1;
}

/* Sarı bant - başlığın altındaki */
.headline-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12%;
    background: linear-gradient(90deg, var(--accent) 0%, #ffea4a 100%);
    z-index: 2;
}

.headline-content {
    position: absolute;
    bottom: 12%;
    left: 0;
    right: 0;
    padding: 16px 14px 14px;
    z-index: 3;
}

.headline-title {
    font-family: var(--font-display);
    color: white;
    font-size: 15px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 6px;
}

.headline-card:nth-child(1) .headline-title {
    font-size: 32px;
}

/* Alt başlık - sarı bantta */
.headline-subtitle {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12%;
    z-index: 3;
    padding: 0 14px;
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    color: var(--secondary);
    font-size: 12px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    overflow: hidden;
}
.headline-card:nth-child(1) .headline-subtitle {
    font-size: 22px;
    padding: 0 24px;
}

/* Numara */
.headline-number {
    position: absolute;
    bottom: 12%;
    left: 12px;
    transform: translateY(50%);
    z-index: 4;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(230,57,70,0.4);
    line-height: 1;
}
.headline-card:nth-child(1) .headline-number {
    width: 40px;
    height: 40px;
    font-size: 22px;
    left: 16px;
}

/* Kategori etiketi (sağ üst) */
.headline-category {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sayı şeridi (haberlerin altında) */
.headlines-numbers {
    display: flex;
    gap: 4px;
    margin-top: 14px;
    padding: 10px 14px;
    background: var(--secondary);
    border-radius: var(--radius);
    overflow-x: auto;
    scrollbar-width: thin;
}
.headlines-numbers a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 32px;
    border-radius: 4px;
    color: white;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    background: rgba(255,255,255,0.08);
    transition: all 0.2s;
    flex-shrink: 0;
}
.headlines-numbers a:hover {
    background: rgba(255,255,255,0.15);
}
.headlines-numbers a.active {
    background: var(--primary);
    color: white;
}

@media (max-width: 992px) {
    .headlines-grid { grid-template-columns: repeat(2, 1fr); }
    .headline-card:nth-child(1) { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16/10; }
    .headline-card { aspect-ratio: 4/5; }
    .headline-card:nth-child(1) .headline-title { font-size: 24px; }
    .headline-card:nth-child(1) .headline-subtitle { font-size: 18px; }
    .headline-title { font-size: 14px; }
}
@media (max-width: 576px) {
    .headlines-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .headline-card { aspect-ratio: 1/1; }
    .headline-card:nth-child(1) { aspect-ratio: 4/3; }
    .headline-card:nth-child(1) .headline-title { font-size: 18px; }
    .headline-card:nth-child(1) .headline-subtitle { font-size: 14px; padding: 0 14px; }
    .headline-title { font-size: 11px; }
    .headline-subtitle { font-size: 10px; }
    .headline-number { width: 22px; height: 22px; font-size: 12px; }
    .headline-card:nth-child(1) .headline-number { width: 30px; height: 30px; font-size: 16px; }
    .headline-category { padding: 3px 6px; font-size: 8px; }
}

/* ============================================================
   SON DAKİKA TICKER
   ============================================================ */
.breaking-news {
    background: var(--primary);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}
.breaking-news-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}
.breaking-label {
    flex-shrink: 0;
    background: white;
    color: var(--primary);
    padding: 6px 14px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.breaking-label i { animation: pulse 1s infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.breaking-content {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}
.breaking-track {
    display: inline-block;
    animation: tickerScroll 50s linear infinite;
}
.breaking-track a {
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-right: 50px;
}
.breaking-track a:hover { text-decoration: underline; }

/* ============================================================
   ANA İÇERİK (sol haberler + sağ sidebar)
   ============================================================ */
.main-content {
    padding: 20px 0;
    background: #f4f6f8;
}
.layout-2col {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
}
@media (max-width: 992px) {
    .layout-2col { grid-template-columns: 1fr; }
}

/* Bölüm başlığı */
.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary);
}
.section-title h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--secondary);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}
.section-title .more {
    margin-left: auto;
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title .more:hover { text-decoration: underline; }
.section-title .accent-bar {
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 2px;
}

/* Haber kartları */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}
@media (max-width: 768px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.news-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--gray-200);
    display: block;
}
.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.news-card:hover .news-card-image img { transform: scale(1.05); }
.news-card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.news-card-body {
    padding: 14px 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.35;
    color: var(--secondary);
    margin-bottom: 8px;
    flex: 1;
}
.news-card-title a { color: inherit; transition: color 0.2s; }
.news-card-title a:hover { color: var(--primary); }
.news-card-summary {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: var(--gray-500);
    padding-top: 10px;
    border-top: 1px solid var(--gray-100);
}
.news-card-meta i { margin-right: 4px; }

/* Liste haberi (yatay görsel + içerik) */
.news-list-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: var(--shadow-xs);
    transition: 0.2s;
}
.news-list-item:hover { box-shadow: var(--shadow); }
.news-list-item .news-card-image { aspect-ratio: 4/3; }
.news-list-item .news-card-body { padding: 16px 16px 16px 0; }

@media (max-width: 576px) {
    .news-list-item { grid-template-columns: 120px 1fr; }
    .news-list-item .news-card-title { font-size: 14px; }
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-widget {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-xs);
}
.widget-header {
    background: var(--secondary);
    color: white;
    padding: 12px 16px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.widget-header i { color: var(--accent); }
.widget-body { padding: 14px; }

.popular-list { padding: 0; }
.popular-item {
    display: flex;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.2s;
}
.popular-item:hover { background: var(--gray-50); }
.popular-item:last-child { border-bottom: none; }
.popular-number {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary);
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    min-width: 30px;
}
.popular-title {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 600;
    line-height: 1.4;
}
.popular-title:hover { color: var(--primary); }

/* Puan durumu tablosu */
.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.standings-table thead { background: var(--gray-100); }
.standings-table th {
    padding: 8px 6px;
    font-size: 11px;
    color: var(--gray-700);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.standings-table td {
    padding: 8px 6px;
    border-bottom: 1px solid var(--gray-100);
    text-align: center;
}
.standings-table .team-name {
    text-align: left;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}
.standings-table .team-logo {
    width: 18px; height: 18px;
    background: var(--gray-200);
    border-radius: 50%;
    flex-shrink: 0;
}
.standings-table .standings-position {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--gray-700);
}
.standings-table .champion { background: rgba(6,214,160,0.06); }
.standings-table .champion .standings-position { color: var(--success); font-weight: 700; }
.standings-table .relegation { background: rgba(239,35,60,0.06); }
.standings-table .relegation .standings-position { color: var(--danger); font-weight: 700; }

/* Canlı maç kartı */
.match-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 10px 12px;
    margin-bottom: 8px;
    transition: 0.2s;
}
.match-card:hover { border-color: var(--primary); }
.match-card.live { border-left: 3px solid var(--live-green); background: rgba(6,214,160,0.03); }
.match-status {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--gray-500);
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 600;
}
.match-time { color: var(--secondary); font-weight: 700; }
.match-time.live {
    color: var(--live-green);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.match-time.live::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--live-green);
    border-radius: 50%;
    display: inline-block;
    animation: livePulse 1s infinite;
}
.match-teams {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    gap: 6px;
    align-items: center;
}
.match-team {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.match-team.away { text-align: left; }
.match-score {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--primary);
    text-align: center;
    background: var(--gray-100);
    padding: 4px 0;
    border-radius: 4px;
}

/* ============================================================
   HABER DETAY SAYFASI
   ============================================================ */
.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-600);
    margin: 16px 0;
    flex-wrap: wrap;
}
.article-breadcrumb a { color: var(--gray-600); transition: 0.2s; }
.article-breadcrumb a:hover { color: var(--primary); }
.article-breadcrumb i { font-size: 9px; opacity: 0.5; }

.article-container {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xs);
}
.article-header { padding: 30px 30px 20px; }
.article-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: white;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.article-title {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1.15;
    color: var(--secondary);
    margin-bottom: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.article-summary {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: 16px;
    font-weight: 500;
}
.article-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--gray-600);
    padding: 12px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.article-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.article-meta-item i { color: var(--primary); }

.article-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--gray-200);
}

.article-content {
    padding: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-800);
}
.article-content p { margin-bottom: 16px; }
.article-content p:first-child::first-letter {
    font-family: var(--font-display);
    font-size: 56px;
    float: left;
    line-height: 0.85;
    padding: 4px 8px 0 0;
    color: var(--primary);
    font-weight: 400;
}
.article-content h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--secondary);
    margin: 24px 0 12px;
    font-weight: 800;
}
.article-content h3 { font-size: 18px; color: var(--secondary); margin: 18px 0 10px; font-weight: 700; }
.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 14px 20px;
    background: var(--gray-50);
    margin: 18px 0;
    font-style: italic;
    color: var(--gray-700);
}
.article-content a { color: var(--primary); font-weight: 600; }
.article-content a:hover { text-decoration: underline; }
.article-content img {
    border-radius: var(--radius);
    margin: 14px 0;
    box-shadow: var(--shadow);
}
.article-content ul, .article-content ol { margin: 14px 0; padding-left: 24px; }
.article-content li { margin-bottom: 6px; }

.article-source {
    padding: 12px 16px;
    background: var(--gray-50);
    border-left: 3px solid var(--gray-300);
    border-radius: 4px;
    font-size: 13px;
    color: var(--gray-600);
    margin: 20px 0;
}
.article-source a { color: var(--primary); font-weight: 600; }

.article-tags {
    padding: 0 30px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.article-tag {
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 14px;
    font-size: 12px;
    transition: 0.2s;
}
.article-tag:hover { background: var(--primary); color: white; }

.share-bar {
    display: flex;
    gap: 6px;
    padding: 16px 30px;
    border-top: 1px solid var(--gray-200);
    align-items: center;
}
.share-bar strong { color: var(--gray-700); font-size: 13px; margin-right: 6px; }
.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: 0.2s;
}
.share-btn:hover { transform: translateY(-2px); }
.share-fb { background: #1877f2; }
.share-tw { background: #000; }
.share-wa { background: #25d366; }
.share-tg { background: #0088cc; }
.share-in { background: #0a66c2; }
.share-cp { background: var(--gray-600); }

/* Yorumlar */
.comments-section {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xs);
}
.comments-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.comment-form {
    background: var(--gray-50);
    padding: 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}
.form-input, .form-textarea {
    width: 100%;
    padding: 10px 14px;
    background: white;
    border: 1.5px solid var(--gray-200);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    margin-bottom: 10px;
    transition: 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--primary); }
.form-textarea { min-height: 100px; resize: vertical; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }

.comment {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}
.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}
.comment-author { font-weight: 700; color: var(--secondary); }
.comment-date { font-size: 12px; color: var(--gray-500); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--secondary);
    color: white;
    padding: 40px 0 0;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    transition: 0.2s;
}
.footer-col ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.2s;
}
.footer-social a:hover { background: var(--primary); }
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 30px 0;
}
.pagination a, .pagination span {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    background: white;
    color: var(--gray-700);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
    box-shadow: var(--shadow-xs);
}
.pagination a:hover { background: var(--primary); color: white; }
.pagination .active { background: var(--primary); color: white; }

/* ============================================================
   ALERT
   ============================================================ */
.alert {
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.alert-success { background: rgba(6,214,160,0.1); color: #0a8f6a; border-left: 4px solid var(--success); }
.alert-danger { background: rgba(239,35,60,0.1); color: #c01827; border-left: 4px solid var(--danger); }
.alert-warning { background: rgba(255,183,0,0.15); color: #936a00; border-left: 4px solid var(--warning); }
.alert-info { background: rgba(59,130,246,0.1); color: #1e5fbf; border-left: 4px solid var(--info); }

/* ============================================================
   TOAST + Scroll Top
   ============================================================ */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transform: translateX(150%);
    transition: 0.3s;
}
.toast.show { transform: translateX(0); }

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 90;
    box-shadow: var(--shadow);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

.fade-in { animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   404 ve Search
   ============================================================ */
.search-box {
    display: flex;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}
.search-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 14px;
}
.search-btn {
    padding: 0 20px;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
}


/* ============================================================
   ESKI CLASS'LARLA UYUMLULUK + EK STİLLER
   ============================================================ */

/* Form Grid & Groups */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; color: var(--gray-700); font-weight: 600; margin-bottom: 6px; }
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-text { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

/* Section başlığı (alternatif) */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary);
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Article (haber detay) - eski class uyumluluğu */
.article-header {
    padding: 24px 0 16px;
}
.article-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--gray-600);
    margin-top: 10px;
    flex-wrap: wrap;
}
.article-stats i { color: var(--primary); margin-right: 4px; }
.article-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.author-info strong {
    display: block;
    font-size: 14px;
    color: var(--secondary);
}
.author-info span {
    font-size: 11px;
    color: var(--gray-500);
}
.article-featured-image {
    margin: 0 -30px 24px;
    position: relative;
}
.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}
.article-image-caption {
    padding: 8px 30px;
    background: var(--gray-50);
    font-size: 12px;
    color: var(--gray-600);
    font-style: italic;
    text-align: center;
}

/* Share buttons (eski class) */
.article-share {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 30px;
    border-top: 1px solid var(--gray-200);
    flex-wrap: wrap;
}
.share-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.share-label {
    font-weight: 700;
    color: var(--gray-700);
    font-size: 13px;
    margin-right: 6px;
}
.share-facebook, .share-twitter, .share-whatsapp, .share-telegram, .share-linkedin, .share-copy {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: transform 0.2s;
    cursor: pointer;
}
.share-facebook:hover, .share-twitter:hover, .share-whatsapp:hover,
.share-telegram:hover, .share-linkedin:hover, .share-copy:hover {
    transform: translateY(-3px);
}
.share-facebook { background: #1877f2; }
.share-twitter { background: #000; }
.share-whatsapp { background: #25d366; }
.share-telegram { background: #0088cc; }
.share-linkedin { background: #0a66c2; }
.share-copy { background: var(--gray-600); }

/* Comments alternative classes */
.comment-list { margin-top: 20px; }
.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gray-500), var(--gray-700));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.comment-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-top: 4px;
}

/* Tag pill */
.tag-pill {
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 14px;
    font-size: 12px;
    transition: 0.2s;
    display: inline-block;
}
.tag-pill:hover { background: var(--primary); color: white; }

/* Popular widget alternative */
.popular-rank {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary);
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    min-width: 30px;
}
.popular-content { flex: 1; }
.popular-meta {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Sidebar (eski) */
.sidebar { display: contents; }

/* Widget title */
.widget-title {
    background: var(--secondary);
    color: white;
    padding: 12px 16px;
    font-family: var(--font-display);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter alternative */
.newsletter-form input[type=email] {
    padding: 10px 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: white;
    font-size: 13px;
    outline: none;
    width: 100%;
}
.newsletter-form input[type=email]::placeholder { color: rgba(255,255,255,0.5); }

/* Btn Large */
.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

/* Main layout */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    padding: 20px 0;
}
@media (max-width: 992px) {
    .main-layout { grid-template-columns: 1fr; }
}

/* Text utilities */
.text-center { text-align: center; }
.success-illus {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--success), #0a8f6a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

/* Footer color override - sosyal medya */
.site-footer .footer-social a { color: white; }

/* Compact news card için */
.news-card-image img { background: var(--gray-200); }

/* Genel reset bazı durumlar için */
.alert i:first-child { flex-shrink: 0; font-size: 18px; }
.alert div { flex: 1; }
.alert strong { display: block; margin-bottom: 2px; }

/* Article container ekstra fix */
.article-container { padding: 0; }
.article-container .container { max-width: 880px; }

/* iletisim form düzeni */
.form-input, .form-textarea {
    width: 100%;
    padding: 10px 14px;
    background: white;
    border: 1.5px solid var(--gray-200);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--primary); }
.form-textarea { min-height: 100px; resize: vertical; }

