.fixtures-section {
    padding: 80px 0;
}

.fixtures-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-teal);
}

.category-header h3 {
    font-size: 28px;
    margin: 0;
}

.category-header i {
    font-size: 28px;
    color: var(--primary-teal);
}

.category-header.live {
    border-bottom-color: var(--accent-red);
}

.category-header.live i,
.category-header.live h3 {
    color: var(--accent-red);
}

.live-indicator {
    width: 12px;
    height: 12px;
    background-color: var(--accent-red);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.fixture-card .live-match-header {
    text-align: center;
    margin-bottom: 15px;
}

.fixture-card .match-time {
    display: inline-block;
    padding: 5px 15px;
    color: #e63946;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.fixtures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.fixture-card {
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fixture-card:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.fixture-card.live {
    border-color: var(--accent-red);
    background-color: #fff5f5;
}

.fixture-status {
    text-align: center;
}

.status-badge {
    display: inline-block;
    padding: 5px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.status-badge.live {
    background-color: var(--accent-red);
    color: var(--white);
}

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

.fixture-card .team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.fixture-card .team-logo {
    width: 50px;
    height: 50px;
    background-color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-teal);
}

.fixture-card .team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.fixture-card .team-name {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.fixture-card .team-score {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
color: var(--dark);
}

.fixture-card .vs {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-red);
}

.fixture-card .score-display {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    min-width: 80px;
}

.score-display.live-score {
    color: #e63946;
}

.fixture-card .vs {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-red);
}

.fixture-card .time {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-teal);
}

.fixture-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-teal);
    color: var(--white);
    text-align: center;
}

