/* =================================================================== */
/* PRESTİJ LİG - FİNAL STİL DOSYASI (override-styles.css) v5.0         */
/* Tüm site için birleşik ve tutarlı stil şablonu.                   */
/* =================================================================== */

/* BÖLÜM 1: TEMEL DEĞİŞKENLER VE GENEL AYARLAR */
:root { 
    --bg-body: #f4f6f9;
    --bg-card: #FFFFFF;
    --border-color: #E9ECEF;
    --dark-color: #1a1d20;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-light: #FFFFFF;
    --accent-primary: #0A192F;
    --accent-color: #3182CE;
    --accent-secondary: #FF7B00;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 8px 24px rgba(0, 0, 0, 0.08);
    --red: #DC3545;
    --yellow: #ffc107;	
    --rank1-color: #ffc107; --rank2-color: #adb5bd;
    --rank3-color: #cd7f32; --rank4-color: #17a2b8;
}

*, *::before, *::after { 
    box-sizing: border-box; 
}

html, body { 
    width: 100%; 
    overflow-x: hidden; 
}

body { 
    background-color: var(--bg-body) !important; 
    font-family: 'Inter', sans-serif !important; 
    color: var(--text-primary);
}
/* Sayfa aşağı kaydırıldığında boşluğu azalt */
body.scrolled {
    padding-top: 100px; /* Navbar'ın küçülmüş yüksekliği kadar */
    transition: padding-top 0.3s ease-in-out;
}

a { color: inherit; text-decoration: none !important; }
.container { max-width: 1200px; padding: 0 15px; margin: 0 auto; }

