/* samp-kulupler-sezon.css */

/* samp-kulupler-sezon.css */

.skk-teams-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 10px;
    width: 100%;
}

.team-card {
    flex: 0 1 calc(25% - 20px); /* 4'lü dizilim */
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 50px; /* Oval çerçeve */
    padding: 8px 15px;
    min-width: 220px;
    box-sizing: border-box;
    transition: transform 0.2s;
}

.team-card:hover {
    border-color: #9af60e;
    transform: translateY(-2px);
}

.logo-area {
    flex: 0 0 45px;
    margin-right: 12px;
}

.team-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.info-area {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.team-name {
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-country {
    color: #999;
    font-size: 12px;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .team-card {
        flex: 0 1 calc(33.33% - 20px); /* Tablet: 3'lü */
    }
}

@media (max-width: 768px) {
    .team-card {
        flex: 0 1 calc(50% - 20px); /* Mobil büyük: 2'li */
    }
}

@media (max-width: 480px) {
    .team-card {
        flex: 0 1 100%; /* Mobil küçük: Tekli */
        min-width: 100%;
    }
}
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.scoreboard-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.scoreboard-table td {
    background-color: #1a1a1a;
    padding: 10px;
    vertical-align: middle;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

/* Sol ve Sağ Oval Köşeler */
.scoreboard-table tr td:first-child {
    border-left: 1px solid #333;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.scoreboard-table tr td:last-child {
    border-right: 1px solid #333;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

/* Ana Hücre Dizilimi */
.match-cell {
    text-align: center;
    white-space: nowrap; /* Asla alt satıra geçme */
    min-width: 450px; /* Elemanların sığması için güvenli alan */
}

.team-name-left {
    display: inline-block;
    width: 150px;
    text-align: right;
    font-weight: bold;
}

.team-name-right {
    display: inline-block;
    width: 150px;
    text-align: left;
    font-weight: bold;
}

.mini-logo {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin: 0 8px;
    display: inline-block;
}

/* Sarımtırak Skor Kutusu Güncelleme */
.score-cell {
    display: inline-block;
    background-color: #e6c300;
    color: #000;
    font-weight: bold; /* Bold yapıldı */
    padding: 5px 12px;
    border-radius: 8px;
    min-width: 50px;
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif; /* Font ailesi eşitlendi */
    font-size: 14px; /* Boyut eşitlendi */
    border: 2px solid #b89b00;
    vertical-align: middle;
}

.match-score {
    text-align: center;
    width: 80px;
    color: #9af60e;
    font-size: 14px; /* Boyut eşitlendi */
    font-weight: bold; /* Bold yapıldı */
}

/* Mobil için kaydırma çubuğu çıkmasını sağlar, tasarımı bozmaz */
@media screen and (max-width: 768px) {
    .team-name-left, .team-name-right { width: 100px; font-size: 12px; }
    .score-cell { padding: 3px 8px; font-size: 14px; }
}
/* Final Kartı Özel Tasarımı */
.final-card-container {
    background-color: #1a1a1a;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 20px;
    margin: 30px 0;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.final-header {
    text-align: center;
    color: #9af60e;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.final-score-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}

.final-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35%;
}

.large-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.final-team-name {
    font-size: 1.5em;
    font-weight: 900;
    text-align: center;
}

.final-score-box {
    background-color: #e6c300;
    color: #000;
    font-size: 4em;
    font-weight: 900;
    padding: 10px 30px;
    border-radius: 15px;
    border: 4px solid #b89b00;
    font-family: 'Courier New', monospace;
}

.final-meta-info {
    display: flex;
    justify-content: space-between;
    text-align: center;
    font-size: 13px;
    background: #000;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.meta-item-center { color: #9af60e; }

/* --- Final Kartı CSS Güncellemesi --- */

/* Gol Kronolojisi */
.goal-timeline {
    width: 100%;
    margin-top: 25px;
}

.timeline-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
}

.timeline-row:last-child {
    border-bottom: none;
}

.minute {
    width: 60px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e6c300; /* Skor kutusuyla aynı sarı */
    color: #000;
    font-weight: 900;
    border-radius: 6px;
    margin: 0 20px;
    font-size: 13px;
    font-family: 'Courier New', monospace;
}

.goal-left, .goal-right {
    width: 45%;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.goal-left { 
    text-align: right; 
    justify-content: flex-end; /* İsmi ve ikonu sağa yaslar */
}

.goal-right { 
    text-align: left; 
    justify-content: flex-start; /* İsmi ve ikonu sola yaslar */
}

.ball-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%; /* Kare resmi daire yapmak için */
    object-fit: cover;
    margin: 0 10px; /* İsim ile ikon arası boşluk */
    vertical-align: middle;
}

/* Mobil Uyumluluk Güncellemesi */
@media screen and (max-width: 768px) {
    .goal-left, .goal-right { font-size: 13px; }
    .minute { margin: 0 10px; width: 50px; }
    .ball-icon { width: 15px; height: 15px; margin: 0 5px; }
}
/* İstatistik Paneli Tasarımı */
.stats-container {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 20px;
    margin: 30px 0;
}

.stats-header {
    text-align: center;
    color: #9af60e;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.stat-item {
    flex: 1;
    min-width: 180px;
    background: #000;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
}

.stat-label {
    display: block;
    color: #888;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    color: #e6c300; /* Skor kutusu sarısı */
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 3px;
}

.stat-sub {
    display: block;
    color: #fff;
    font-size: 12px;
}

/* Mobil için */
@media screen and (max-width: 600px) {
    .stat-item { flex: 0 1 100%; }
}
.final-card-container {
    background: linear-gradient(145deg, #111, #222);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
}

.final-score-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Skor Kutusunun Esneme Sırrı Burada */
.final-score-main {
    font-size: clamp(24px, 8vw, 60px); /* Ekran küçüldükçe otomatik küçülür */
    font-weight: 900;
    color: #000;
    text-shadow: 0 0 15px rgba(154, 246, 14, 0.4);
    padding: 0 20px;
}

.final-team-box {
    flex: 1;
    text-align: center;
}

.final-logo {
    width: clamp(50px, 10vw, 100px);
    display: block;
    margin: 0 auto 10px;
}

.final-team-name {
    font-size: clamp(14px, 3vw, 22px);
    color: #fff;
    font-weight: bold;
}

.final-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: 15px;
    text-align: center;
}

.final-footer .label {
    display: block;
    font-size: 10px;
    color: #888;
}

.final-footer .name {
    font-size: 13px;
    color: #ccc;
    font-weight: bold;
}

@media (max-width: 600px) {
    .final-footer {
        flex-direction: column;
        gap: 15px;
    }
}

/* SSS Maddelerinin Stil Tanımı */
.sss-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #333; /* Maddeler arası ince kesikli çizgi */
}

.sss-item:last-child {
    border-bottom: none; /* Son maddenin altındaki çizgiyi kaldırır */
}

/* SSS Soruları (Strong Etiketi İçin) */
.sss-item strong {
    display: block;
    color: #fdb912; /* Galatasaray sarısı tonuyla uyumlu bir vurgu */
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* SSS Cevapları (P Etiketi İçin) */
.sss-item p {
    color: #ccc; /* Okunabilirliği yüksek açık gri */
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* SSS Başlığı (H3) İçin Küçük Bir Dokunuş */
.sss-container h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}