.fixture-date .day {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.fixture-date .month {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fixture-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.fixture-info span {
    font-size: 13px;
    color: var(--gray);
}

.fixture-info i {
    color: var(--primary-teal);
    margin-right: 5px;
}

.fixtures-filter {
    padding: 80px 0;
    background-color: var(--off-white);
}

.filter-card {
    background-color: var(--white);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.filter-card h4 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-card h4 i {
    color: var(--primary-teal);
}

.filter-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.filter-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 10px;
}

.form-select,
.form-control {
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-select:focus,
.form-control:focus {
    border-color: var(--primary-teal);
    box-shadow: none;
}

.subscribe-section {
    padding: 80px 0;
}

.subscribe-card {
    background-color: var(--dark);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.subscribe-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.subscribe-content i {
    font-size: 48px;
    color: var(--primary-teal);
}

.subscribe-content h4 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 5px;
}

.subscribe-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.subscribe-form {
    display: flex;
    gap: 15px;
}

.subscribe-form input {
    padding: 15px 20px;
    border: 2px solid var(--gray);
    background-color: transparent;
    color: var(--white);
    font-size: 14px;
    min-width: 280px;
}

.subscribe-form input::placeholder {
    color: var(--gray);
}

@media (max-width: 767px) {
    .fixtures-grid {
        grid-template-columns: 1fr;
    }
    
    .subscribe-card {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .subscribe-content {
        flex-direction: column;
    }
    
    .subscribe-form {
        flex-direction: column;
        width: 100%;
    }
    
    .subscribe-form input {
        min-width: 100%;
    }
}

.fixture-card.champion-card {
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, #fff 0%, #fef9e7 100%);
}

.fixture-card.champion-card .score-display.champion-score {
    font-size: 32px;
    color: var(--dark);
}

.fixture-card .team.winner .team-name {
    color: #ff3e3e;
    font-weight: 700;
}

.fixture-card .team.winner .team-logo {
    color: #ff3e3e;
    background: #fff5f5;
}

.fixture-card.fixture-highlight {
    animation: fixtureHighlight 2s ease;
    box-shadow: 0 0 0 4px var(--primary-teal), 0 15px 40px rgba(0, 128, 128, 0.25);
}

@keyframes fixtureHighlight {
    0%, 100% { box-shadow: 0 0 0 4px var(--primary-teal), 0 15px 40px rgba(0, 128, 128, 0.25); }
    50% { box-shadow: 0 0 0 8px var(--primary-teal), 0 20px 50px rgba(0, 128, 128, 0.4); }
}

.fixture-search-wrapper { position: relative; }

.fixture-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    z-index: 50;
    max-height: 420px;
    overflow-y: auto;
    padding: 6px;
}

.fsr-item {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.fsr-item + .fsr-item { margin-top: 4px; }

.fsr-item:hover,
.fsr-item.fsr-active {
    background: var(--off-white);
    border-color: var(--primary-teal);
}

.fsr-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}

.fsr-team {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.fsr-team:last-child { justify-content: flex-end; text-align: right; }

.fsr-team span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fsr-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.fsr-logo-icon {
    font-size: 22px;
    color: var(--primary-teal);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.fsr-score {
    font-weight: 700;
    padding: 4px 10px;
    background: var(--off-white);
    border-radius: 6px;
    font-size: 13px;
    flex-shrink: 0;
}

.fsr-score.fsr-live { background: #fff5f5; color: #e63946; }
.fsr-score.fsr-done { background: #e8f5e9; color: #1b5e20; }

.fsr-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gray);
    text-transform: none;
}

.fsr-badge {
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fsr-badge.fsr-live { background: rgba(230, 57, 70, 0.15); color: #e63946; }
.fsr-badge.fsr-done { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.fsr-badge.fsr-upcoming { background: rgba(20, 184, 166, 0.15); color: var(--primary-teal); }

.fsr-round { color: var(--primary-teal); font-weight: 600; }
.fsr-date, .fsr-venue { display: inline-flex; align-items: center; gap: 4px; }

.fsr-empty {
    padding: 24px 16px;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

.fsr-empty i {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--light-gray);
}

@media (max-width: 600px) {
    .fixture-search-results { max-height: 320px; }
    .fsr-meta { font-size: 11px; }
    .fsr-team span { max-width: 90px; }
}

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

.fixture-card .team-logo img,
.sponsor-card img,
.news-card .news-image img,
.fame-card img,
.gallery-item img,
.about-tournament-image img,
.about-image img,
.board-member-image img,
.hero-img,
.stat-image img,
.event-card img,
.player-image img,
.team-card img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.category-header.final {
    border-bottom-color: var(--gold);
}

.category-header.final i,
.category-header.final h3 {
    color: var(--gold);
}

.status-badge.winner-badge {
    background-color: var(--gold);
    color: var(--dark);
    padding: 8px 20px;
    font-size: 14px;
}

.results-category {
    margin-bottom: 60px;
}

.results-category .category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-teal);
}

.results-category .category-header h3 {
    font-size: 28px;
    margin: 0;
}

.results-category .category-header i {
    font-size: 28px;
    color: var(--primary-teal);
}

.standings-table {
    margin-bottom: 40px;
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    overflow: hidden;
}

.standings-table h4 {
    background-color: var(--dark);
    color: var(--white);
    padding: 15px 20px;
    margin: 0;
    font-size: 18px;
}

.standings-table .table {
    margin: 0;
}

.standings-table .table th {
    background-color: var(--primary-teal);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
    text-align: center;
}

.standings-table .table td {
    padding: 15px;
    text-align: center;
    vertical-align: middle;
}

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

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

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

.epl-table th {
    background: #37003c;
    color: var(--white);
    padding: 14px 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.epl-table th.pos,
.epl-table th.pts {
    width: 55px;
}

.epl-table th.team-col {
    text-align: left;
    width: 180px;
}

.epl-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.epl-table td.pos {
    font-weight: 700;
    color: var(--gray);
}

.epl-table td.team-cell {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    padding-left: 12px;
}

.epl-table td.team-cell .team-name {
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.epl-table td.gd {
    font-weight: 600;
}

.epl-table td.gd.positive {
    color: #00ff85;
}

.epl-table td.gd.negative {
    color: #ff3e3e;
}

.epl-table td.pts {
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
}

.epl-table tbody tr {
    transition: all 0.2s ease;
}

.epl-table tbody tr:hover {
    background: #f8f8f8;
}

.epl-table tbody tr:nth-child(1),
.epl-table tbody tr:nth-child(2),
.epl-table tbody tr:nth-child(3),
.epl-table tbody tr:nth-child(4) {
    background: linear-gradient(90deg, rgba(0,255,133,0.08) 0%, transparent 100%);
}

.epl-table tbody tr:nth-child(1):hover,
.epl-table tbody tr:nth-child(2):hover,
.epl-table tbody tr:nth-child(3):hover,
.epl-table tbody tr:nth-child(4):hover {
    background: linear-gradient(90deg, rgba(0,255,133,0.15) 0%, transparent 100%);
}

.epl-table tbody tr:nth-child(1) {
    box-shadow: inset 3px 0 0 0 #00ff85;
}

.epl-table tbody tr:nth-child(1) .position-badge {
    background: linear-gradient(135deg, #00ff85 0%, #00cc6a 100%);
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0,255,133,0.4);
}

.epl-table tbody tr:nth-child(1) .team-name {
    color: var(--dark);
    font-weight: 700;
}

.epl-table tbody tr:nth-child(1) .pts {
    color: #00ff85;
}

.position-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--dark);
    font-weight: 700;
    font-size: 12px;
}

@media (max-width: 767px) {
    .epl-table {
        font-size: 12px;
    }
    
    .epl-table th,
    .epl-table td {
        padding: 8px 4px;
    }
    
    .epl-table td.team-cell {
        font-size: 11px;
    }
    
    .epl-table td.team-cell .team-name {
        max-width: 100px;
    }
}
