.page-sports {
    color: #333333; /* Dark text for default white body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-sports__section-title {
    font-size: 2.5em;
    color: #FF4500; /* Main brand color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-sports__hero-section {
    background: linear-gradient(135deg, #1E90FF, #007bff);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-sports__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}

.page-sports__hero-image {
    flex: 1;
    min-width: 200px; /* Ensure minimum size */
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-sports__hero-content {
    flex: 1;
    text-align: left;
    color: #ffffff;
    z-index: 1;
}

.page-sports__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFD700; /* Gold accent */
}

.page-sports__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
}

.page-sports__hero-button {
    display: inline-block;
    background-color: #FF4500; /* Main brand color */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__hero-button:hover {
    background-color: #e63900;
    transform: translateY(-3px);
}

.page-sports__features-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

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

.page-sports__feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px; /* Ensure card content is not too small */
}

.page-sports__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-sports__feature-title {
    font-size: 1.8em;
    color: #1E90FF; /* Accent color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-sports__feature-description {
    font-size: 1em;
    color: #555555;
}

.page-sports__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-sports__how-to-bet-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-sports__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-sports__step-card {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
    min-height: 200px; /* Ensure card content is not too small */
}

.page-sports__step-card:hover {
    background: linear-gradient(135deg, #e0e0e0, #d0d0d0);
}

.page-sports__step-title {
    font-size: 1.6em;
    color: #FF4500; /* Main brand color */
    margin-bottom: 10px;
}

.page-sports__step-description {
    font-size: 0.95em;
    color: #666666;
    margin-bottom: 20px;
}

.page-sports__step-button {
    display: inline-block;
    background-color: #1E90FF; /* Accent color */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.page-sports__step-button:hover {
    background-color: #1565b3;
}

.page-sports__app-section {
    background: #222222;
    padding: 80px 0;
    color: #ffffff;
}

.page-sports__app-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.page-sports__app-content {
    flex: 1;
    text-align: left;
}

.page-sports__app-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-sports__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    min-height: 200px;
}

.page-sports__app-description {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.page-sports__app-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-sports__app-benefits li {
    margin-bottom: 10px;
    font-size: 1em;
    display: flex;
    align-items: center;
}

.page-sports__app-icon {
    color: #FFD700; /* Gold accent */
    font-size: 1.2em;
    margin-right: 10px;
}

.page-sports__app-download-button {
    display: inline-block;
    background-color: #FF4500; /* Main brand color */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__app-download-button:hover {
    background-color: #e63900;
    transform: translateY(-3px);
}

.page-sports__faq-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-sports__faq-item {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-sports__faq-question {
    font-size: 1.4em;
    color: #1E90FF; /* Accent color */
    margin-bottom: 10px;
    cursor: pointer;
}

.page-sports__faq-answer {
    font-size: 1em;
    color: #555555;
    padding-left: 15px;
    border-left: 3px solid #FF4500;
}

.page-sports__faq-link {
    color: #FF4500;
    text-decoration: none;
    font-weight: bold;
}

.page-sports__faq-link:hover {
    text-decoration: underline;
}

.page-sports__button {
    display: inline-block;
    background-color: #FF4500;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-sports__button:hover {
    background-color: #e63900;
}

.page-sports__faq-button {
    display: block;
    margin: 40px auto 0 auto;
    text-align: center;
    max-width: 200px;
}

.page-sports__call-to-action-section {
    background: linear-gradient(90deg, #FF4500, #FFD700);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-sports__call-to-action-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__cta-button {
    background-color: #1E90FF; /* Accent color */
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 1.4em;
}

.page-sports__cta-button:hover {
    background-color: #1565b3;
}

.page-sports__related-content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-sports__related-card {
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.page-sports__related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-sports__related-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.page-sports__related-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-sports__related-title {
    font-size: 1.5em;
    color: #FF4500; /* Main brand color */
    margin: 20px 15px 10px;
}

.page-sports__related-description {
    font-size: 0.95em;
    color: #555555;
    padding: 0 15px 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-sports__hero-container {
        flex-direction: column;
        text-align: center;
    }

    .page-sports__hero-content {
        text-align: center;
    }

    .page-sports__hero-title {
        font-size: 2.8em;
    }

    .page-sports__app-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .page-sports__app-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-sports__hero-title {
        font-size: 2.2em;
    }

    .page-sports__hero-description {
        font-size: 1em;
    }

    .page-sports__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-sports__section-title {
        font-size: 2em;
    }

    .page-sports__app-download-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-sports__cta-button {
        padding: 15px 30px;
        font-size: 1.2em;
    }

    /* Ensure images are responsive and do not overflow */
    .page-sports__hero-image,
    .page-sports__feature-image,
    .page-sports__app-image,
    .page-sports__related-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size even on mobile */
        min-height: 200px;
    }

    .page-sports__container {
        padding: 0 15px;
    }

    .page-sports__faq-answer {
        padding-left: 10px;
    }

    .page-sports__feature-card,
    .page-sports__step-card {
        min-height: auto; /* Allow height to adjust on mobile */
    }

    .page-sports__related-image {
        height: 200px; /* Adjust height for mobile */
    }
}