.event-detail-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .event-detail-container {
        padding: 5px;
    }
}

.event-detail-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.event-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.event-date, .event-location {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
}

.event-date i, .event-location i {
    margin-right: 10px;
    font-size: 18px;
    color: #2c82c9;
}

.event-teams {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 30px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
}

.team-logo {
    margin-bottom: 15px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.team-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.event-vs {
    font-size: 30px;
    font-weight: 700;
    color: #ff4d4d;
}

.event-detail-image {
    margin: 30px 0;
    text-align: center;
}

.event-detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.event-detail-text {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

.event-detail-properties {
    display: none;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.event-property {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.event-property:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.property-name {
    font-weight: 600;
    width: 200px;
    color: #666;
}

.property-value {
    flex: 1;
    color: #333;
}

@media (max-width: 768px) {
    .event-teams {
        padding: 10px;
        gap: 10px;
    }

    .team-logo {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
    
    .team {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .event-vs {
        margin: 20px 0;
    }
    
    .event-property {
        flex-direction: column;
    }
    
    .property-name {
        width: 100%;
        margin-bottom: 5px;
    }
} 

.scheme-container {
    width: 100%;
    min-height: 500px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

@media (max-width: 768px) {
    .scheme-container {
        padding: 5px 0;
    }
}