.page-sports {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
}

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

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

.page-sports__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-sports__hero-content {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(10, 10, 10, 0.8); /* Semi-transparent background for text below image */
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.page-sports__hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2C14E; /* Main color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__hero-cta {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
    min-width: 200px; /* Ensure button minimum size */
    text-align: center;
}

.page-sports__hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-sports__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #F2C14E; /* Main color */
}

.page-sports__text-content {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.page-sports__button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.page-sports__button:hover {
    opacity: 0.9;
}

.page-sports__button--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 300px;
}

.page-sports__sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-sports__sport-card {
    background-color: #111111; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12; /* Border */
    transition: transform 0.3s ease;
}

.page-sports__sport-card:hover {
    transform: translateY(-5px);
}

.page-sports__sport-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency, will be object-fit */
    object-fit: cover;
    margin-bottom: 15px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-sports__sport-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFD36B; /* Glow color */
}

.page-sports__sport-description {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-sports__sport-cta {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: opacity 0.3s ease;
    min-width: 120px; /* Ensure button minimum size */
    text-align: center;
}

.page-sports__sport-cta:hover {
    opacity: 0.9;
}

.page-sports__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-sports__advantage-item {
    background-color: #111111; /* Card BG */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #3A2A12; /* Border */
}

.page-sports__advantage-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFD36B; /* Glow color */
}

.page-sports__advantage-description {
    font-size: 0.9rem;
    line-height: 1.5;
}

.page-sports__how-to-join-section {
    background-color: #111111; /* Card BG */
    padding: 60px 20px;
    margin-top: 40px;
    border-top: 1px solid #3A2A12;
    border-bottom: 1px solid #3A2A12;
}

.page-sports__steps-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
}

.page-sports__step-item {
    background-color: #0A0A0A; /* Background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #3A2A12; /* Border */
    position: relative;
}

.page-sports__step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F2C14E; /* Main color */
    color: #111111;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-sports__step-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #FFD36B; /* Glow color */
}

.page-sports__step-description {
    font-size: 0.95rem;
    line-height: 1.5;
}

.page-sports__button--cta {
    margin-top: 40px;
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 8px;
    max-width: 350px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-sports__hero-title {
        font-size: clamp(2.2rem, 5.5vw, 3rem);
    }
    .page-sports__section-title {
        font-size: 2rem;
    }
    .page-sports__sports-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-sports__advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-sports__hero-image,
    .page-sports__sport-image {
        max-width: 100%;
        height: auto;
    }
    .page-sports__container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-sports__hero-content {
        padding: 20px 15px;
    }
    .page-sports__hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    .page-sports__hero-description {
        font-size: 1rem;
    }
    .page-sports__section-title {
        font-size: 1.8rem;
    }
    .page-sports__sports-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .page-sports__advantages-grid {
        grid-template-columns: 1fr;
    }
    .page-sports__step-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .page-sports__steps-list {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-sports__hero-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: unset;
        width: 100%;
    }
    .page-sports__button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .page-sports__sport-title {
        font-size: 1.3rem;
    }
    .page-sports__advantage-title {
        font-size: 1.1rem;
    }
    .page-sports__button--cta {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }
}