:root {
    --primary: #4361ee;
    --secondary: #f72585;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #212529;
    --success: #06d6a0;
    --warning: #ffd166;
    --danger: #ef476f;
    --card-bg: rgba(255, 255, 255, 0.95);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --border: 1px solid rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f1f5f9 0%, #e9ecef 100%);
    color: var(--dark);
    min-height: 100vh;
    line-height: 1.6;
}


/* Mobil Menü Butonu - Sadece mobilde görünür */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 101;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.6;
}

/* Card Styles */
.card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: var(--border);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-header {
    padding: 20px 25px;
    border-bottom: var(--border);
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-body {
    padding: 25px;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Player Grid */
.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Player Card */
.player-card {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: var(--border);
}

.player-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.player-photo-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.player-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-info {
    padding: 20px;
    flex: 1;
}

.player-name {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.player-team {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-meta {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    color: var(--gray);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.player-meta div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.player-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.player-stat {
    text-align: center;
    background: rgba(67, 97, 238, 0.1);
    padding: 12px;
    border-radius: 8px;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Search & Filters */
.search-container {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    padding-left: 45px;
    border-radius: 30px;
    background: rgba(248, 249, 250, 0.8);
    border: var(--border);
    color: var(--dark);
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-group {
    min-width: 200px;
}

.filter-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px;
    background: rgba(248, 249, 250, 0.8);
    border: var(--border);
    color: var(--dark);
    font-size: 1rem;
    box-shadow: var(--shadow);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.1);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination a.active {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.pagination a:hover:not(.active) {
    background: rgba(67, 97, 238, 0.2);
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px;
    border: var(--border);
    background: rgba(248, 249, 250, 0.8);
    font-size: 1rem;
    color: var(--dark);
    box-shadow: var(--shadow);
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(67, 97, 238, 0.4);
}

.btn-secondary {
    background: var(--light);
    color: var(--primary);
    border: var(--border);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: rgba(67, 97, 238, 0.1);
    transform: translateY(-3px);
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.league-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}

.league-table th {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 15px 10px;
    text-align: left;
    font-weight: 600;
    color: white;
}

.league-table td {
    padding: 12px 10px;
    border-bottom: var(--border);
}

.league-table tr:nth-child(even) {
    background: rgba(248, 249, 250, 0.5);
}

.league-table tr:hover {
    background: rgba(67, 97, 238, 0.1);
}

.team-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-logo-sm {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid rgba(67, 97, 238, 0.3);
    color: var(--primary);
}

/* Sponsorlar */
.sponsor-banner {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.sponsor-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    position: relative;
}

.sponsor-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.sponsor-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.sponsor-item img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
    object-fit: contain; /* Resimlerin oranlarını koruyarak sığmasını sağlar */
}

.sponsor-item:hover img {
    transform: scale(1.05);
}

.sponsor-item.empty {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 70px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE DESIGN - MOBIL UYUMLULUK
   ============================================ */

/* Tablet ve Küçük Desktop (1200px ve altı) */
@media (max-width: 1200px) {
    .container {
        padding: 0 4%;
    }
    
    .sponsor-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
}

/* Tablet (992px ve altı) */
@media (max-width: 992px) {
    .container {
        padding: 0 3%;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .sponsor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .player-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .card-header {
        padding: 18px 20px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobil (768px ve altı) */
@media (max-width: 768px) {
    /* Container ve Spacing */
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .section-header p {
        font-size: 1rem;
        margin-top: 15px;
    }
    
    /* Grid Layouts */
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .player-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sponsor-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Cards */
    .card {
        border-radius: 12px;
    }
    
    .card-header {
        padding: 15px 18px;
    }
    
    .card-title {
        font-size: 1.2rem;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .card-body {
        padding: 18px;
    }
    
    /* Hero Slider */
    .hero {
        height: 350px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    /* Match Teams */
    .match-teams {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .team {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .team-logo {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .match-score {
        font-size: 1.8rem;
        order: -1;
        width: 100%;
        margin-bottom: 10px;
    }
    
    /* Tables */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px 20px;
        padding: 0 15px;
    }
    
    .league-table {
        font-size: 0.9rem;
        min-width: 600px;
    }
    
    .league-table th {
        padding: 12px 8px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .league-table td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }
    
    .team-row {
        gap: 8px;
    }
    
    .team-logo-sm {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    /* Player Cards */
    .player-card {
        border-radius: 12px;
    }
    
    .player-photo-container {
        height: 180px;
    }
    
    .player-photo {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .player-info {
        padding: 18px;
    }
    
    .player-name {
        font-size: 1.2rem;
    }
    
    .player-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Search & Filters */
    .search-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-box {
        min-width: 100%;
        width: 100%;
    }
    
    .filters {
        width: 100%;
        flex-direction: column;
    }
    
    .filter-group {
        min-width: 100%;
        width: 100%;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-height: 44px; /* Touch-friendly */
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    /* Forms */
    .form-control {
        padding: 14px 18px;
        font-size: 16px; /* iOS zoom önleme */
        min-height: 44px; /* Touch-friendly */
        border-radius: 25px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    /* Pagination */
    .pagination {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 25px;
    }
    
    .pagination a {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    /* Top Scorers Grid */
    .top-scorers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .top-scorer-card {
        padding: 20px;
    }
    
    .top-scorer-card .player-photo {
        width: 100px;
        height: 100px;
    }
    
    .top-scorer-card .player-name {
        font-size: 1.1rem;
    }
    
    .top-scorer-card .player-goals {
        font-size: 2rem;
    }
    
    /* Live Match Indicators */
    .live-badge {
        font-size: 0.75rem;
        padding: 3px 10px;
        margin-left: 8px;
    }
    
    .match-minute-indicator {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .minute-text {
        font-size: 1rem;
    }
    
    /* Season Indicator */
    .season-indicator {
        margin: 10px 15px;
        padding: 12px 15px;
    }
    
    .season-indicator .current-season {
        font-size: 1rem;
    }
    
    .season-indicator .season-info {
        font-size: 0.85rem;
    }
    
    /* Sponsor Banner */
    .sponsor-banner {
        padding: 30px 0;
        margin-top: 40px;
    }
    
    .sponsor-item {
        padding: 20px;
        min-height: 140px;
    }
    
    .sponsor-item img {
        max-height: 80px;
    }
    
    /* Footer */
    footer {
        padding: 50px 0 25px;
        margin-top: 60px;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}

/* Küçük Mobil (576px ve altı) */
@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Cards */
    .card-header {
        padding: 12px 15px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-body {
        padding: 15px;
    }
    
    /* Hero */
    .hero {
        height: 300px;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero-content h2 {
        font-size: 1.5rem !important;
    }
    
    .hero-content p {
        font-size: 0.9rem !important;
    }
    
    /* Tables */
    .league-table {
        font-size: 0.8rem;
        min-width: 550px;
    }
    
    .league-table th {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
    
    .league-table td {
        padding: 8px 6px;
        font-size: 0.8rem;
    }
    
    /* Player Stats */
    .player-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
    
    /* Forms */
    .form-control {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    /* Top Scorers */
    .top-scorer-card {
        padding: 18px;
    }
    
    .top-scorer-card .player-photo {
        width: 90px;
        height: 90px;
    }
    
    .top-scorer-card .player-name {
        font-size: 1rem;
    }
    
    .top-scorer-card .player-goals {
        font-size: 1.8rem;
    }
    
    .scorer-rank {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -10px;
        right: -10px;
    }
}

/* Çok Küçük Mobil (400px ve altı) */
@media (max-width: 400px) {
    .container {
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .hero {
        height: 250px;
    }
    
    .hero-content h2 {
        font-size: 1.3rem !important;
    }
    
    .hero-content p {
        font-size: 0.85rem !important;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .league-table {
        font-size: 0.75rem;
        min-width: 500px;
    }
    
    .player-name {
        font-size: 1.1rem;
    }
}

/* Landscape Orientation (Yatay) */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 280px;
    }
    
    .section {
        padding: 35px 0;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Touch cihazlar için hover efektlerini kaldır */
    .card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    /* Touch-friendly tıklama alanları */
    .btn,
    .pagination a,
    .social-links a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Daha büyük tıklama alanları */
    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
    }
    
    .dot {
        width: 14px;
        height: 14px;
    }
}
.live-badge {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 10px;
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.live-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    animation: shine 3s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}
/* style.css dosyasının en altına ekle */
.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.team-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    border: 2px solid rgba(67, 97, 238, 0.2);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.team-logo img {
    max-width: 100%;
    max-height: 100%;
    padding: 5px;
}

.team-name {
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.match-score {
    font-size: 2rem;
    font-weight: 700;
    min-width: 100px;
    text-align: center;
    color: var(--primary);
}

.live-indicator {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 10px;
    margin-top: 20px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
/* Diğer stiller aynı kalacak */

/* SLIDER STILLERİ */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

/* YENİ SLIDER STİLLERİ */
.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

/* CSS GÜNCELLEMESİ */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 3;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* CANLI GÖSTERGE DÜZELTMESİ */
.live-indicator {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 10px;
    margin-top: 20px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.live-indicator > div {
    display: flex;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

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

/* RESİM YOLLARI İÇİN DÜZELTME */
.team-logo-sm img,
.player-photo img,
.sponsor-item img {
    max-width: 100%;
    height: auto;
    display: block;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* style.css dosyasının en altına ekleyin */
.btn.btn-primary,
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: var(--primary);
    color: #fff;
}

.btn.btn-secondary,
.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}
/* Sezon Seçici Stilleri */
.season-selector {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.season-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.season-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.season-dropdown {
    position: relative;
    display: inline-block;
}

.season-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 12px;
    z-index: 1000;
    margin-top: 10px;
    overflow: hidden;
}

.season-dropdown:hover .season-dropdown-content {
    display: block;
}

.season-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--dark);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.season-item:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.season-item.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.season-item .badge {
    background: #dc2626;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Sezon göstergesi */
.season-indicator {
    background: rgba(67, 97, 238, 0.1);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 8px 16px;
    margin: 10px 0;
    text-align: center;
}

.season-indicator .current-season {
    font-weight: 700;
    color: var(--primary);
}

.season-indicator .change-season {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 5px;
}
}


