.page-sports {
    font-family: 'Arial', sans-serif;
    color: #F3F8FF; /* Text Main */
    background-color: #08162B; /* Deep Navy, matching body background expectation */
    line-height: 1.6;
}

.page-sports__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-sports__section-padding {
    padding: 60px 0;
}

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    color: #F3F8FF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-sports__hero-image {
    width: 100%;
    max-height: 600px; /* Limit height for hero image on desktop */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-sports__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-sports__hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px 60px;
    max-width: 900px;
    margin-top: -100px; /* Pull content up slightly over image for visual flow */
    background: linear-gradient(to top, rgba(8, 22, 43, 0.9) 0%, rgba(8, 22, 43, 0.7) 50%, rgba(8, 22, 43, 0) 100%);
    border-radius: 10px;
}

.page-sports__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Using clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F3F8FF;
}

.page-sports__hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #AFC4E8; /* Text Secondary */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-sports__cta-buttons--center {
    justify-content: center;
    margin-top: 30px;
}

.page-sports__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-sports__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 5px 15px rgba(17, 67, 166, 0.4);
}

.page-sports__btn-primary:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 67, 166, 0.6);
}

.page-sports__btn-secondary {
    background: transparent;
    color: #4FA8FF; /* Glow */
    border: 2px solid #4FA8FF; /* Glow */
}

.page-sports__btn-secondary:hover {
    background: #4FA8FF; /* Glow */
    color: #08162B; /* Deep Navy */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 168, 255, 0.3);
}

.page-sports__btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* General Titles & Text Blocks */
.page-sports__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #F3F8FF;
}

.page-sports__section-title--light {
    color: #F3F8FF;
}

.page-sports__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-sports__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-sports__text-block {
    flex: 1;
    min-width: 0;
}
}