.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Main heading */
.main-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sports section */
.sports-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Regular sport items */
.sport-item {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.sport-content {
    flex: 1;
}

.sport-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.sport-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.sport-link {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.sport-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.sport-image {
    flex: 0 0 400px;
}

.sport-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

/* Reverse layout for alternating design */
.reverse-layout {
    flex-direction: row-reverse;
}

/* Special football section */
.football-special {
    flex-direction: column;
    padding: 50px 40px;
}

.football-special .sport-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #27ae60;
}

.football-teams {
    display: flex;
    gap: 40px;
    width: 100%;
}

.team-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.team-section:hover {
    transform: translateY(-3px);
}

.team-content {
    margin-bottom: 25px;
}

.team-name {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-link {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: capitalize;
}

.team-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(39, 174, 96, 0.4);
}

.team-image {
    margin-top: auto;
}

.team-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Tablet styles */
@media (max-width: 768px) {
    .main-content {
        padding: 30px 15px;
    }
    
    .main-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .sport-item {
        flex-direction: column;
        padding: 30px 25px;
        gap: 25px;
    }
    
    .reverse-layout {
        flex-direction: column;
    }
    
    .sport-image {
        flex: none;
        width: 100%;
    }
    
    .sport-image img {
        height: 250px;
    }
    
    .sport-title {
        font-size: 1.7rem;
        text-align: center;
    }
    
    .sport-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .sport-link {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: fit-content;
    }
    
    /* Football section tablet */
    .football-teams {
        flex-direction: column;
        gap: 30px;
    }
    
    .football-special .sport-title {
        font-size: 1.8rem;
    }
    
    .team-name {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .team-description {
        text-align: center;
    }
    
    .team-link {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: fit-content;
    }
}

/* Mobile styles */
@media (max-width: 480px) {
    .main-content {
        padding: 20px 10px;
    }
    
    .main-heading {
        font-size: 1.6rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .sport-item {
        padding: 25px 20px;
        gap: 20px;
    }
    
    .sport-title {
        font-size: 1.5rem;
    }
    
    .sport-description {
        font-size: 0.95rem;
    }
    
    .sport-image img {
        height: 200px;
    }
    
    .sport-link {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Football section mobile */
    .football-special {
        padding: 30px 20px;
    }
    
    .football-special .sport-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .team-section {
        padding: 25px 20px;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-description {
        font-size: 0.95rem;
    }
    
    .team-image img {
        height: 200px;
    }
    
    .team-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}