/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc0000;
    --secondary-color: #000000;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --gray: #666;
    --border-color: #ddd;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header Styles */
.site-header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 80px;
    width: auto;
}

/* Navigation Styles */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-menu > li.active > a,
.nav-menu > li > a:hover {
    color: var(--primary-color);
}

.nav-menu > li > a i {
    font-size: 12px;
}

/* Dropdown Styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    padding-left: 25px;
}

/* Hero Slider Styles - Modern Full Width Design */
.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Responsive height: mobil 100vh, laptop 75vh, büyük ekran aspect-ratio korumalı */
    height: 100vh;
    min-height: 600px;
    max-height: 900px; /* 1920x900 oranını korumak için */
}

/* Laptop ve üzeri: yükseklik sınırla */
@media (min-width: 1024px) {
    .hero-slider {
        height: clamp(600px, 75vh, 800px);
    }
}

/* Büyük monitör: max-height ve aspect-ratio */
@media (min-width: 1536px) {
    .hero-slider {
        height: clamp(700px, 70vh, 900px);
        max-height: 900px;
    }
}

.slider-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

/* Background - Her zaman full width, object-fit: cover */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slide Content - Container içinde sınırlı, dikey ortalanmış */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 1400px;
    padding: 0 clamp(20px, 4vw, 60px);
}

.slide-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: clamp(15px, 2vh, 20px);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease-out;
    line-height: 1.2;
}

.slide-description {
    font-size: clamp(16px, 2.5vw, 24px);
    margin-bottom: clamp(20px, 3vh, 30px);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slide-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(12px, 1.5vh, 15px) clamp(30px, 4vw, 40px);
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(14px, 1.8vw, 18px);
    transition: all 0.3s;
    animation: fadeInUp 1.2s ease-out;
    box-shadow: 0 5px 20px rgba(220, 0, 0, 0.4);
}

.slide-button:hover {
    background: #a00000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 0, 0, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Controls - Dikey ortalanmış */
.slider-controls {
    position: absolute;
    top: 50%;
    right: clamp(15px, 3vw, 30px);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vh, 10px);
    z-index: 20;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: clamp(40px, 5vw, 50px);
    height: clamp(40px, 5vw, 50px);
    border-radius: 50%;
    color: var(--white);
    font-size: clamp(14px, 2vw, 20px);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Next Match Section */
/* Next Match - Full width background, sınırlı content */
.next-match {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    padding: clamp(20px, 3vh, 30px) 0;
    z-index: 10;
}

.match-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: grid;
    grid-template-columns: minmax(150px, 200px) 1fr minmax(220px, 280px);
    gap: clamp(20px, 4vw, 40px);
    align-items: center;
}

/* Left Section - Date */
.match-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Hero Next Match Date */
.next-match .match-date {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.next-match .match-venue {
    font-size: 13px;
    color: var(--white);
}

/* Center Section - Teams */
.match-center {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

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

.team img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background-color: var(--white);
    border-radius: 50%;
    padding: 8px;
}

.team-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    max-width: 200px;
}

.vs {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    padding: 0 10px;
}

/* Right Section - Countdown */
.match-right {
    display: flex;
    justify-content: flex-end;
}

.countdown-grid {
    display: flex;
    gap: 12px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 85px;
}

.countdown-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
}

.countdown-value {
    background-color: #1e3a8a;
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 4px;
    min-width: 85px;
    text-align: center;
    line-height: 1;
}

/* Breaking News Section */
.breaking-news {
    background-color: var(--light-bg);
    padding: 0;
}

.news-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-title {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    min-width: 200px;
}

.news-title h2 {
    font-size: 20px;
    font-weight: 700;
}

.news-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.news-item {
    display: none;
}

.news-item.active {
    display: block;
}

.news-item a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
}

.news-item a:hover {
    color: var(--primary-color);
}

.news-controls {
    display: flex;
    gap: 10px;
    padding-right: 20px;
}

