.container {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2rem 4rem;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    margin: 2rem auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #1c2a4e;
}

.header-icon img {
    width: 40px;
    height: 40px;
}

main {
    text-align: left;
}

h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1c2a4e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 800px;
}

.subtitle {
    font-size: 1.125rem;
    color: #5a647e;
    max-width: 700px;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.features {
    font-size: 1rem;
    font-weight: 500;
    color: #5a647e;
    margin-bottom: 3rem;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.sport-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: 12px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.sport-item-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}


.sport-item {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #e9ecef;
}

.sport-item img {
    width: 36px;
    height: 36px;
}

.sport-info {
    text-align: left;
}

.sport-info span {
    display: block;
    font-weight: 600;
    color: #1c2a4e;
    font-size: 0.95rem;
}

.sport-info .learn-more {
    font-size: 0.8rem;
    color: #5a647e;
    text-decoration: none;
}
.sport-info a:hover {
    text-decoration: underline;
}

.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c2a4e;
    margin-bottom: 2rem;
    text-align: left;
}

.clubs-grid {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.club-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #1c2a4e;
    font-size: 0.95rem;
}

.club-item img {
    width: 22px;
    height: 22px;
    object-fit: cover;
    border-radius: 4px;
}

.footer-cta {
    text-align: center;
    margin-top: 40px;
}
.footer-cta p {
    margin-bottom: 20px;
}
.footer-cta .buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
.btn-primary {
    background-color: #007bff;
}
.btn-secondary {
    background-color: #6c757d;
}

/* Load More Button Styles */
.load-more-container {
    text-align: center;
    margin-top: 20px;
}

.load-more-btn {
    cursor: pointer;
    display: inline-block;
}