/* NAVBAR */
.site-header {
    background-color: var(--accent-primary);
    padding: 0.75rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    /* DÜZELTME: En kararlı yöntem olan position: fixed kullanıldı */
    position: fixed; 
    top: 0; 
    left: 0;
    width: 100%;
    z-index: 1030;
    transition: padding 0.3s ease-in-out;
}
.site-header.scrolled {
    padding: 0.20rem 0;
}
.site-header .navbar-brand .logo_img {
    max-height: 50px;
    transition: max-height 0.3s ease-in-out;
}
.site-header.scrolled .navbar-brand .logo_img {
    max-height: 40px;
}
.site-header .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600; font-size: 0.9rem;
    padding: 0.75rem 1rem; margin: 0 0.25rem;
    border-radius: 6px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease-in-out;
}
.site-header .navbar-nav .nav-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}
.site-header .navbar-nav .nav-item.active .nav-link {
    color: #ffffff;
    background-color: transparent;
    border-bottom-color: var(--accent-color);
}
.navbar-toggler { 
    border: none !important; 
    padding: 0 !important;
    width: 24px; height: 24px;
    position: relative;
    z-index: 1051; /* Her zaman en üstte */
}
.navbar-toggler-icon { display: none; }
.toggler-icon-line {
    display: block; position: absolute;
    height: 3px; width: 100%;
    background: #fff; border-radius: 3px;
    opacity: 1; left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
.toggler-icon-line:nth-child(1) { top: 0px; }
.toggler-icon-line:nth-child(2), 
.toggler-icon-line:nth-child(3) { top: 9px; }
.toggler-icon-line:nth-child(4) { top: 18px; }

/* Menü açıkken 'X' ikonuna dönüşüm */
.navbar-toggler.is-open .toggler-icon-line:nth-child(1),
.navbar-toggler.is-open .toggler-icon-line:nth-child(4) {
    top: 9px; width: 0%; left: 50%;
}
.navbar-toggler.is-open .toggler-icon-line:nth-child(2) { transform: rotate(45deg); }
.navbar-toggler.is-open .toggler-icon-line:nth-child(3) { transform: rotate(-45deg); }

/* FOOTER */
.site-footer {
    background-color: #1a1d20;
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 0 0;
}
.site-footer .footer-content {
    display: flex; justify-content: space-between;
    align-items: center; padding-bottom: 2rem;
    border-bottom: 1px solid #343a40;
}
.site-footer .footer-logo { font-size: 1.8rem; font-weight: 700; color: #fff; margin: 0; }
.site-footer .footer-about p { margin: 0.5rem 0 0 0; color: rgba(255, 255, 255, 0.5); }
.site-footer .footer-social a { color: rgba(255, 255, 255, 0.7); font-size: 1.5rem; margin-left: 1.5rem; transition: color 0.2s ease; }
.site-footer .footer-social a:hover { color: #fff; }
.site-footer .footer-bottom { padding: 1.5rem 0; text-align: center; font-size: 0.6rem; }
.site-footer .footer-bottom p { margin: 0; }

/* COOKIE BANNER */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050;
    display: none; align-items: center; justify-content: center;
    gap: 1.5rem; padding: 1rem; background-color: rgba(26, 29, 32, 0.95);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    color: #fff; text-align: center; box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}
#cookie-banner p { margin: 0; }
#cookie-banner a { color: #0095ff; text-decoration: underline !important; font-weight: 600; }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-buttons button { padding: 0.6rem 1.2rem; border: none; border-radius: 8px; cursor: pointer; font-weight: 700; transition: transform 0.2s ease; }
.cookie-buttons button:hover { transform: scale(1.05); }
#cookie-banner #cookie-accept { background-color: var(--accent-color); color: #fff; }
#cookie-banner #cookie-reject { background-color: var(--text-secondary); color: #fff; }

/* =================================================================== */
/* BÖLÜM 3: SAYFA İÇERİK STİLLERİ */                 */
/* =================================================================== */
/* GENEL SAYFA VE KART YAPISI */
.page-content { padding: 2.5rem 0; }
.section-card { background-color: var(--bg-card); border-radius: 12px; padding: 1.5rem; box-shadow: var(--shadow-soft); margin-bottom: 1.5rem; }
.section-header { margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border-color); }
.section-header h2 { font-size: 1.1rem; font-weight: 600; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }

/* =================================================================== */
/* ANA SAYFA stilleri (index.php) */                 */
/* =================================================================== */
body > #index-content {
    padding-top: 71px; /* Navbar yüksekliği, bu değerle oynayabilirsiniz */
    margin-top: -71px; /* Boşluğu dengeler */
}
.page-hero {
    position: relative; background-size: cover; background-position: center;
    padding: 6rem 15px; color: var(--text-light);
    display: flex; align-items: center; min-height: 500px;
    background-color: var(--accent-primary);
}
.page-hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.6) 40%, rgba(10, 25, 47, 0.2) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.hero-content h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.2; }
.hero-content p { max-width: 550px; font-size: 1rem; opacity: 0.9; }
.hero-button { display: inline-block; background-color: var(--accent-color); color: var(--text-light) !important; padding: 10px 24px; border-radius: 6px; font-weight: 600; margin-top: 1.5rem; transition: background-color 0.3s, transform 0.3s; }
.hero-button:hover { background-color: #2b6cb0; transform: translateY(-2px); }

.content-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.main-col { flex: 1 1 65%; min-width: 300px; }
.sidebar-col { flex: 1 1 30%; min-width: 300px; }

/* SIRADAKİ MAÇLAR */
.upcoming-match-card {
    background: var(--bg-body); border: 1px solid transparent;
    border-radius: 8px; padding: 1rem; text-align: center; height: 100%;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.upcoming-match-card:hover { border-color: var(--border-color); box-shadow: var(--shadow-soft); }
.upcoming-match-card .info { font-size: 0.75rem; color: var(--text-secondary); margin-bottom: 0.75rem; }
.upcoming-match-card .teams { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.upcoming-match-card .team { font-weight: 600; font-size: 0.8rem; flex: 1; }
.upcoming-match-card .team img { height: 30px; display: block; margin: 0 auto 0.25rem auto; }
.upcoming-match-card .vs { font-size: 0.75rem; font-weight: 700; color: var(--accent-color); padding: 0 0.5rem; }

/* SON MAÇ SONUÇLARI */
.results-list .result-item { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0.75rem 0; }
.results-list .result-item + .result-item { border-top: 1px solid var(--border-color); }
.result-item .team { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; font-size: 0.85rem; }
.result-item a.team:hover { color: var(--accent-color); }
.result-item .team.team-right { justify-content: flex-end; }
.result-item .team img { height: 24px; width: 24px; object-fit: contain; }
.result-item .score-box { text-align: center; padding: 0 1.5rem; }
.result-item .score { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.result-item a.score-box:hover .score { color: var(--accent-color); }
.match-tag { font-size: 0.6rem; font-weight: 600; color: var(--text-secondary); background-color: var(--bg-body); padding: 2px 8px; border-radius: 20px; display: inline-block; margin-top: 0.25rem; }

/* PUAN DURUMU & GOL KRALLIĞI */
.ranking-list { list-style: none; padding: 0; margin: 0; }
.ranking-list .ranking-item { display: flex; align-items: center; padding: 0.7rem 0; }
.ranking-list .ranking-item + .ranking-item { border-top: 1px solid var(--border-color); }
.ranking-list .rank { font-weight: 600; color: var(--text-secondary); width: 25px; text-align: center; font-size: 0.75rem;}
.ranking-list .main-info { flex-grow: 1; display: flex; align-items: center; gap: 0.75rem; }
.ranking-list a.main-info:hover .team-name { color: var(--accent-color); }
.ranking-list .team-logo { height: 22px; width: 22px; object-fit: contain; }
.ranking-list .player-photo { height: 30px; width: 30px; object-fit: cover; border-radius: 50%; }
.ranking-list .name-group .team-name { font-weight: 500; font-size: 0.85rem; line-height: 1.2;}
.ranking-list .name-group .team-sub-name { font-size: 0.75rem; color: var(--text-secondary); line-height: 1.2;}
.ranking-list .stat { font-weight: 700; font-size: 0.85rem; text-align: right; }
.see-more-button {
    display: block; width: 100%; text-align: center; font-size: 0.8rem; font-weight: 600;
    color: var(--accent-color); background-color: #f7fafc; border: 1px solid var(--border-color);
    padding: 0.5rem; margin-top: 1rem; border-radius: 6px;
    transition: background-color 0.2s, color 0.2s;
}
.see-more-button:hover { background-color: var(--accent-color); color: var(--text-light); }

/* HABERLER */
.news-grid .row { margin: 0 -0.75rem; }
.news-grid .col-md-6 { padding: 0 0.75rem; }
.news-card { display: block; text-decoration: none; color: var(--text-primary); background-color: var(--bg-card); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.3s, box-shadow 0.3s; height: 100%; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.news-card img { width: 100%; height: 160px; object-fit: cover; }
.news-card-body { padding: 1rem; }
.news-card-body h5 { font-size: 1rem; font-weight: 600; margin: 0; line-height: 1.4; }

/* BÖLÜM 4: MOBİL UYUMLULUK */
@media (max-width: 991.98px) {
    header.site-header .navbar-collapse {
        background-color: #2c3137; margin-top: 0.5rem; border-radius: 8px;
        padding: 0.5rem; border: 1px solid #343a40;
    }
    .page-hero { padding: 4rem 15px; min-height: 400px;}
    .hero-content h1 { font-size: 2.2rem; }
}
@media (max-width: 767px) {
    .main-col, .sidebar-col { flex-basis: 100%; }
    .hero-content h1 { font-size: 1.8rem; }
}

/* =================================================================== */
/* BÖLÜM 5: MAÇ SONUÇ DETAY (mac-sonuc-detay.php)                   */
/* =================================================================== */

.mac-detay-body .container { max-width: 1200px; !important}
.mac-detay-body .section-header h2 { text-align: center; }
.mac-detay-body .page-content { padding-top: 2rem; padding-bottom: 2rem; }
.mac-detay-body .event-icon.has-video::before { content: '\f04b'; /* Font Awesome 'play' ikonu */
    font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; bottom: -2px; right: -2px;
    font-size: 0.7rem; color: #fff; background-color: var(--red); /* Dikkat çekici bir renk */
    border-radius: 50%; width: 16px; height: 16px; line-height: 16px; text-align: center; border: 2px solid #fff; }

.mac-detay-body .match-video-actions { display: flex; justify-content: center; gap: 1rem; padding: 1.5rem; background-color: var(--bg-body);
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;  border-bottom: 1px solid var(--border-color); }
.mac-detay-body .match-video-actions .btn-video { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.25rem; border-radius: 8px;
    font-weight: 600; color: #fff !important; transition: all 0.3s ease; box-shadow: var(--shadow-soft); }
.mac-detay-body .match-video-actions .btn-video:hover { transform: translateY(-3px); box-shadow: var(--shadow-strong); }
.mac-detay-body .match-video-actions .btn-video.full-match { background-color: var(--accent-color); }
.mac-detay-body .match-video-actions .btn-video.summary-match { background-color: var(--red);}

.score-header { text-align: center; font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.score-body { display: flex; align-items: center; justify-content: space-between; }
.score-team { flex: 1; text-align: center; transition: opacity 0.3s ease; }
.score-team.loser { opacity: 0.5; } 
.score-team.winner .name { font-weight: 700; }
.score-team img { width: 80px; height: 80px; object-fit: contain; margin-bottom: 0.5rem; }
.score-team .name { font-size: 1.2rem; font-weight: 600; }
.score-main { padding: 0 1rem; text-align: center; }
.score-main .score { font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 0.25rem; }
.score-main .status { font-size: 0.8rem; color: var(--text-secondary); text-transform: uppercase; }
.referee-info { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; color: var(--text-secondary); font-size: 0.9rem; }

.timeline { position: relative; padding: 1rem 0; }
.timeline::before { content: ''; position: absolute; top: 0; left: 50%; width: 2px; height: 100%; background-color: var(--border-color); transform: translateX(-50%); }
.timeline-event { display: flex; margin: 1.5rem 0; width: 50%; position: relative; align-items: center; }
.event-details { flex-grow: 1; }
.event-player { font-size: 1rem; }
.event-player a:hover { color: var(--accent-color); }
.event-minute { font-size: 0.8rem; color: var(--text-secondary); }
.event-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background-color: var(--bg-card); border: 2px solid var(--border-color); position: absolute; z-index: 2; color: var(--text-secondary); }
.event-icon i { font-size: 1rem; }
.event-team-1 { padding-right: 40px; text-align: right; justify-content: flex-end; }
.event-team-1 .event-icon { right: -18px; }
.event-team-2 { margin-left: 50%; padding-left: 40px; text-align: left; }
.event-team-2 .event-icon { left: -18px; }
.event-icon.yellow-card { border-color: var(--yellow); color: var(--yellow); }
.event-icon.red-card { border-color: var(--red); color: var(--red); }
.event-icon.yellow-red-card { border: none; background: linear-gradient(135deg, var(--yellow) 49%, var(--red) 51%); color: white; }
.event-icon.has-video { background-color: var(--accent-color); color: var(--text-light); cursor: pointer; border-color: var(--accent-color); transition: transform 0.2s; }
.event-icon.has-video:hover { transform: scale(1.15); }
.event-icon.goal.has-video::after { content: "Golü İzle"; position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%); background-color: rgba(0, 0, 0, 0.8); color: white; padding: 5px 10px; border-radius: 4px;
    font-size: 0.4em; white-space: nowrap; opacity: 0; visibility: hidden; transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    z-index: 10; margin-top: 5px; }
.event-icon.goal.has-video:hover::after { opacity: 1; visibility: visible; }

/* Ana Penaltı Kartı */
.penalty-box {
    padding: 0 !important; /* Kartın iç boşluklarını sıfırlayarak tam kontrol sağlıyoruz */
    overflow: hidden; /* Yuvarlak köşelerin düzgün görünmesini sağlar */
    margin-top: 1.5rem; /* Üstteki bölümle arasına boşluk koyar */
    border-radius: 12px; /* Ana kartın köşelerini yuvarlaklaştırıyoruz */
}

/* "PENALTILAR" Başlığı */
.penalty-box .timeline-separator {
    position: static;
    transform: none;
    width: auto;
    background-color: var(--bg-card-light); /* Hafif tonlu bir arka plan */
    padding: 0.85rem 1.5rem;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.penalty-box .timeline-separator span {
    background-color: transparent;
    padding: 0;
}

/* Penaltı Turlarının bulunduğu alan */
.penalty-box .penalty-rounds-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* Satırlar arası boşluk */
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-card);
}

/* Eski dikey çizgiyi olmadığından emin ol */
.penalty-box .penalty-rounds-container::before {
    display: none;
}

/* Her Bir Penaltı Turu (Satır) - ORTALANMIŞ YAPI */
.penalty-box .penalty-round {
    display: grid;
    grid-template-columns: auto auto auto; /* İkon | Numara | İkon */
    justify-content: center; /* Öğeleri yatayda ortalar */
    align-items: center;
    gap: 2rem; /* Ortalanmış düzende daha iyi boşluk */
    padding: 0.5rem 0;
    
    /* Animasyon için başlangıç durumu */
    opacity: 0;
    animation: fadeInPenalty 0.5s ease-out forwards;
}

/* Tur Numarası (Ortada) */
.penalty-box .round-number-container {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease-out;
}

.penalty-box .penalty-round:hover .round-number-container {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Penaltı Sonuç İkonları */
.penalty-box .penalty-shot {
    flex: none; /* İkonların ortaya yaklaşmasını sağlar */
}

.penalty-box .outcome-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 900;
    background-image: none !important; /* Eski SVG'leri tamamen iptal et */
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.penalty-box .penalty-round:hover .outcome-icon {
    transform: scale(1.1);
}

/* GOL olduysa (Yeşil ve parlama efekti) */
.penalty-box .outcome-icon.scored {
    background-color: #198754;
    box-shadow: 0 0 12px 1px rgba(25, 135, 84, 0.5);
}
.penalty-box .outcome-icon.scored::before {
    content: '\f00c'; /* Font Awesome Check ikonu */
    font-family: 'Font Awesome 5 Free';
}

/* KAÇTIYSA (Kırmızı ve parlama efekti) */
.penalty-box .outcome-icon.missed {
    background-color: #dc3545;
    box-shadow: 0 0 12px 1px rgba(220, 53, 69, 0.5);
}
.penalty-box .outcome-icon.missed::before {
    content: '\f00d'; /* Font Awesome Times (X) ikonu */
    font-family: 'Font Awesome 5 Free';
}

/* Penaltı kartlarının sırayla belirmesi için animasyon */
@keyframes fadeInPenalty {
    from { 
        opacity: 0; 
        transform: scale(0.95); /* Hafifçe büyüyerek gelir */
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* Her satır için artan animasyon gecikmesi */
.penalty-box .penalty-round:nth-child(1) { animation-delay: 0.1s; }
.penalty-box .penalty-round:nth-child(2) { animation-delay: 0.2s; }
.penalty-box .penalty-round:nth-child(3) { animation-delay: 0.3s; }
.penalty-box .penalty-round:nth-child(4) { animation-delay: 0.4s; }
.penalty-box .penalty-round:nth-child(5) { animation-delay: 0.5s; }
/* Daha fazla penaltı olursa bu liste uzatılabilir */

/* Video Modal */
.modal { display: none; position: fixed; z-index: 1050; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; }
.modal-content { position: relative; width: 90%; max-width: 900px; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.close-modal { color: #fff; position: absolute; top: -35px; right: 0; font-size: 40px; font-weight: bold; cursor: pointer; opacity: 0.8; }
.close-modal:hover { opacity: 1; }

/* =================================================================== */
/* BÖLÜM 6: FOTO GALERİ STİLLERİ                                       */
/* =================================================================== */
.gallery-section {
    margin-top: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding-top: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-section .section-header {
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.gallery-section .section-header h2{
    color: #495057;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 0.75rem;
}
#galleryLightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1100; /* Video modalından daha üstte olsun */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
}

#galleryLightbox.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0s;
}

#lightboxContent {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

#lightboxImage {
    display: block;
    width: auto;
    max-height: 90vh;
    max-width: 90vw;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

#lightboxClose {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease-in-out;
}

#lightboxClose:hover {
    opacity: 1;
}

        .gallery-container-modern { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-auto-rows: 200px; grid-auto-flow: dense; gap: 15px; }
        .gallery-item-modern { position: relative; overflow: hidden; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); cursor: pointer; grid-column: span 1; grid-row: span 1; }
        .gallery-item-modern.wide { grid-column: span 2; }
        .gallery-item-modern.tall { grid-row: span 2; }
        .gallery-item-modern img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, filter 0.4s ease; }
        .gallery-item-modern::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0); color: white; font-size: 2.5rem; background-color: rgba(0, 0, 0, 0.4); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s ease, transform 0.4s ease; }
        .gallery-item-modern:hover img { transform: scale(1.1); filter: brightness(0.7); }
        .gallery-item-modern:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        .modal { display: none; position: fixed; z-index: 1050; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.85); align-items: center; justify-content: center; }
        .modal-content { position: relative; margin: auto; padding: 0; width: 90%; max-width: 900px; background-color: #000; animation: zoom 0.4s; }
        @keyframes zoom { from {transform: scale(0.8)} to {transform: scale(1)} }
        .video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
        .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
        .close-modal { position: absolute; top: -45px; right: -5px; color: white; font-size: 45px; font-weight: bold; transition: 0.3s; cursor: pointer; text-shadow: 0 1px 5px #000; }
        .close-modal:hover { color: #ccc; }
        .timeline .event-icon.has-video { cursor: pointer; transition: transform 0.2s ease; }
        .timeline .event-icon.has-video:hover { transform: scale(1.2); color: #ff0000; }

/* =================================================================== */
/* BÖLÜM 5: TAKIMLAR SAYFASI STİLLERİ (takimlar.php)                   */
/* YENİ TASARIM - DÜZELTİLMİŞ (SON)                                   */
/* =================================================================== */

.takimlar-body .page-header {
    padding: 3rem 0;
    background-color: var(--bg-card);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}
.takimlar-body .page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.takimlar-body .page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: auto;
}
/* Filtreleme Butonları */
.takimlar-body .portfolioFilter {
    text-align: center;
    padding: 1.5rem 0;
    background-color: var(--bg-card);
    margin-bottom: 2.5rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.takimlar-body .portfolioFilter a {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    margin: 0.25rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background-color: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
}
.takimlar-body .portfolioFilter a:hover {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}
.takimlar-body .portfolioFilter a.current {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

/* Takım Kartı Tasarımı */
.takimlar-body .team-card-final {
    background-color: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    transition: all 0.3s ease-out;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 200px;
}
.takimlar-body .team-card-final:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--border-color);
}
.takimlar-body .card-image-container {
    position: relative;
    aspect-ratio: 16 / 10;
}
.takimlar-body .card-image-container .team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}
.takimlar-body .team-logo-container {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--bg-card);
    padding: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.takimlar-body .team-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.takimlar-body .team-card-final:hover .team-logo-container img {
    filter: grayscale(0%);
}
.takimlar-body .card-info-container {
    padding: 50px 1rem 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column; /* Ana düzen alt alta */
    align-items: center;
    justify-content: center;
}
.takimlar-body .card-info-container .team-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0.5rem 0.25rem 0.5rem;
    flex-basis: 100%;
}
.takimlar-body .card-info-container .league-info-wrapper { /* Yeni wrapper */
    display: flex;
    flex-direction: row; /* Ligleri yan yana sırala */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%; /* Genişliği ayarla */
}
.takimlar-body .card-info-container .league-info {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.2;
    margin: 0.1rem 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.takimlar-body .card-info-container .league-info:not(:last-child)::after {
    content: " | ";
    color: #6c757d;
}
.takimlar-body .league-separator {
    display: none;
}
.takimlar-body .portfolioContainer {
    display: flex;
    flex-wrap: wrap;
}
.takimlar-body .portfolio-item {
    margin-bottom: 1rem;
    margin-right: 1.5rem;
    width: calc(25% - 1.5rem); /* Masaüstü için 4'lü sıra */
}
.takimlar-body .portfolio-item:nth-child(4n) {
    margin-right: 0;
}


/* MOBİL (Dar Ekranlar) */
@media (max-width: 767.98px) {
    .takimlar-body .portfolioContainer {
        flex-direction: column; /* Alt alta tek sütun */
    }
    .takimlar-body .portfolio-item {
        width: 100%;
        margin-right: 0;
    }
    .takimlar-body .card-info-container {
        align-items: center; /* Mobil için ortala */
    }
    .takimlar-body .card-info-container .team-name {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }
    .takimlar-body .card-info-container .league-info-wrapper { /* Mobil için de yan yana */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }
}

/* =================================================================== */
/* BÖLÜM 5: TAKIM DETAY SAYFASI (takim-detay.php) v6.0 (FİNAL)         */
/* =================================================================== */
.takim-detay-body .page-content { padding-top: 0; }
.takim-detay-body .team-header-v3 { display: grid; grid-template-columns: 250px 1fr 40%;
    background-color: var(--accent-primary); border-radius: 16px; overflow: hidden; color: var(--text-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); margin: 0.2rem 0; }

.takim-detay-body .team-header-v3-container .row { min-height: 320px; }
.takim-detay-body .team-header-v3-container .col-lg-3,
.takim-detay-body .team-header-v3-container .col-lg-4,
.takim-detay-body .team-header-v3-container .col-lg-5 {
}
.takim-detay-body .header-panel { position: relative; display: flex; flex-direction: column; align-items: center;
    justify-content: center; padding: 1.5rem; width: 100%; }

/* Sol Panel: Logo */
.takim-detay-body .logo-panel { background-color: #212529; align-items: center; }
.takim-detay-body .logo-panel img { width: 160px; height: 160px; object-fit: contain; }
.takim-detay-body .logo-panel::after { content: ''; position: absolute; top: 0; right: -25px; width: 50px; height: 100%;
    background: var(--accent-primary); transform: skewX(-15deg); z-index: 1; }

/* Orta Panel: Bilgiler */
.takim-detay-body .info-panel { align-items: center; text-align: center; background-color: #212529; }
.takim-detay-body .info-panel h1 { font-size: 2.2rem; font-weight: 700; margin: 0 0 1.5rem 0; color: #ffffff;
    text-shadow: 2px 3px 5px rgb(1 121 167); }
.takim-detay-body .general-info { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1rem; width: 100%; max-width: 400px; }
.takim-detay-body .general-info li { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem; border-radius: 8px; text-align: center; }
.takim-detay-body .general-info .stat-value { font-size: 1.1rem; font-weight: 600; color: var(--text-light); display: block; }
.takim-detay-body .general-info .stat-label { font-size: 0.65rem; font-weight: 500; text-transform: uppercase; color: #c7d2fe;
    letter-spacing: 0.5px; margin-top: 0.25rem; }

/* Sağ Panel: Fotoğraf */
.takim-detay-body .photo-panel { padding: 0; background-size: cover; background-position: center; min-height: 370px; }

/* 2. SEKME VE İÇERİK ALANI */
.takim-detay-body .content-info { padding-top: 1rem; }
.takim-detay-body .nav-tabs-container { background: #fff; border-radius: 12px; padding: 10px; box-shadow: var(--shadow-soft);
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-bottom: 2rem; }
.takim-detay-body .nav-tabs-container::-webkit-scrollbar { display: none; }
.takim-detay-body .nav-tabs { border-bottom: none !important; gap: 8px; margin: 0; display: flex; justify-content: 
 flex-start; flex-wrap: nowrap; }
.takim-detay-body .nav-tabs .nav-item .nav-link { color: #495057; font-weight: 600; padding: 10px 20px;
    border: none !important; border-radius: 8px !important; background-color: transparent !important; transition: all 0.3s ease;
    white-space: nowrap; }
.takim-detay-body .nav-tabs .nav-item .nav-link.active,
.takim-detay-body .nav-tabs .nav-item .nav-link:hover { color: #fff !important; background-color: var(--accent-color) !important; }

/* 3. OYUNCU KARTI STİLLERİ (YENİ GRID YAPISI) */
.takim-detay-body .player-grid { display: grid; grid-template-columns: repeat(5, 1fr);  gap: 1.5rem;  }
.takim-detay-body .item-player { border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; 
 text-align: center; transition: all 0.3s ease; background-color: #fff; width: 100%; }
.takim-detay-body .item-player:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.takim-detay-body .head-player { position: relative; }
.takim-detay-body .head-player img { display: block; width: 100%; height: 240px; object-fit: cover; object-position: top; }
.takim-detay-body .number-player { position: absolute; top: 10px; right: 10px; width: 45px; height: 45px; line-height: 41px;
    background: rgba(0, 0, 0, 0.7); color: #fff; font-size: 1.2rem; font-weight: 700; border-radius: 50%; border: 2px solid #fff; }
.takim-detay-body .info-player { padding: 15px; }
.takim-detay-body .info-player h4 { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--text-primary) !important; }
.takim-detay-body .info-player h4 span { display: block; font-size: 0.9rem; color: var(--text-secondary); margin-top: 3px; }
.takim-detay-body .info-player ul { list-style: none; padding: 15px 0 0 0; margin: 15px 0 0 0; border-top: 1px solid var(--border-color); text-align: left; }
.takim-detay-body .info-player ul li { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 0.9rem; }
.takim-detay-body .info-player ul li strong { color: #495057; }
.takim-detay-body .info-player ul li span { font-weight: 600; }
.takim-detay-body .item-player.kaptan-karti { border-color: gold; border-width: 2px; }
.takim-detay-body .item-player.kaptan-karti .number-player { background: gold; color: var(--text-primary); border-color: #fff; }
.takim-detay-body .head-player .player-badge { position: absolute; top: 10px; left: 10px; font-size: 0.7rem; font-weight: 700; 
  padding: 4px 10px; border-radius: 5px; color: #fff; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
.takim-detay-body .head-player .badge-kaptan { background-color: var(--yellow); color: var(--text-primary); text-shadow: none; }
.takim-detay-body .head-player .badge-td { background-color: var(--red); }
.takim-detay-body .head-player .badge-te { background-color: #28a745; }

/* 4. FİKSTÜR VE SONUÇLAR */
.takim-detay-body .fixture-list { display: flex; flex-direction: column; }
.takim-detay-body .fixture-item-wrapper { padding: 1rem 0; }
.takim-detay-body .fixture-item-wrapper + .fixture-item-wrapper { border-top: 1px solid var(--border-color); }
.takim-detay-body .fixture-content { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; }
.takim-detay-body .fixture-item { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    gap: 1rem; padding: 1.25rem; border-bottom: 1px solid var(--border-color); transition: background-color 0.2s; }
.takim-detay-body .fixture-list > *:first-child { border-top: 1px solid var(--border-color); }
.takim-detay-body .fixture-item:hover { background-color: #f8f9fa; }
.takim-detay-body .fixture-team { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; font-size: 0.9rem; 
   transition: color 0.2s; }
.takim-detay-body .fixture-team:hover { color: var(--accent-color); }
.takim-detay-body .fixture-team.team-right { justify-content: flex-end; }
.takim-detay-body .fixture-team img { height: 32px; width: 32px; object-fit: contain; }
.takim-detay-body .fixture-team.loser { opacity: 0.6; }
.takim-detay-body .fixture-team.winner { font-weight: 700; }
.takim-detay-body .fixture-info { text-align: center; display: flex; flex-direction: column; align-items: center; padding: 0 1rem; }
.takim-detay-body .fixture-info .score,
.takim-detay-body .fixture-info .time { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.takim-detay-body .fixture-info .date { font-size: 0.8rem; color: var(--text-secondary); }
.takim-detay-body .match-tag { font-size: 0.65rem; font-weight: 600; color: var(--text-secondary); background-color: var(--bg-body);
    padding: 2px 8px; border-radius: 20px; display: inline-block; margin-top: 0.35rem; text-transform: uppercase; }
.takim-detay-body .match-tag.final { background-color: var(--red); color: #fff; }
.takim-detay-body .match-tag.yari-final { background-color: var(--yellow); color: var(--text-primary); }
.takim-detay-body .match-tag.ceyrek-final { background-color: var(--accent-color); color: #fff; }
.takim-detay-body .match-tag.grup { background-color: var(--text-secondary); color: #fff; }
.takim-detay-body .news-item { padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; }
.takim-detay-body .news-item h3 a { color: #007bff; text-decoration: none; }
.takim-detay-body .news-item .date { color: #6c757d; font-size: 0.9rem; margin-bottom: 5px; }
.takim-detay-body .news-list { margin-top: 20px; }

.takim-detay-body .team-header-v3 .info-panel h1 .badge {
    font-size: 1.2rem;
    padding: 0.35rem 0.7rem;
    border-radius: 12px;
    color: white;
    border: none;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* 3D gölge */
    position: relative;
    overflow: hidden; /* Işıltı efekti için */
    z-index: 0;
}

.takim-detay-body .team-header-v3 .info-panel h1 .badge::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 0);
    background: rgba(255, 255, 255, 0.3);
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

.takim-detay-body .team-header-v3 .info-panel h1 .badge:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(0, 10px);
}

.takim-detay-body .team-header-v3 .info-panel h1 .badge.badge-success {
    background-color: #3536dc; /* Yeşil */
}

.takim-detay-body .team-header-v3 .info-panel h1 .badge.badge-info {
    background-color: #17a2b8; /* Açık mavi */
}

.takim-detay-body .team-header-v3 .info-panel h1 .badge.badge-warning {
    background-color: #ffc107; /* Sarı */
    color: #212529; /* Sarı üzerinde okunabilirlik için siyah */
}
.takim-detay-body .team-header-v3 .info-panel h1 .badge.badge-frth {
    background-color: #ff075c0d; /* Sarı */
    color: #212529; /* Sarı üzerinde okunabilirlik için siyah */
}
.takim-detay-body .team-header-v3 .info-panel h1 .badge.badge-secondary {
    background-color: #6c757d; /* Gri */
}

.takim-detay-body .team-header-v3 .info-panel h1 .badge.ml-2 {
    margin-left: 0.5rem;
}


.rank-bubble {
    position: fixed; /* Ekrana göre sabit позиционирование */
    background-color: rgba(0, 0, 0, 0.8); /* Siyah, yarı saydam arka plan */
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    z-index: 1000; /* Diğer elementlerin üzerinde görünmesi için */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none; /* Tıklamaların altındaki elementlere geçmesini sağlar */
}

.team-header-v3 .info-panel h1 .badge:hover + .rank-bubble,
.team-header-v3 .info-panel h1 .badge:focus + .rank-bubble,
.rank-bubble { /* Baloncuğun görünmesini kontrol eder (JS ile opacity değiştirilecek) */
    opacity: 1;
}

/* Genel stiller */
.past-seasons-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.past-seasons-buttons a {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.past-seasons-buttons a:hover {
    background-color: #eee;
}

/* Masaüstü için stil (768px ve üzeri ekranlar) */
@media (min-width: 768px) {
    .past-seasons-buttons {
        justify-content: flex-start; /* Sola hizala */
    }

    .past-seasons-buttons a {
        font-size: 1rem;
        padding: 12px 20px;
    }
}


/* =================================================================== */
/* BÖLÜM 7: OYUNCU DETAY SAYFASI (player-details.php)                  */
/* =================================================================== */

/* OYUNCU BAŞLIK ALANI */
.player-detay-body .container { max-width: 1200px; }
.player-detay-body .player-hero-header {
    display: flex; background-color: var(--accent-primary);
    border-radius: 16px; overflow: hidden; margin: 2rem 0;
    min-height: 350px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.player-detay-body .player-photo-panel {
    flex: 0 0 300px;
    background-size: cover;
    background-position: center top;
    border-right: 2px solid #343a40;
}
.player-detay-body .player-info-panel {
    flex-grow: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    position: relative;
    background: radial-gradient(circle at 50% 0%, #2c3034, var(--accent-primary) 70%);
    color: var(--text-light);
}
.player-detay-body .player-info-main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
.player-detay-body .jersey-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    z-index: 0;
    user-select: none;
}
.player-detay-body .player-identity {
    flex-grow: 1;
}
.player-detay-body .name-and-team-wrapper {
    width: 100%; 
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    gap: 1rem;
}
.player-detay-body .name-and-team-wrapper .name-and-pos h1 {
    margin: 0; 
    font-size: 2.8rem; 
    font-weight: 900;
    color: #ffffff; 
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.player-detay-body .name-and-team-wrapper .name-and-pos .position {
    font-size: 1.2rem; 
    color: #adb5bd; 
    font-weight: 500;
}
.player-detay-body .kaptan-badge {
    background: var(--yellow); 
    color: var(--text-primary);
    font-size: 0.8rem; 
    font-weight: 700; 
    padding: 4px 10px;
    border-radius: 5px; 
    margin-left: 1rem; 
    display: inline-block;
}
.player-detay-body .tdirektor-badge {
    display: inline-block;
    padding: 2px 8px;
    background-color: #f44336; /* Kırmızı renk */
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 10px;
}

/* YENİ: Teknik Ekip etiketi için stil */
.player-detay-body .teknik-ekip-badge {
    display: inline-block;
    padding: 2px 8px;
    background-color: #4caf50; /* Yeşil renk */
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 10px;
}
.player-detay-body .team-info {
    display: flex; 
    align-items: center; 
    background: rgba(255,255,255,0.05);
    padding: 5px 10px; 
    border-radius: 8px; 
    border: 1px solid #343a40;
    flex-shrink: 0;
}
.player-detay-body .team-info img { width: 30px; height: 30px; margin-right: 10px; object-fit: contain; }
.player-detay-body .team-info a { color: #e9ecef; font-size: 1rem; font-weight: 600; }

/* İSTATİSTİK KARTLARI */
.player-detay-body .player-stats-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
    position: relative; 
    z-index: 1;
}
.player-detay-body .stat-card {
    background: rgba(0,0,0,0.2); 
    border: 1px solid #343a40;
    border-radius: 10px; 
    padding: 1rem; 
    text-align: center;
}
.player-detay-body .stat-card .label { font-size: 0.75rem; color: #adb5bd; text-transform: uppercase; white-space: nowrap; }
.player-detay-body .stat-card .value { font-size: 1.8rem; font-weight: 700; line-height: 1.2; }

/* İÇERİK PANELLERİ */
.player-detay-body .content-panel {
    background: var(--bg-card); 
    padding: 0; 
    border-radius: 12px;
    box-shadow: var(--shadow-soft); 
    margin-bottom: 2rem;
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    height: 100%;
}
.player-detay-body .panel-header {
    display: flex; align-items: center; padding: 1rem 1.5rem;
    font-size: 1.1rem; font-weight: 700;
    background-color: #f8f9fa;
    border-bottom: 1px solid var(--border-color);
}
.player-detay-body .panel-header i { margin-right: 12px; }
.player-detay-body .panel-header.goals-header { color: #28a745; }
.player-detay-body .panel-header.cards-header { color: var(--yellow); }
.player-detay-body .panel-header.videos-header { color: #495057; }
.player-detay-body .panel-content { padding: 1.5rem; flex-grow: 1; }

.player-detay-body .history-list { list-style: none; padding: 0; margin: 0; }
.player-detay-body .history-list li {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color); font-size: 0.95rem;
}
.player-detay-body .history-list a.history-item { display: flex; align-items: center; }
.player-detay-body .history-list li:last-child { border-bottom: none; }
.player-detay-body .history-list .icon { margin-right: 1rem; font-size: 1.1rem; }
.player-detay-body .history-list .icon.sari { color: var(--yellow); }
.player-detay-body .history-list .icon.kirmizi { color: var(--red); }
.player-detay-body .history-list .date { font-weight: 600; color: var(--text-secondary); margin-right: 1rem; }
.player-detay-body .history-list .details { color: var(--text-primary); flex-grow: 1; padding-right: 1rem; }
.player-detay-body .event-count {
    display: inline-flex; align-items: center; padding: 3px 8px;
    border-radius: 5px; font-size: 0.8rem; font-weight: 700;
    flex-shrink: 0;
}
.player-detay-body .event-count.gol-count { background-color: #e9f5ec; color: #28a745; }
.player-detay-body .event-count.card-count-sari { background-color: #fff8e1; color: #f59f00; }
.player-detay-body .event-count.card-count-kirmizi { background-color: #ffeaea; color: var(--red); }

.player-detay-body .video-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.player-detay-body .video-grid iframe { width: 100%; height: 200px; border-radius: 10px; border: none; }


/* =================================================================== */
/* BÖLÜM 9: İSTATİSTİK SAYFASI (istatistik.php)                       */
/* =================================================================== */

.istatistik-body .page-header {
    text-align: center;
    padding: 2rem 0;
}
.istatistik-body .page-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
}
.istatistik-body .page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0.5rem auto 0 auto;
}

/* Liderlik Tablosu Panelleri */
.istatistik-body .leaderboard-panel { 
    background-color: var(--bg-card); 
    border-radius: 12px; 
    box-shadow: var(--shadow-soft); 
    overflow: hidden; 
    height: 100%; 
}
.istatistik-body .leaderboard-header { 
    display: flex; 
    align-items: center; 
    padding: 1rem 1.5rem; 
    font-size: 1.2rem; 
    font-weight: 700; 
    color: #fff; 
}
.istatistik-body .leaderboard-header i { 
    margin-right: 12px; 
    font-size: 1.4rem; 
}
.istatistik-body .leaderboard-header.goals-header { background: linear-gradient(135deg, #28a745, #218838); }
.istatistik-body .leaderboard-header.assists-header { background: linear-gradient(135deg, #17a2b8, #138496); }
.istatistik-body .leaderboard-header.cards-header { background: linear-gradient(135deg, #ffc107, #e0a800); }
.istatistik-body .leaderboard-list { 
    list-style: none; 
    padding: 0.5rem; 
    margin: 0; 
}
.istatistik-body .leaderboard-list li { 
    display: flex; 
    align-items: center; 
    padding: 0.75rem; 
    border-radius: 8px; 
    transition: background-color 0.2s; 
}
.istatistik-body .leaderboard-list li:hover { 
    background-color: #f8f9fa; 
}
.istatistik-body .player-rank { 
    width: 35px; height: 35px; 
    display: inline-flex; align-items: center; justify-content: center; 
    border-radius: 50%; 
    font-size: 1rem; font-weight: 700; 
    color: var(--text-primary); 
    flex-shrink: 0; 
}
.istatistik-body .player-rank.rank-1 { background-color: #fff3cd; color: #b8860b; }
.istatistik-body .player-rank.rank-2 { background-color: #e9ecef; color: #495057; }
.istatistik-body .player-rank.rank-3 { background-color: #fbe2d5; color: #a0522d; }
.istatistik-body .player-photo { 
    width: 45px; height: 45px; 
    border-radius: 50%; object-fit: cover; 
    margin: 0 1rem; flex-shrink: 0; 
}
.istatistik-body .player-info { flex-grow: 1; }
.istatistik-body .player-info a:hover h5 { color: var(--accent-color); }
.istatistik-body .player-info h5 { font-size: 1rem; font-weight: 600; margin: 0; color: var(--text-primary); }
.istatistik-body .player-info .team-name { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }
.istatistik-body .player-stat { margin-left: auto; text-align: right; }
.istatistik-body .player-stat .value { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); }
.istatistik-body .player-stat .label { font-size: 0.65rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
.istatistik-body .player-stat .card-display { display: flex; gap: 0.75rem; font-size: 1rem; font-weight: 600; align-items: center; }
.istatistik-body .player-stat .card-item.yellow { color: var(--yellow); }
.istatistik-body .player-stat .card-item.red { color: var(--red); }

/* Mobil Sekme Navigasyonu */
.istatistik-body .leaderboard-tabs {
    border-bottom: none;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.istatistik-body .leaderboard-tabs .nav-link {
    border: none;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    background-color: #e9ecef;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    gap: 8px;
}
.istatistik-body .leaderboard-tabs .nav-link:hover { color: var(--text-primary); background-color: #dee2e6; }
.istatistik-body .leaderboard-tabs .nav-link.active {
    color: #fff;
    background-color: var(--accent-color);
    box-shadow: 0 4px 10px rgba(49, 130, 206, 0.4);
    transform: translateY(-2px);
}

/* =================================================================== */
/* BÖLÜM 8: FİKSTÜR SAYFASI (fikstur.php) - FİNAL                      */
/* =================================================================== */

.fikstur-body .page-header {
    text-align: center;
    padding: 2.5rem 0;
}
.fikstur-body .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Hafta Navigasyon Sekmeleri */
.fikstur-body .fixture-nav-container {
    background-color: var(--bg-card);
    padding: 0.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.fikstur-body .fixture-nav-container::-webkit-scrollbar { 
    height: 5px; 
}
.fikstur-body .fixture-nav-container::-webkit-scrollbar-thumb { 
    background: #ccc; 
    border-radius: 5px; 
}
.fikstur-body .fixture-tabs {
    border-bottom: none !important;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.5rem;
}
.fikstur-body .fixture-tabs .nav-link {
    border: none;
    padding: 0.6rem 1.25rem;
    color: var(--text-secondary);
    background-color: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}
.fikstur-body .fixture-tabs .nav-link:hover {
    color: var(--text-primary);
    background-color: var(--border-color);
}
.fikstur-body .fixture-tabs .nav-link.active {
    color: #fff;
    background-color: var(--accent-color);
    box-shadow: 0 4px 10px rgba(49, 130, 206, 0.4);
}

/* Maç Kartları Izgarası */
.fikstur-body .match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}
.fikstur-body .match-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.fikstur-body .match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.fikstur-body .match-card-header {
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    background-color: #fafafa;
    border-bottom: 1px solid var(--border-color);
}
.fikstur-body .match-card-body {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.5rem;
    flex-grow: 1;
}
.fikstur-body .team-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}
.fikstur-body .team-display img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}
.fikstur-body .team-display .team-name {
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--text-primary);
    min-height: 2.4em;
    line-height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fikstur-body .score-info {
    text-align: center;
    padding: 0 1rem;
}
.fikstur-body .score-info .score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}
.fikstur-body .score-info .time {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}
.fikstur-body .match-card-footer {
    padding: 1rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}
.fikstur-body .details-btn {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background-color: var(--border-color);
    transition: all 0.2s ease;
}
.fikstur-body .details-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
}
.fikstur-body .is-finished .team-display.loser {
    opacity: 0.6;
}
.fikstur-body .is-finished .team-display.winner .team-name {
    font-weight: 700;
}

.bay-teams-panel { text-align: center; margin-top: 2.5rem; padding: 1.5rem; background-color: var(--bg-card); 
border-radius: 12px; border: 1px solid var(--border-color); }
.bay-teams-panel h5 {font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; color: var(--dark-color);}
.bay-teams-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.bay-team-chip { display: flex; align-items: center; gap: 0.75rem; color: var(--text-primary); text-decoration: none; 
background-color: #e9ecef; padding: 0.5rem 1rem; border-radius: 50px; font-weight: 600; fovarnt-size: 0.9rem; transition: all 0.2s ease; }
.bay-team-chip:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.bay-team-chip img { width: 24px; height: 24px; object-fit: contain; }

/* =================================================================== */
/* BÖLÜM 9: PUAN DURUMU SAYFASI (puanlar.php)                         */
/* =================================================================== */
 
.puan-durumu-body .page-header { padding: 2rem 0; text-align: center; }
.puan-durumu-body .page-header h1 { font-size: 2.8rem; font-weight: 800; }
.puan-durumu-body .filter-bar {
     text-align: center; padding: 1.5rem 0; background-color: var(--bg-card);
     border-bottom: 1px solid var(--border-color); margin-bottom: 2rem;
}
.puan-durumu-body .filter-bar a {
    display: inline-block; padding: 0.6rem 1rem; margin: 0.25rem;
    border-radius: 50px; background-color: #e9ecef; color: #495057;
    font-weight: 600; text-decoration: none; transition: all 0.3s ease; cursor: pointer;
}
.puan-durumu-body .filter-bar a:hover { background-color: #007bff; color: #fff; }
.puan-durumu-body .filter-bar a.current {
background-color: #007bff; color: #fff;
box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}
.puan-durumu-body .content-info { padding-bottom: 3rem; }
.puan-durumu-body .points-table-grid { display: flex; flex-direction: column; gap: 1px; }
.puan-durumu-body .pl-header, .pl-row {
   display: grid;
   grid-template-columns: 40px 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
   gap: 1rem;
   align-items: center;
}
.puan-durumu-body .pl-header {
   padding: 0.75rem 1rem; color: var(--accent-primary);
   font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
}
.puan-durumu-body .pl-row {
   background-color: var(--bg-card);
   border: 1px solid var(--border-color);
   border-radius: 8px;
   padding: 0.75rem 1rem;
   transition: all 0.25s ease;
   font-weight: 600;
}
.puan-durumu-body .pl-row:hover {
   transform: translateY(-3px) scale(1.01);
   box-shadow: 0 8px 25px rgba(0,0,0,0.1);
   border-color: var(--accent-color);
}
.puan-durumu-body .pl-cell { text-align: center; }
.puan-durumu-body .pl-rank { font-weight: 700; }
.puan-durumu-body .pl-team { text-align: left; }
.puan-durumu-body .pl-team a { color: var(--text-dark); text-decoration: none; display: flex; align-items: center; gap: 1rem; }
.puan-durumu-body .pl-team a:hover .team-name { color: var(--accent-color); }
.puan-durumu-body .pl-team img { width: 30px; height: 30px; object-fit: contain; }
.puan-durumu-body .pl-team .team-name { font-weight: 700; }
.puan-durumu-body .pl-points { font-weight: 800; font-size: 1.1rem; color: var(--dark-color); }
.puan-durumu-body .pl-row.rank-1, .pl-row.rank-2, .pl-row.rank-3, .pl-row.rank-4 {
   border-left-width: 5px; }
  .puan-durumu-body .pl-row.rank-1 { border-left-color: var(--rank1-color); }
  .puan-durumu-body .pl-row.rank-2 { border-left-color: var(--rank2-color); }
  .puan-durumu-body .pl-row.rank-3 { border-left-color: var(--rank3-color); }
  .puan-durumu-body .pl-row.rank-4 { border-left-color: var(--rank4-color); }
  .puan-durumu-body .pl-rank .fa-trophy { color: var(--rank1-color); }

Harika, son sayfamız olan kurallar.php'yi de merkezi stil sistemimize dahil edelim. Verdiğiniz kod, sayfanın yapısını ve tasarımını net bir şekilde ortaya koyuyor.

Bu stilleri, override-styles.css dosyamızdaki genel temayla bütünleşik hale getirdim ve mobil uyumluluğunu da ekledim.

Adım 1: override-styles.css Dosyasına Ekleme Yapın
Lütfen aşağıdaki kod bloğunu kopyalayıp, mevcut override-styles.css dosyanızın en sonuna yapıştırın.

CSS

/* =================================================================== */
/* BÖLÜM 10: KURALLAR SAYFASI (kurallar.php)                          */
/* =================================================================== */

.kurallar-body .page-header {
    padding: 2.5rem 0;
    text-align: center;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}
.kurallar-body .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.5rem;
    text-align: center;
}
.kurallar-body .page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    max-width: 700px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.kurallar-body .rules-container {
    max-width: 900px;
    margin: 2.5rem auto;
}
.kurallar-body .rule-section {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.kurallar-body .rule-section h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding: 1.25rem 2rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid var(--border-color);
}
.kurallar-body .rule-content {
    padding: 1.5rem 2rem 0.5rem 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}
.kurallar-body .rule-content p, 
.kurallar-body .rule-content li {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}
.kurallar-body .rule-content ul {
    list-style: none;
    padding-left: 1.5rem;
}
.kurallar-body .rule-content ul li {
    position: relative;
    padding-left: 25px;
}
.kurallar-body .rule-content ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
    top: -5px;
}
.kurallar-body .rule-content strong {
    color: var(--text-primary);
    font-weight: 600;
}
.kurallar-body .alert-box {
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-left-width: 5px;
    border-left-style: solid;
    border-radius: 8px;
    font-weight: 500;
}
.kurallar-body .alert-box.danger {
    background-color: #fff5f5;
    border-left-color: var(--red);
    color: #c53030;
}
.kurallar-body .alert-box p, 
.kurallar-body .alert-box li {
    margin-bottom: 0.5rem !important;
}
.kurallar-body .alert-box ul {
    list-style-type: disc;
    padding-left: 2rem; /* Madde işaretleri için iç boşluk */
}
.kurallar-body .rules-footer {
    margin-top: 3rem;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background-color: var(--border-color);
    border-radius: 12px;
}

/* =================================================================== */
/* BÖLÜM 10: İLETİŞİM SAYFASI (iletisim.php) - FİNAL                   */
/* =================================================================== */

.iletisim-body .page-header {
    text-align: center;
    padding: 3rem 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}
.iletisim-body .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.iletisim-body .page-header p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* İletişim Formu ve Bilgi Kartları */
.iletisim-body .form-control {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.iletisim-body .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
}
.iletisim-body .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.2s, border-color 0.2s;
}
.iletisim-body .btn-primary:hover {
    background-color: #2b6cb0;
    border-color: #2b6cb0;
}

/* DÜZELTME: İletişim Bilgileri Liste Yapısı */
.iletisim-body .contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.iletisim-body .contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0; /* Üst ve alt boşluklar */
}
.iletisim-body .contact-info-list li + li {
    border-top: 1px solid var(--border-color); /* Ayırıcı çizgi */
}
.iletisim-body .contact-info-list li:first-child {
    padding-top: 0;
}
.iletisim-body .contact-info-list li:last-child {
    padding-bottom: 0;
}

.iletisim-body .contact-info-list .icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--bg-body);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
}
.iletisim-body .contact-info-list .info h5 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}
.iletisim-body .contact-info-list .info p,
.iletisim-body .contact-info-list .info a {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.iletisim-body .contact-info-list .info a:hover {
    color: var(--accent-color);
}

/* Sosyal Medya İkonları */
.iletisim-body .contact-info-list .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.75rem;
}
.iletisim-body .contact-info-list .social-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background-color: var(--bg-body); color: var(--text-secondary);
    font-size: 1.3rem; transition: all 0.3s ease;
}
.iletisim-body .social-icon:hover {
    color: #fff !important; transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.iletisim-body .social-icon.social-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.iletisim-body .social-icon.social-facebook:hover {
    background-color: #1877F2;
}
.iletisim-body .social-icon.social-twitter:hover {
    background-color: #000000;
}
.iletisim-body .social-icon.social-youtube:hover {
    background-color: #FF0000;
}

/* Google Harita Alanı */
.iletisim-body #map {
    width: 100%;
    height: 450px;
    margin-top: 2rem;
}
.iletisim-body #map iframe { width: 100%; height: 100%; border: 0; }

/* =================================================================== */
/* BÖLÜM 11: BAŞVURU SAYFASI (basvuru.php)                            */
/* =================================================================== */

.basvuru-body .page-header {
    text-align: center;
    padding: 3rem 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}
.basvuru-body .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.basvuru-body .top-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}
.basvuru-body .video-box {
    flex: 1 1 500px; /* Esnek ve minimum genişlik */
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}
.basvuru-body .video-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.basvuru-body .info-box-top {
    flex: 1 1 400px;
}
.basvuru-body .info-box-top h1,
.basvuru-body .rules-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}
.basvuru-body .info-box-top ul,
.basvuru-body .rules-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-secondary);
}
.basvuru-body .info-box-top ul li,
.basvuru-body .rules-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}
.basvuru-body .info-box-top ul li::before,
.basvuru-body .rules-content ul li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.basvuru-body .rules-content {
    margin-top: 3rem;
}
.basvuru-body .rules-content h2 { font-size: 1.5rem; }

.basvuru-body .action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}
.basvuru-body .action-buttons .btn {
    padding: 0.75rem 1.5rem;
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.basvuru-body .action-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.basvuru-body .action-buttons .btn-pdf {
    background-color: var(--red);
}
.basvuru-body .action-buttons .btn-rules {
    background-color: var(--accent-color);
}

/* =================================================================== */
/* BÖLÜM 11: HABERLER SAYFASI (haberler.php)                          */
/* =================================================================== */

.haberler-body .page-header {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}
.haberler-body .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Öne Çıkan Haber Kartı */
/* Öne Çıkan Haber Kartı - Düzenlenmiş */
.haberler-body .featured-news-card {
    display: flex; /* Grid yerine Flexbox kullanıyoruz */
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-strong);
    align-items: stretch; /* İç öğeleri dikeyde eşit şekilde uzat */
}

.haberler-body .featured-news-card .news-card-img-container {
    flex: 1; /* Görselin esnemesini sağlar */
    min-height: 300px; /* Minimum yükseklik */
}

.haberler-body .featured-news-card .news-card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görselin orantılı şekilde sığmasını sağlar */
}

.haberler-body .featured-news-card .news-card-body {
    flex: 1; /* Metin içeriğinin esnemesini sağlar */
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* İçeriği dikeyde dağıtır */
}

.haberler-body .featured-news-card .date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.haberler-body .featured-news-card h2 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0; /* Üst boşluğu kaldırıldı */
    margin-bottom: 1rem;
}

.haberler-body .featured-news-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Yazının kartın alt kısmına yaslanmasını sağlar */
}

.haberler-body .featured-news-card .read-more {
    display: inline-block;
    width: fit-content;
    font-weight: 600;
    color: #fff;
    background-color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none; /* Alt çizgiyi kaldır */
    transition: background-color 0.3s;
}

.haberler-body .featured-news-card .read-more:hover {
    background-color: #2b6cb0;
}
/* Standart Haber Kartları */
.haberler-body .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.haberler-body .news-card {
    display: flex; flex-direction: column;
    background-color: var(--bg-card); border-radius: 12px;
    overflow: hidden; box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s; height: 100%;
}
.haberler-body .news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}
.haberler-body .news-card .news-card-img-container {
    width: 100%; aspect-ratio: 16 / 10;
    overflow: hidden;
}
.haberler-body .news-card .news-card-img-container img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.haberler-body .news-card:hover .news-card-img-container img {
    transform: scale(1.05);
}
.haberler-body .news-card-body {
    padding: 1.25rem; display: flex;
    flex-direction: column; flex-grow: 1;
}
.haberler-body .news-card .date {
    font-size: 0.8rem; color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.haberler-body .news-card h5 {
    font-size: 1.1rem; font-weight: 600;
    margin: 0 0 1rem 0; line-height: 1.4;
    flex-grow: 1;
}
.haberler-body .news-card .read-more {
    font-weight: 600; color: var(--accent-color);
}

/* Sayfalama Stilleri */
.haberler-body .pagination-container {
    padding-top: 2rem; border-top: 1px solid var(--border-color);
    margin-top: 3rem;
}
.haberler-body .pagination { justify-content: center; }
.haberler-body .pagination .page-item .page-link {
    color: var(--accent-color); border-radius: 8px !important;
    margin: 0 4px; border-color: var(--border-color);
}
.haberler-body .pagination .page-item.active .page-link {
    background-color: var(--accent-color);
    border-color: var(--accent-color); color: #fff;
    z-index: 2;
}
.haberler-body .pagination .page-item.disabled .page-link {
    color: var(--text-secondary);
}

/* =================================================================== */
/* BÖLÜM 12: BLOG DETAY SAYFASI (blog_detay.php)                      */
/* =================================================================== */

.blog-detay-body .page-content { padding-top: 0; }
.blog-detay-body .container { max-width: 1100px; }

/* Manşet Alanı */
.blog-header {
    position: relative; width: 100%;
    height: 60vh; min-height: 150px; max-height: 350px;
    display: flex; align-items: flex-end;
    justify-content: center; text-align: center; color: #fff;
}
.blog-header .bg-image {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
}
.blog-header::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.1) 100%);
}
.blog-header-content {
    position: relative; z-index: 2;
    padding: 2.5rem;
}
.blog-header-content .category-badge {
    background-color: var(--accent-color); color: #fff;
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600;
    margin-bottom: 1rem; display: inline-block;
}
.blog-header-content h1 {
    font-size: 3rem; font-weight: 700;
    line-height: 1.2; margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.blog-header-content .post-meta {
    margin-top: 1rem; font-size: 0.9rem;
    opacity: 0.9;
}

/* Ana İçerik ve Yan Panel */
.blog-detay-body .main-content-area {
    margin-top: -80px; /* İçeriği başlığın üzerine taşır */
    position: relative; z-index: 3;
}
.blog-post-content {
    background-color: var(--bg-card);
    padding: 2.5rem; border-radius: 12px;
}
.blog-post-content p, .blog-post-content li {
    font-size: 1.1rem; line-height: 1.8; color: #343a40;
}
.blog-post-content h2, .blog-post-content h3 {
    font-weight: 600; margin-top: 2rem; margin-bottom: 1rem;
}
/* Galeri */
.post-gallery {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1rem; margin: 2rem 0;
}
.post-gallery-item img {
    width: 100%; height: auto; border-radius: 8px;
}
/* Yan Panel (Sidebar) */
.sidebar-widget {
    background-color: var(--bg-card);
    padding: 1.5rem; border-radius: 12px;
    margin-bottom: 1.5rem;
}
.sidebar-widget h5 {
    font-size: 1.1rem; font-weight: 600;
    margin: 0 0 1rem 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}
.sidebar-widget .source-link {
    display: block; background-color: #E1306C; color: #fff !important;
    padding: 0.75rem; text-align: center; border-radius: 8px;
    font-weight: 600; transition: all 0.3s ease;
}
.sidebar-widget .source-link:hover { opacity: 0.9; transform: translateY(-2px); }

/* Sosyal Medya Embed Alanı */
.blog-detay-body .social-media-embed {
    margin-top: 2rem; /* Açıklamadan boşluk */
    margin-bottom: 2rem; /* Altındaki içerikten boşluk */
}

.blog-detay-body .social-media-embed .instagram-embed {
    /* Instagram embed kodları genellikle kendi stillerini içerir. */
}

.blog-detay-body .social-media-embed .ratio {
    margin-bottom: 1.5rem;
}

.blog-detay-body .social-media-embed .ratio iframe {
    border-radius: 8px;
}

.blog-detay-body .social-media-embed .text-warning,
.blog-detay-body .social-media-embed .text-info {
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 1rem;
}

/* =================================================================== */
/* GENEL: MOBİL UYUMLULUK                   */
/* =================================================================== */
@media (max-width: 991.98px) {

body.scrolled {
    padding-top: 100%; /* Navbar'ın küçülmüş yüksekliği kadar */
    transition: padding-top 0.3s ease-in-out;
}

    header.site-header .navbar-collapse {
        background-color: #2c3137; margin-top: 0.2rem; border-radius: 8px;
        padding: 0.3rem; border: 1px solid #343a40;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background-color: #1a1d20;
        padding: 6rem 1.5rem 2rem 1.5rem;
        border-right: 1px solid #343a40;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        display: block !important;
        z-index: 1050; /* DÜZELTME: Tıklanabilirlik için z-index artırıldı */
    }
    .navbar-collapse.is-open {
        transform: translateX(0);
    }
    .site-header .navbar-nav .nav-item {
        width: 100%;
    }
    
    /* Arkaplanı karartan overlay */
    .navbar-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-color: rgba(0,0,0,0.6);
        z-index: 950; /* Menünün arkasında kalır */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }
    .navbar-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

    /* Mobil menü açıkken sayfanın kaymasını engeller */
    body.mobile-menu-active {
        overflow: hidden;
    }
    .page-hero { padding: 4rem 15px; min-height: 400px; }
    .hero-content h1 { font-size: 2.2rem; }
    .takim-detay-body .team-header-v3 { grid-template-columns: 1fr; }
    .takim-detay-body .player-grid { grid-template-columns: repeat(4, 1fr); }
    .takim-detay-body .logo-panel { padding: 1rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.1);}
    .takim-detay-body .logo-panel::after { display: none; }
    .takim-detay-body .info-panel { align-items: center; padding: 1.5rem; background-color: #212529; }
    .takim-detay-body .info-panel h1 { font-size: 2rem; text-align: center; }
    .takim-detay-body .photo-panel { min-height: 200px; order: 2; }
    .takim-detay-body .player-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767.98px) {
    .site-footer .footer-content { flex-direction: column; text-align: center; }
    .site-footer .footer-social { margin-top: 1.5rem; }
    #cookie-banner { flex-direction: column; gap: 1rem; }
    .site-footer .footer-social a { margin: 0 0.75rem; }
    .main-col, .sidebar-col { flex-basis: 100%; }
    .hero-content h1 { font-size: 1.8rem; }
    .page-content { padding-top: 0.1rem; }
    .score-header { font-size: 0.6rem; }
    .section-card { padding: 1rem; }
    
    /* Maç Detay Sayfası */
    .mac-detay-body .score-team img { width: 45px; height: 45px; }
    .mac-detay-body .score-team .name { font-size: 0.7rem; }
    .mac-detay-body .score-main .score { font-size: 2.5rem; }
    .mac-detay-body .timeline-event.event-team-1 { padding-right: 30px; }
    .mac-detay-body .timeline-event.event-team-2 { padding-left: 30px; }
    .mac-detay-body .event-player { font-size: 0.9rem; }
    .mac-detay-body .event-minute { font-size: 0.75rem; }
    .mac-detay-body .referee-info { font-size: 0.5rem; }
    .mac-detay-body .score-main .status { font-size: 0.6rem; }
    .mac-detay-body .match-video-actions { flex-direction: column; }
    .mac-detay-body .match-video-actions .btn-video { width: 100%; justify-content: center; }
    .penalty-box .penalty-rounds-container { padding-left: 1rem; padding-right: 1rem; }
    .penalty-box .timeline-separator { padding-left: 1rem; padding-right: 1rem; font-size: 0.85rem; letter-spacing: 1px; }
    .penalty-box .penalty-round { gap: 1.25rem; }
    .penalty-box .round-number-container { width: 34px; height: 34px; font-size: 0.9rem; }
    .penalty-box .outcome-icon { width: 24px; height: 24px; font-size: 0.8rem; }

    /* Takım Detay Mobil */
    .takim-detay-body .info-panel h1 { font-size: 1.8rem; }
    .takim-detay-body .general-info { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .takim-detay-body .general-info li { padding: 0.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .takim-detay-body .general-info .stat-value { order: 1; font-size: 1rem; }
    .takim-detay-body .general-info .stat-label { order: 2; font-size: 0.6rem; }
    .takim-detay-body .player-grid { grid-template-columns: repeat(2, 1fr); }
    .takim-detay-body .fixture-item { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0.5rem; padding: 0.75rem 0; text-align: left;}
    .takim-detay-body .fixture-team { font-size: 0.6rem; gap: 0.5rem; }
    .takim-detay-body .fixture-team img { height: 24px; width: 24px; }
    .takim-detay-body .fixture-info { padding: 0 0.5rem; }
    .takim-detay-body .fixture-info .score,
    .takim-detay-body .fixture-info .time { font-size: 1rem; }

    .team-header-v3 .info-panel h1 .badge {
        font-size: 0.8rem; /* Daha küçük font boyutu */
        padding: 0.2rem 0.5rem; /* Daha az padding */
        border-radius: 8px; /* Daha küçük köşe радиус */
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); /* Daha hafif gölge */
    }

    .team-header-v3 .info-panel h1 .badge::before {
        opacity: 0.2; /* Daha hafif ışıltı */
        transform: rotate(-45deg) translate(-10px, 0); /* Daha küçük ışıltı hareketi */
    }

    .team-header-v3 .info-panel h1 .badge:hover::before {
        transform: rotate(-45deg) translate(0, 5px); /* Daha küçük hover hareketi */
    }

    .team-header-v3 .info-panel h1 .badge.ml-2 {
        margin-left: 0.3rem; /* Daha az boşluk */
    }
    .past-seasons-buttons {
        justify-content: center; /* Ortala */
    }

    .past-seasons-buttons a {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    /* Aktif (şu an görüntülenen) sezon için stil (isteğe bağlı) */
    .past-seasons-buttons a.active-season {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;
    }

    /* Oyuncu Detay Mobil */
    .player-detay-body .player-hero-header {flex-direction: column; background: none; box-shadow: none; margin: 0; min-height: initial; }
    .player-detay-body .player-photo-panel {height: 300px; width: 100%; border-right: none; border-radius: 16px 16px 0 0; background-position: center 20%; }
    .player-detay-body .player-info-panel { position: relative; z-index: 1; margin-top: -50px; border-radius: 16px; border-top: 3px solid var(--accent-color); 
     background: var(--accent-primary); padding: 1rem; }
    .player-detay-body .jersey-number { position: static; transform: none; font-size: 3.5rem; color: var(--text-light); flex-shrink: 0; text-align: right; }
    .player-detay-body .player-info-main { justify-content: space-between; gap: 1rem; align-items: center; }
    .player-detay-body .player-identity { flex-grow: 1; }
    .player-detay-body .name-and-team-wrapper { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .player-detay-body .name-and-team-wrapper .name-and-pos h1 { font-size: 1.6rem; }
    .player-detay-body .name-and-team-wrapper .name-and-pos .position { font-size: 1rem; }
    .player-detay-body .kaptan-badge { margin-left: 0; margin-top: 0.5rem; }
    .player-detay-body .player-stats-cards { gap: 0.75rem; padding-top: 1rem; margin-top: 1rem; border-top: 1px solid #343a40; grid-template-columns: repeat(5, 1fr); }
    .player-detay-body .stat-card { padding: 0.5rem; }
    .player-detay-body .stat-card .label { font-size: 9px; font-weight: 600; white-space: normal; line-height: 1.2; min-height: 18px; }
    .player-detay-body .stat-card .value { font-size: 1.2rem; }
    .player-detay-body .history-list li { flex-wrap: wrap; gap: 5px; padding: 0.75rem; font-size: 0.85rem; }
    .player-detay-body .history-list .date { flex-basis: 100%; }
    .player-detay-body .history-list .details { flex-grow: 1; }
    .player-detay-body .history-list a.history-item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.75rem; padding: 1rem 0.5rem; }
    .player-detay-body .history-list .date { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }
    .player-detay-body .history-list .details { text-align: left; }
    .player-detay-body .history-list .event-count { font-size: 0.85rem; justify-self: center;  text-align: center;  min-width: 50px; }
    .player-detay-body .history-list .icon { font-size: 0.9rem; margin-right: 0.75rem; }

     /* istatistik Detay Mobil */
    .istatistik-body .page-header { padding: 2rem 0; }
    .istatistik-body .page-header h1 { font-size: 2rem; }
    .istatistik-body .page-header p { font-size: 1rem; }
    .istatistik-body .leaderboard-list li { padding: 0.5rem; }
    .istatistik-body .player-photo { width: 40px; height: 40px; margin: 0 0.75rem; }
    .istatistik-body .player-info h5 { font-size: 0.9rem; }
    .istatistik-body .player-info .team-name { font-size: 0.8rem; }
    .istatistik-body .player-stat .value { font-size: 1.2rem; }
     
     /* Fikstur Detay Mobil */
    .fikstur-body .page-header { padding: 2rem 0; }
    .fikstur-body .page-header h1 { font-size: 2rem; }
    .fikstur-body .match-grid { grid-template-columns: 1fr; }

     /* Puanlar Detay Mobil */
    .puan-durumu-body .pl-header, .pl-row { grid-template-columns: 20px 1fr 20px 20px 20px; padding: 0.75rem; font-size: 0.9rem; }
    .puan-durumu-body .pl-header .d-none-mobile, .pl-row .d-none-mobile { display: none; }
    .puan-durumu-body .pl-team img { width: 24px; height: 24px; }
    .puan-durumu-body .pl-team a { gap: 0.5rem; }
    .puan-durumu-body .pl-team .team-name { font-size: 0.85rem; }

     /* Kurallar Detay Mobil */
    .kurallar-body .rules-container { margin: 1.5rem 15px; }
    .kurallar-body .rule-section h2 { padding: 1rem 1.25rem; font-size: 1.2rem; }
    .kurallar-body .rule-content { padding: 1.25rem; }
    .kurallar-body .page-header { padding: 3rem 1; }
    .kurallar-body .page-header h1 { font-size: 1.8rem; font-weight: 700; color: var(--text-primary); text-align: center;}
    .kurallar-body .page-header p { font-size: 0.8rem; color: var(--text-secondary); text-align: center;}
    .kurallar-body .rule-content p, 
    .kurallar-body .rule-content li { font-size: 0.95rem; }

     /* İletişim Detay Mobil */
    .iletisim-body .contact-columns-container { display: flex; flex-direction: column; }
    .iletisim-body .contact-info-col { order: 1; }
    .iletisim-body .contact-form-col { order: 2; }

     /* Haberler Mobil */
    .haberler-body .page-header {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    .haberler-body .page-header h1 {
        font-size: 2rem;
    }

    /* Öne Çıkan Haber Kartı */
    .haberler-body .featured-news-card {
        grid-template-columns: 1fr; /* Mobil için tek sütun */
        flex-direction: column; /* Flexbox kullanıyorsanız */
    }
    .haberler-body .featured-news-card .news-card-img-container {
        min-height: 200px;
    }
    .haberler-body .featured-news-card .news-card-body {
        padding: 1.5rem;
    }
    .haberler-body .featured-news-card h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    .haberler-body .featured-news-card p {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
    .haberler-body .featured-news-card .read-more {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Standart Haber Kartları */
    .haberler-body .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Daha küçük ekranlarda daha esnek */
        gap: 1rem;
    }
    .haberler-body .news-card .news-card-body {
        padding: 1rem;
    }
    .haberler-body .news-card h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    .haberler-body .news-card .date {
        font-size: 0.75rem;
    }
    .haberler-body .news-card .read-more {
        font-size: 0.85rem;
    }

    /* Sayfalama Stilleri */
    .haberler-body .pagination-container {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    .haberler-body .pagination .page-item .page-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        margin: 0 2px;
    }
    .blog-header {
        height: auto;
        min-height: auto;
        max-height: none;
        padding-bottom: 3.5rem;
    }
    .blog-header-content {
        position: relative; z-index: 2;
     padding: 1.5rem;
    padding-top: 7rem;
    }
    .blog-header-content h1 {
        font-size: 1.2rem;
    }
    .blog-header-content .post-meta {
        font-size: 0.55rem;
    }

    .blog-post-content {
        padding: 0.5rem;
    }
    .blog-post-content p,
    .blog-post-content li {
        font-size: 1rem;
        line-height: 1.6;
    }
    .blog-post-content h2,
    .blog-post-content h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .blog-detay-body .social-media-embed {
        padding: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}


@media (max-width: 576px) {
    .takim-detay-body .player-grid { grid-template-columns: 1fr; }
    .takim-detay-body .fixture-content { gap: 0.5rem; }
}