.news-prev,
.news-next {
    background-color: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.news-prev:hover,
.news-next:hover {
    background-color: var(--secondary-color);
}

/* Main Content Section */
.main-content {
    padding: 60px 0;
    background-color: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.section-title.center {
    justify-content: center;
    text-align: center;
}

.section-title.center .title-icon {
    display: none;
}

.title-icon {
    width: 4px;
    height: 40px;
    background-color: var(--primary-color);
    margin-right: 15px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title.center h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

/* News Grid */
.news-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr; /* Varsayılan tek sütun */
}

/* 2 Sütunlu Grid - Anasayfa için */
.news-grid-two-column {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: auto;
}

/* Tablet için 1 sütun (768px ve altı) */
@media (max-width: 768px) {
    .news-grid-two-column {
        grid-template-columns: 1fr !important;
    }
}

/* Mobil için 1 sütun (480px ve altı) */
@media (max-width: 480px) {
    .news-grid-two-column {
        grid-template-columns: 1fr !important;
    }
}

.news-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.news-card.featured {
    grid-column: 1 / -1;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-info {
    padding: 20px;
}

.news-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
    line-height: 1.4;
}

.news-info h3 a {
    transition: var(--transition);
}

.news-info h3 a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date i {
    color: var(--primary-color);
    font-size: 12px;
}

/* View More Button */
.view-more-news,
.view-more-players {
    text-align: center;
    margin-top: 40px;
}

/* Player Section Full List */
.players-section-full {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.season-filter-inline {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.season-filter-inline label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-right: 15px;
}

.season-select {
    padding: 10px 20px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    min-width: 200px;
}

.season-select:hover {
    border-color: var(--primary-color);
}

.season-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 0, 0, 0.1);
}

.player-status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(220, 0, 0, 0.9);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.player-status-badge.injured {
    background: rgba(220, 53, 69, 0.9);
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(220, 0, 0, 0.3);
}

.btn-view-more:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-view-more i {
    transition: var(--transition);
}

.btn-view-more:hover i {
    transform: translateX(5px);
}

/* Sidebar Widgets */
.widget {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

/* Standings Widget */
.standings-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

/* Scrollable standings - tüm takımlar için */
.standings-scrollable {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Scroll bar styling */
.standings-scrollable::-webkit-scrollbar {
    width: 6px;
}

.standings-scrollable::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 3px;
}

.standings-scrollable::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.standings-scrollable::-webkit-scrollbar-thumb:hover {
    background: #b00000;
}

.standing-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: var(--light-bg);
    border-radius: 6px;
    transition: var(--transition);
}

.standing-item:hover {
    background-color: #e0e0e0;
}

.standing-item.highlight {
    background-color: #fff3cd;
    border: 2px solid var(--primary-color);
}

.standing-item .rank {
    font-size: 18px;
    font-weight: 700;
    min-width: 30px;
    color: var(--secondary-color);
}

.standing-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.standing-item .team-name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color);
}

.standing-item .points {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Results Widget */
/* Widget Results - Son Sonuç Widget'ı için */
.widget.results .results-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widget.results .result-item {
    background: var(--light-bg);
    padding: 12px;
    border-radius: 8px;
}

.widget.results .result-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-color);
}

.widget.results .result-header .teams {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-color);
}

.widget.results .result-header .date {
    font-size: 10px;
    color: var(--gray);
}

.widget.results .result-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.widget.results .team-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.widget.results .team-result img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.widget.results .team-result span {
    font-size: 10px;
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
}

.widget.results .score {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 700;
}

.score-value {
    color: var(--secondary-color);
}

.separator {
    color: var(--gray);
}

