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

/* Add background image with overlay */
body {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
                url('/assets/images/sou2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.fixtures-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.fixtures-header h2 {
    color: var(--primary-red);
    font-size: 24px;
    font-weight: 600;
}

.filters {
    display: flex;
    gap: 20px;
}

.filters select {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background: white;
}

/* Fixtures Content */
.fixtures-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.round-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-red);
}

.round-header h3 {
    color: var(--primary-red);
    font-size: 20px;
    font-weight: 600;
}

.round-dates {
    color: #666;
    font-size: 16px;
}

/* Fixture Card */
.fixture-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    gap: 20px;
}

.fixture-card:last-child {
    border-bottom: none;
}

.fixture-card:hover {
    background: #f8f8f8;
}

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

.home-team {
    justify-content: flex-end;
}

.away-team {
    justify-content: flex-start;
}

.team-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.team-name {
    font-weight: 500;
}

.match-details {
    text-align: center;
    min-width: 120px;
}

.match-score {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.match-status {
    font-size: 14px;
    color: #666;
}

.match-status.live {
    color: #ff0000;
    font-weight: bold;
}

.match-venue {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Cup Info */
.cup-info {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.info-card h4 {
    color: var(--primary-red);
    font-size: 18px;
    margin-bottom: 15px;
}

.cup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.cup-stats li {
    text-align: center;
}

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

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .fixture-card {
        grid-template-columns: 1fr auto 1fr;
        gap: 15px;
    }

    .team-logo {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .fixtures-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .filters {
        flex-direction: column;
        width: 100%;
    }

    .filters select {
        width: 100%;
    }

    .fixture-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "details"
            "home"
            "away";
        text-align: center;
        gap: 15px;
    }

    .match-details { grid-area: details; }
    .home-team { 
        grid-area: home;
        justify-content: center;
    }
    .away-team { 
        grid-area: away;
        justify-content: center;
    }

    .cup-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}