:root {
  --primary-color: #168942;
}

/***** Genel Ayarlamalar *****/
a {
    text-decoration: none;
}
.bg-primary-color{
    background-color: var(--primary-color) !important;
}
.btn.active{
    background-color: var(--primary-color) !important;
}
/***** Sosyal Medya Butonları *****/
.side-card .side-btn-facebook {
  background: #145dc2;
  color: #fff;
  border: none;
}

/***** Fiktür *****/
#fixture-title {
    color: var(--primary-color);
}
.fixture-card {
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
background-color: #fff;
border: 1px solid #e9ecef;
}
.fixture-card:hover {
transform: translateY(-3px);
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.team-logo {
width: 60px;
height: 60px;
object-fit: contain;
border-radius: 8px;
}
.navbar-dark .navbar-nav .nav-link.active {
    font-weight: bold;
    border-bottom: 2px solid white;
}
.sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
}
.score {
    font-size: 2.5rem;
    font-weight: 700;
    color: #198754;
}
.score-separator {
    font-size: 2rem;
    font-weight: 300;
    color: #6c757d;
}
.winner-score {
    font-weight: 900;
    color: var(--primary-color);
}
.loser-score {
    color: #6c757d;
}
.match-status-badge {
    font-size: 0.9rem;
}
.vs-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: #6c757d;
}
.match-date-success {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
}
.match-date-warning {
    background: linear-gradient(135deg, #ffc107, #ffca2c);
    color: white;
}
.match-time {
    background-color: #e9ecef;
    color: #495057;
}
.venue-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 8px 12px;
}
.league-badge {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
}

/***** Players *****/
.section-title {
    background: var(--primary-color);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.5rem 2rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin-bottom: 2rem;
    display: inline-block;
}
.player-card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 0;
    background: #fff;
    min-height: 280px;
}
    .player-card .card-body {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 2;
        color: #fff;
        padding: 2rem 1.5rem 1.5rem 1.5rem;
        background: linear-gradient(110deg, #198754 0 20%, transparent 90%);
        width: 70%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;

    }
    .player-card .card-body:hover {
        width: 100%;
        transition: width 0.3s ease-in-out;
    }
    .player-card .card-body:hover .player-number {
        color: white;
        transition: color 0.3s ease-in-out;
    }
    .player-card .player-role {
        font-size: 1rem;
        color: #bbb;
        margin-bottom: 2rem;
    }
    .player-card .player-number {
        position: absolute;
        left: 1.5rem;
        bottom: 1.5rem;
        font-size: 2rem;
        color: #bbb;
        font-weight: 400;
    }
    .player-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        object-position: center;
        z-index: 1;
    }
    @media (max-width: 991px) {
        .player-card img {
            height: 320px;
        }
    }
    @media (max-width: 767px) {
        .player-card img {
            height: 220px;
        }
    }

/***** Player Details *****/
.player-detail-card {
    position: relative;
    background: #fff;
    min-height: 420px;
    overflow: hidden;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.08);
}
.player-detail-left {
    background: #198754;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 0;
    position: relative;
}
.player-detail-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    letter-spacing: 2px;
}
.player-detail-img {
    width: 90%;
    max-width: 260px;
    border-radius: 0.5rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    background: #fff;
    margin-bottom: 2rem;
}
.player-detail-info {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem 2.5rem 2rem;
}
.player-detail-title {
    font-size: 2.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #222;
    border-left: 4px solid #198754;
    padding-left: 12px;
    margin-bottom: 1.5rem;
}
.player-detail-table {
    width: 100%;
    font-size: 1.08rem;
}
.player-detail-table td {
    padding: 0.4rem 0.7rem 0.4rem 0;
    border: none;
    vertical-align: top;
}
.player-detail-table td:first-child {
    color: #444;
    font-weight: 500;
    min-width: 120px;
    width: 140px;
}
.player-detail-table td:last-child {
    color: #222;
    font-weight: bold;
}
.player-detail-bglogo {
    position: absolute;
    right: 2.5rem;
    bottom: 1.5rem;
    width: 320px;
    max-width: 60%;
    opacity: 0.07;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}
    @media (max-width: 991px) {
        .player-detail-bglogo { display: none; }
    }
    @media (max-width: 767px) {
        .player-detail-left { min-height: 180px; }
        .player-detail-img { max-width: 160px; }
        .player-detail-title { font-size: 1.3rem; }
        .player-detail-info { padding: 1.2rem 0.5rem; }
    }