/* Players Section */
.players-section {

    background-color: var(--white);
    padding:40px  0;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.player-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

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

.player-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.player-card:hover .player-image img {
    transform: scale(1.1);
}

.player-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.player-info {
    padding: 20px;
    text-align: center;
}

.player-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.player-position {
    display: inline-block;
    font-size: 13px;
    color: var(--white);
    background-color: var(--primary-color);
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-stats-mini {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    color: var(--gray);
}

.player-stats-mini span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.player-stats-mini i {
    color: var(--primary-color);
    font-size: 12px;
}

/* Players All Seasons */
.players-all-seasons {
    background-color: var(--light-bg);
    padding: 40px 0;
}

.season-tabs-horizontal {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 50px;
    flex-wrap: wrap;
}

.season-tab-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.season-tab-btn:hover {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 0, 0, 0.15);
}

.season-tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.season-tab-btn .badge-current {
    background: rgba(255, 255, 255, 0.25);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.season-tab-btn.active .badge-current {
    background: rgba(255, 255, 255, 0.3);
}

.season-players-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.season-players-content.active {
    display: block;
}

.season-subtitle {
    text-align: center;
    font-size: 22px;
    color: var(--text-color);
    margin: 20px 0 40px;
    font-weight: 600;
}

.no-players-message {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 12px;
    margin: 40px 0;
}

.no-players-message i {
    font-size: 48px;
    color: var(--gray);
    margin-bottom: 20px;
    display: block;
}

.no-players-message p {
    font-size: 16px;
    color: var(--gray);
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sponsors Section */
.sponsors {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: center;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sponsor-item:hover {
    transform: translateY(-5px);
}

.sponsor-item img {
    max-height: 100px;
    object-fit: contain;
}

/* Inner Header Styles */
.inner-header {
    position: relative;
    background-color: var(--secondary-color);
    padding: 20px 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.page-header h1 {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* News Detail Section */
.news-detail-section {
    padding: 40px 0 80px;
}

.news-detail-content {
    background-color: var(--white);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
    flex-wrap: wrap;
}

.category-badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-meta .news-date,
.news-meta .news-views {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
}

.news-meta i {
    color: var(--primary-color);
}

.news-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-content {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 150%;
}

.news-content p {
    margin-bottom: 20px;
}

.news-content ul {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.news-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--text-color);
}

.news-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.news-content ul li ul {
    margin-top: 12px;
    margin-bottom: 12px;
    padding-left: 20px;
}

.news-content ul li ul li:before {
    width: 6px;
    height: 6px;
    top: 13px;
    background-color: var(--gray);
}

.news-content ol {
    list-style: decimal;
    margin: 20px 0;
    padding-left: 30px;
}

.news-content ol li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--text-color);
    padding-left: 10px;
}

.news-content ol li:before {
    display: none;
}

.news-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.news-content a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.news-content a:visited {
    color: #a00000;
}

.news-content a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Social Share */
.social-share {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.social-share h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 6px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

/* Related News */
.related-news {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid var(--light-bg);
}

.related-news h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.related-news-grid .news-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.related-news-grid .news-card .news-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-news-grid .news-card .news-info h4 a {
    color: var(--secondary-color);
}

.related-news-grid .news-card .news-info h4 a:hover {
    color: var(--primary-color);
}

/* Latest News Widget */
.latest-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.latest-news-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.latest-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-thumb:hover img {
    transform: scale(1.1);
}

.news-info-small {
    flex: 1;
}

.news-info-small h5 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.news-info-small h5 a {
    color: var(--text-color);
    transition: var(--transition);
}

.news-info-small h5 a:hover {
    color: var(--primary-color);
}

.news-date-small {
    font-size: 12px;
    color: var(--gray);
}

.widget-link {
    display: block;
    text-align: center;
    padding: 12px;
    background-color: var(--light-bg);
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    margin-top: 15px;
    transition: var(--transition);
}

.widget-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Contact Section */
.contact-section {
    padding: 40px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-intro {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.required {
    color: var(--primary-color);
}

.form-control {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 0, 0, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(220, 0, 0, 0.3);
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Info Boxes */
.contact-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.info-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #ff4444);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.info-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.info-content a {
    color: var(--primary-color);
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--secondary-color);
}

/* Contact Social */
.contact-social {
    padding-top: 30px;
    border-top: 2px solid var(--light-bg);
}

.contact-social h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.social-links-contact {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.twitter {
    background-color: #1da1f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube {
    background-color: #ff0000;
}

/* Contact Map */
.contact-map {
    margin-top: 60px;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Squad Section */
.squad-section {
    padding: 40px 0 80px;
}

.squad-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.squad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.player-card-detailed {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.player-card-detailed .player-image {
    position: relative;
    overflow: hidden;
    height: 350px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.player-card-detailed .player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.player-card-detailed:hover .player-image img {
    transform: scale(1.1);
}

.player-number-large {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.player-status {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.player-status.injured {
    background-color: #ff9800;
    color: var(--white);
}

.player-info-detailed {
    padding: 25px;
}

.player-info-detailed .player-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.player-info-detailed .player-position {
    display: inline-block;
    font-size: 13px;
    color: var(--white);
    background-color: var(--primary-color);
    padding: 5px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.detail-item i {
    color: var(--primary-color);
    width: 20px;
}

.detail-item small {
    color: var(--gray);
    font-size: 13px;
}

.player-stats-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.player-stats-detailed .stat-item {
    text-align: center;
    padding: 15px 10px;
    background-color: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.player-stats-detailed .stat-item:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.player-stats-detailed .stat-item:hover .stat-value,
.player-stats-detailed .stat-item:hover .stat-label {
    color: var(--white);
}

.stat-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-legend {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 30px;
    margin-top: 60px;
}

.stats-legend h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.legend-item {
    font-size: 14px;
    color: var(--text-color);
}

.legend-item strong {
    color: var(--primary-color);
    margin-right: 5px;
}

.squad-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.squad-navigation .btn-view-more {
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .squad-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .squad-navigation .btn-view-more {
        width: 100%;
        justify-content: center;
    }
    
    /* Players All Seasons Mobile */
    .season-tabs-horizontal {
        flex-direction: column;
        gap: 10px;
    }
    
    .season-tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .season-subtitle {
        font-size: 18px;
    }
    
    .players-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.no-data {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
    margin-top: 40px;
}

.no-data i {
    font-size: 48px;
    color: var(--gray);
    margin-bottom: 20px;
}

.no-data p {
    font-size: 18px;
    color: var(--gray);
}

/* Past Squads Section */
.past-squads-section {
    padding: 40px 0 80px;
}

.season-filter {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.season-filter h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

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

.season-btn {
    padding: 12px 30px;
    background-color: var(--white);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.season-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 0, 0, 0.2);
}

.season-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.past-squad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.past-player-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.past-player-card .player-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.past-player-card .player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.past-player-card:hover .player-image img {
    transform: scale(1.08);
}

.player-number-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    background: rgba(220, 0, 0, 0.9);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.player-info-past {
    padding: 20px;
}

.player-info-past .player-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.player-info-past .player-position {
    display: inline-block;
    font-size: 12px;
    color: var(--white);
    background-color: var(--primary-color);
    padding: 4px 14px;
    border-radius: 15px;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-nationality {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
}

.player-nationality i {
    color: var(--primary-color);
}

.player-stats-mini-past {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--light-bg);
}

.player-stats-mini-past .stat {
    text-align: center;
}

.player-stats-mini-past .value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.player-stats-mini-past .label {
    display: block;
    font-size: 10px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
}

/* Fixture Section */
.fixture-section {
    padding: 40px 0 80px;
}

.league-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.league-tab {
    padding: 15px 35px;
    background-color: var(--white);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.league-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 0, 0, 0.2);
}

.league-tab.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Standings Section */
.standings-section {
    background-color: var(--white);
    margin-bottom: 50px;
}

.standings-table-wrapper {
    overflow-x: auto;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
}

.standings-table thead tr {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    color: var(--white);
}

.standings-table th {
    padding: 15px 12px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.standings-table th:first-child,
.standings-table th:nth-child(2) {
    text-align: left;
}

.standings-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.standings-table tbody tr:hover {
    background-color: var(--light-bg);
}

.standings-table tbody tr.highlight-row {
    background-color: #fff3cd;
    font-weight: 600;
}

.standings-table tbody tr.highlight-row:hover {
    background-color: #ffe69c;
}

.standings-table td {
    padding: 15px 12px;
    font-size: 14px;
    text-align: center;
}

.rank-cell {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
}

.team-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left !important;
}

.team-cell img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.team-name-short {
    display: none;
}

.win-cell {
    color: #28a745;
    font-weight: 600;
}

.loss-cell {
    color: #dc3545;
    font-weight: 600;
}

.positive {
    color: #28a745;
    font-weight: 600;
}

.negative {
    color: #dc3545;
    font-weight: 600;
}

.points-cell {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-color);
}

.table-legend {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: var(--light-bg);
    border-radius: 6px;
    font-size: 13px;
    color: var(--gray);
}

.table-legend strong {
    color: var(--text-color);
}

/* Fixtures Wrapper */
.fixtures-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.fixtures-section {
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.matches-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.match-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.match-card.gaziantep-match {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
}

.match-date-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.match-day {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Matches Section Date */
.matches-section .match-date {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.match-time {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.match-separator {
    color: var(--gray);
    font-size: 13px;
    margin: 0 3px;
}

.match-teams-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.match-team {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.match-team.home {
    justify-content: flex-start;
}

.match-team.away {
    justify-content: flex-end;
}

.match-team img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.match-team .team-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
}

.match-vs {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
}

.match-venue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    margin-top: 10px;
}

.match-venue i {
    color: var(--primary-color);
}

/* Past Match Styles */
.match-card.result {
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.match-card.result.gaziantep-match {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.match-result-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-result-badge.win {
    background-color: #28a745;
    color: var(--white);
}

.match-result-badge.loss {
    background-color: #dc3545;
    color: var(--white);
}

.match-score {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
}

.match-score .score-home,
.match-score .score-away {
    color: var(--gray);
    min-width: 40px;
    text-align: center;
}

.match-score .winner {
    color: var(--primary-color);
}

.match-score .separator {
    color: var(--gray);
    font-size: 20px;
}

.match-quarters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.quarter {
    font-size: 11px;
    color: var(--gray);
    font-weight: 600;
}

.no-data.small {
    padding: 40px 20px;
}

.no-data.small i {
    font-size: 36px;
}

.no-data.small p {
    font-size: 15px;
}

/* News List Section */
.news-list-section {
    padding: 40px 0 80px;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 25px;
    background-color: var(--white);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card-list {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.news-card-list .news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-card-list .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-list:hover .news-image img {
    transform: scale(1.08);
}

.news-card-list .news-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-list .news-info h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-list .news-info h3 a {
    color: var(--secondary-color);
}

.news-card-list .news-info h3 a:hover {
    color: var(--primary-color);
}

.news-card-list .news-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.news-meta-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--gray);
}

.news-meta-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-meta-footer i {
    color: var(--primary-color);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pagination {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background-color: var(--white);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(220, 0, 0, 0.05);
}

.page-link.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 174, 239, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-tbf {
    max-width: 200px;
    margin-bottom: 20px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.contact-info li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-info li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.contact-info li span,
.contact-info li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.contact-info li a:hover {
    color: var(--primary-color);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(220, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(220, 0, 0, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .players-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .fixtures-wrapper {
        grid-template-columns: 1fr;
    }

    .related-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legend-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-name-full {
        display: none;
    }

    .team-name-short {
        display: inline;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu > li > a {
        width: 100%;
        padding: 15px 0;
        font-size: 16px;
        color: var(--white);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.1);
        margin-top: 10px;
        display: none;
    }

    .dropdown li a {
        color: rgba(255, 255, 255, 0.9);
    }

    .dropdown li a:hover {
        background-color: rgba(220, 0, 0, 0.8);
        color: var(--white);
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .logo img {
        height: 70px;
    }

    /* Slider - Tablet responsive */
    .slider-controls {
        flex-direction: row;
        top: auto;
        bottom: clamp(100px, 15vh, 150px);
        transform: none;
    }

    .next-match {
        padding: 20px 0;
    }

    .match-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .match-left,
    .match-center,
    .match-right {
        width: 100%;
    }

    .next-match .match-date {
        font-size: 14px;
    }
    
    .match-time {
        font-size: 14px;
    }
    
    .match-day {
        font-size: 14px;
    }
    
    .match-separator {
        font-size: 14px;
    }

    .league-name {
        font-size: 13px;
    }

    .match-teams {
        flex-direction: row; /* Takımlar yan yana */
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .team {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .team img {
        width: 60px;
        height: 60px;
    }

    .team-name {
        font-size: 13px;
        max-width: 120px;
        text-align: center;
        line-height: 1.3;
    }

    .vs {
        font-size: 16px;
        padding: 0 8px;
    }

    .match-right {
        justify-content: center;
    }

    .countdown-grid {
        gap: 10px;
        justify-content: center;
    }

    .countdown-item {
        min-width: 70px;
    }

    .countdown-value {
        font-size: 28px;
        padding: 10px 15px;
        min-width: 70px;
    }

    .countdown-label {
        font-size: 10px;
    }

    .news-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .news-title {
        width: 100%;
        text-align: center;
    }

    .news-slider {
        padding: 20px;
    }

    .news-controls {
        width: 100%;
        justify-content: center;
        padding: 0 20px 20px;
    }

    .players-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .player-image {
        height: 450px;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .related-news-grid {
        grid-template-columns: 1fr;
    }

    .news-list-grid {
        grid-template-columns: 1fr;
    }

    .past-squad-grid {
        grid-template-columns: 1fr;
    }

    .squad-grid {
        grid-template-columns: 1fr;
    }

    .legend-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .standings-table {
        font-size: 12px;
    }

    .standings-table th,
    .standings-table td {
        padding: 10px 8px;
    }

    .team-cell img {
        width: 25px;
        height: 25px;
    }

    .match-team img {
        width: 35px;
        height: 35px;
    }

    .match-score {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }

    /* Slider - Mobile responsive */
    .slider-controls {
        flex-direction: row;
        top: auto;
        bottom: clamp(80px, 12vh, 120px);
        transform: none;
        gap: 8px;
    }

    .next-match {
        padding: 12px 0;
    }

    .match-wrapper {
        gap: 10px;
    }

    .match-left {
        gap: 4px;
    }

    .next-match .match-date {
        font-size: 12px;
    }
    
    .next-match .match-venue {
        font-size: 11px;
    }
    
    .match-time {
        font-size: 12px;
    }
    
    .match-day {
        font-size: 12px;
    }
    
    .match-separator {
        font-size: 12px;
    }

    .league-name {
        font-size: 11px;
    }

    .match-teams {
        flex-direction: row; /* Takımlar yan yana */
        gap: 8px;
        align-items: center;
        justify-content: center;
    }

    .team {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .team img {
        width: 40px;
        height: 40px;
        padding: 4px;
    }

    .team-name {
        font-size: 10px;
        max-width: 80px;
        text-align: center;
        line-height: 1.2;
    }

    .vs {
        font-size: 12px;
        padding: 0 5px;
    }

    .match-right {
        margin-top: 0;
    }

    .countdown-grid {
        gap: 5px;
    }

    .countdown-item {
        min-width: 50px;
        gap: 3px;
    }

    .countdown-value {
        font-size: 18px;
        padding: 6px 8px;
        min-width: 50px;
    }

    .countdown-label {
        font-size: 8px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PAGE HEADER (İç Sayfalar için)
   ============================================ */

.page-header {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
}

.page-header-content {
    position: relative;
    flex: 1;
    display: flex;
    min-height: 300px;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.page-header-text {
    position: relative;
    z-index: 3;
    color: var(--white);
    padding: 150px 20px 10px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.page-header-text .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.page-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
    animation: fadeInUp 0.6s ease-out;
    text-align: left;
    width: 100%;
}

.page-description {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.95;
    max-width: 800px;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out;
    text-align: left;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out;
    justify-content: flex-start;
    width: 100%;
}

.breadcrumb a {
    color: var(--white);
    transition: var(--transition);
    display: flex;
    gap: 5px;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
}

.breadcrumb .current {
    color: var(--primary-color);
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .page-header {
        min-height: 350px;
    }

    .page-header-content {
        min-height: 250px;
    }

    .page-header-text {
        padding: 40px 20px;
    }

    .page-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .page-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .breadcrumb {
        font-size: 13px;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .page-header {
        min-height: 300px;
    }

    .page-header-content {
        min-height: 200px;
    }

    .page-header-text {
        padding: 30px 15px;
        justify-content: flex-end;
    }

    .page-header-text .container {
        display: flex;
        flex-direction: column;
    }

    .page-title {
        font-size: 28px;
        letter-spacing: 0.5px;
        margin-bottom: 0;
        margin-top: auto;
        order: 1;
    }

    .page-description {
        display: none;
    }

    .breadcrumb {
        display: none;
    }
}

/* ============================================
   NEWS LIST PAGE STYLES
   ============================================ */

.news-list-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Kategori Filtreleri */
.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    color: #333;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Haber Grid - Haber Listesi Sayfası için */
.news-list-section .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.news-card .news-image {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-card .news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.news-card .news-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card .news-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card .news-info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card .news-info h3 a:hover {
    color: var(--primary-color);
}

.news-card .news-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.news-card .news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.news-card .news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #999;
}

.news-card .news-meta i {
    color: var(--primary-color);
}

.news-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.news-card .read-more:hover {
    gap: 12px;
}

/* Sayfalama */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination-number.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-dots {
    color: #999;
    font-weight: bold;
    padding: 0 5px;
}

/* Haber Bulunamadı */
.no-news {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 10px;
}

.no-news i {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-news h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.no-news p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.no-news .btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.no-news .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .news-list-section {
        padding: 40px 0;
    }
    
    .news-list-section .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .news-filters {
        gap: 8px;
        padding: 15px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .pagination-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .news-list-section .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-list-section .news-card .news-image {
        height: 200px;
    }
    
    .news-list-section .news-card .news-info {
        padding: 20px;
    }
    
    .news-card .news-info h3 {
        font-size: 16px;
    }
    
    .pagination {
        flex-direction: column;
        gap: 15px;
    }
    
    .pagination-numbers {
        order: -1;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   TEAM LIST PAGE STYLES
   ============================================ */

/* Team List Section */
.team-list-section {
    padding: 60px 0;
    background: var(--light-bg);
}

/* Season Tabs */
.season-tabs {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.season-tabs .tabs-header {
    margin-bottom: 20px;
}

.season-tabs .tabs-header h3 {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
}

.tabs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.season-tab {
    padding: 12px 24px;
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.season-tab:hover {
    background: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.season-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    font-weight: 600;
}

.current-badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.season-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 15px;
    margin-top: 10px;
    font-weight: 400;
}

/* Team Table */
.team-table-wrapper {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.team-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.team-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a00000 100%);
    color: var(--white);
}

.team-table thead th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.team-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-table tbody tr:hover {
    background: #fafafa;
    transform: scale(1.01);
}

.team-table tbody tr.injured-row {
    background: #fff5f5;
}

.team-table tbody tr.injured-row:hover {
    background: #ffe5e5;
}

.team-table tbody td {
    padding: 15px;
    font-size: 14px;
    vertical-align: middle;
}

/* Table Columns */
.col-number {
    width: 60px;
    text-align: center;
}

.col-photo {
    width: 80px;
    text-align: center;
}

.col-name {
    min-width: 180px;
}

.col-position {
    width: 120px;
}

.col-birth {
    width: 150px;
}

.col-height,
.col-weight {
    width: 90px;
    text-align: center;
}

.col-nationality {
    width: 130px;
}

.col-stats {
    width: 80px;
    text-align: center;
}

.col-status {
    width: 120px;
    text-align: center;
}

/* Table Cell Styles */
.player-number {
    text-align: center;
}

.number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #a00000);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}

.player-photo .photo-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    margin: 0 auto;
}

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

.player-photo .no-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    color: var(--gray);
    font-size: 24px;
}

.player-name-cell strong {
    color: var(--text-color);
    font-weight: 600;
    font-size: 15px;
}

.player-position {
    font-weight: 500;
}

.player-birth .age {
    display: block;
    color: var(--gray);
    font-size: 12px;
    margin-top: 2px;
}

.nationality-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--light-bg);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-color);
}

.nationality-badge i {
    color: var(--primary-color);
}

.player-stat .stat-value {
    display: inline-block;
    padding: 6px 12px;
    background: var(--light-bg);
    border-radius: 6px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.no-data {
    color: var(--gray);
    font-style: italic;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

.status-badge.injured {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.inactive {
    background: #f0f0f0;
    color: #666;
}

/* Stats Legend */
.stats-legend {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.stats-legend h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.legend-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.legend-item strong {
    color: var(--primary-color);
    font-weight: 600;
    min-width: 45px;
}

.legend-item span {
    color: var(--text-color);
    font-size: 14px;
}

/* Team Navigation */
.team-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 0, 0, 0.2);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .team-table {
        font-size: 13px;
    }
    
    .team-table thead th {
        padding: 15px 10px;
        font-size: 12px;
    }
    
    .team-table tbody td {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .col-name {
        min-width: 150px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .team-list-section {
        padding: 40px 0;
    }
    
    .season-tabs {
        padding: 20px 15px;
    }
    
    .tabs-container {
        flex-direction: column;
    }
    
    .season-tab {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile Table Scroll */
    .team-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .team-table {
        min-width: 1000px;
    }
    
    .legend-items {
        grid-template-columns: 1fr;
    }
    
    .team-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Very Small Mobile */
@media (max-width: 480px) {
    .team-table thead th {
        padding: 12px 8px;
        font-size: 11px;
    }
    
    .team-table tbody td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .number-badge {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .player-photo .photo-container {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   MANAGEMENT SECTION STYLES
   ============================================ */

.management-section {
    padding: 60px 0;
    background-color: var(--white);
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.management-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

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

.management-image {
    position: relative;
    overflow: hidden;
    height: 400px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e0e0e0 100%);
}

.management-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.management-card:hover .management-image img {
    transform: scale(1.1);
}

.management-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 80px;
}

.management-info {
    padding: 25px 20px;
}

.management-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.management-position {
    display: inline-block;
    font-size: 14px;
    color: var(--white);
    background-color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Management Responsive */
@media (max-width: 1024px) {
    .management-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .management-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .management-grid {
        grid-template-columns: 1fr;
    }
    
    .management-image {
        height: 350px;
    }
}

/* ============================================
   GALLERY SECTION STYLES
   ============================================ */

/* Gallery List */
.gallery-list-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-decoration: none;
}

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

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.gallery-info i {
    font-size: 20px;
}

.gallery-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 160px;
}

.gallery-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.gallery-content .gallery-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.gallery-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.gallery-date,
.gallery-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.gallery-date i,
.gallery-count i {
    color: var(--primary-color);
    font-size: 13px;
}

/* Gallery Detail */
.gallery-detail-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

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

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    margin-bottom: 20px;
}

.back-button:hover {
    background-color: var(--secondary-color);
    transform: translateX(-5px);
}

.gallery-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.gallery-description {
    font-size: 16px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    font-size: 40px;
    color: var(--white);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 20px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-header h1 {
        font-size: 28px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .gallery-header h1 {
        font-size: 24px;
    }
    
    .gallery-description {
        font-size: 14px;
    }
}

/* ============================================
   CONTACT SECTION STYLES
   ============================================ */

.contact-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Contact Info */
.contact-info-section {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-items {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.contact-details a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.contact-social h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 18px;
    transition: var(--transition);
}

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

/* Contact Form */
.contact-form-section {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.alert i {
    font-size: 20px;
    flex-shrink: 0;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.contact-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-group .required {
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 0, 0, 0.3);
}

/* Map Section */
.map-section {
    margin-top: 40px;
}

.contact-map {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* Google Maps Custom Styles */
.gm-style .gm-style-iw-c {
    border-radius: 12px;
    padding: 0;
}

.gm-style .gm-style-iw-d {
    overflow: auto !important;
}

.gm-style-iw button {
    top: 8px !important;
    right: 8px !important;
}

/* Map Popup */
.map-popup {
    text-align: center;
    padding: 10px;
}

.map-popup h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.map-popup p {
    font-size: 13px;
    color: var(--gray);
    margin: 5px 0;
}

.map-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.map-directions:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-wrapper {
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 25px 20px;
    }
    
    .contact-info-items {
        margin-top: 20px;
    }
    
    .contact-info-item {
        padding: 15px 0;
        gap: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .contact-details h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .contact-details p {
        font-size: 13px;
    }
    
    .contact-social {
        margin-top: 25px;
        padding-top: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-map {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-section .section-title {
        margin-bottom: 20px;
    }
    
    .contact-section .section-title h2 {
        font-size: 20px;
    }
    
    .contact-section .title-icon {
        height: 30px;
    }
    
    .contact-wrapper {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 20px 15px;
        border-radius: 8px;
    }
    
    .contact-info-items {
        margin-top: 15px;
    }
    
    .contact-info-item {
        padding: 12px 0;
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-details h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .contact-details p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .contact-social {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .contact-social h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .contact-map {
        height: 280px;
        margin-top: 20px;
    }
    
    .map-section {
        margin-top: 30px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ========================================
   Match Results Section
======================================== */
.match-results-section {
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.match-results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23000" opacity="0.03"/></svg>');
    pointer-events: none;
}

.match-results-section .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.results-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
}

.results-slider {
    overflow: hidden;
    border-radius: 0;
}

.results-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Match Results Slider Items */
.match-results-section .result-item {
    flex: 0 0 450px;
    width: 450px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.match-results-section .result-item img {
    width: 450px;
    height: auto;
    display: block;
    border-radius: 0;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
}

.match-results-section .result-item:hover img {
    transform: scale(1.05);
}

.match-results-section .result-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0;
}

.match-results-section .result-item:hover .result-overlay {
    opacity: 1;
}

.match-results-section .result-overlay i {
    font-size: 48px;
    color: white;
}

/* Slider Buttons */
.results-slider-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.results-slider-btn:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.9);
}

.results-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.results-prev {
    left: 0;
}

.results-next {
    right: 0;
}

.results-slider-btn i {
    font-size: 20px;
}


/* Lightbox */
.results-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.results-lightbox.active {
    display: flex;
}

.results-lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.results-lightbox-close,
.results-lightbox-prev,
.results-lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.results-lightbox-close:hover,
.results-lightbox-prev:hover,
.results-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.results-lightbox-close {
    top: 20px;
    right: 20px;
}

.results-lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.results-lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.results-lightbox-close i,
.results-lightbox-prev i,
.results-lightbox-next i {
    font-size: 24px;
}

.results-lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 768px) {
    .match-results-section {
        padding: 0;
    }
    
    .results-slider-btn {
        width: 50px;
    }
    
    .results-slider-btn i {
        font-size: 18px;
    }
    
    .results-lightbox-prev,
    .results-lightbox-next {
        width: 40px;
        height: 40px;
    }
    
    .results-lightbox-prev {
        left: 10px;
    }
    
    .results-lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .results-slider-btn {
        width: 40px;
    }
    
    .result-overlay i {
        font-size: 32px;
    }
    
    .results-lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .results-lightbox-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

