* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #753E90 0%, #9B59B6 100%);
    min-height: 100vh;
    color: #444444;
    line-height: 1.6;
}

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

.header {
    text-align: center;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(117, 62, 144, 0.3);
}

.header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #753E90;
    margin-bottom: 10px;
}

.header .subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 20px;
}

.team-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.team-link {
    display: inline-block;
    color: #753E90;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(117, 62, 144, 0.1);
    transition: all 0.3s ease;
}

.team-link:hover {
    background: #753E90;
    color: white;
    transform: translateY(-2px);
}

.weekend-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.day-column {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(117, 62, 144, 0.2);
}

.day-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #753E90;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #72DD1F;
}

.friday-section {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.no-matches {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 30px;
}

.match-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #72DD1F;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.team-category {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #753E90;
    font-size: 1.1rem;
}

.match-time {
    color: #753E90;
    font-weight: 600;
    font-size: 1rem;
}

.teams-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.team {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 120px;
}

.team-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
    border-radius: 8px;
}

.team-name {
    font-weight: 500;
    color: #444444;
    font-size: 0.9rem;
    line-height: 1.2;
}

.rival-info {
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
}

.color-top {
    color: #dc3545 !important;
    font-weight: 600 !important;
}

.color-bottom {
    color: #28a745 !important;
    font-weight: 600 !important;
}

.vs {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #753E90;
    font-size: 1.2rem;
    margin: 0 15px;
    flex-shrink: 0;
}

.venue-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.venue-name {
    font-weight: 600;
    color: #753E90;
    margin-bottom: 5px;
}

.venue-address {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.action-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.maps-link, .ical-link {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.maps-link {
    background: #72DD1F;
}

.maps-link:hover {
    background: #5BC91A;
    transform: translateY(-2px);
}

.ical-link {
    background: #753E90;
}

.ical-link:hover {
    background: #9B59B6;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .teams-container {
        flex-direction: column;
        text-align: center;
    }
    
    .team {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .vs {
        margin: 10px 0;
    }
}
