.page-sports {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #ffffff; /* Explicitly set for clarity, though body default is white */
}

.page-sports__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: #26A9E0; /* Brand color for hero background */
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    overflow: hidden;
}

.page-sports__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-right: 40px;
    text-align: left;
}

.page-sports__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-sports__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-sports__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.page-sports__hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-sports__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

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

.page-sports__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-sports__introduction-section,
.page-sports__benefits-section,
.page-sports__mobile-app-section,
.page-sports__responsible-gaming-section,
.page-sports__faq-section {
    padding: 60px 0;
}

.page-sports__dark-section {
    background-color: #26A9E0;
    color: #ffffff;
    padding: 60px 0;
}

.page-sports__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-sports__text-block--white {
    color: #ffffff;
}

.page-sports__highlight {
    font-weight: bold;
    color: inherit;
}

/* Buttons */
.page-sports__btn-primary,
.page-sports__btn-secondary,
.page-sports__btn-link {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-sports__btn-primary {
    background-color: #EA7C07;
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-sports__btn-primary:hover {
    background-color: #d46b00;
    border-color: #d46b00;
}

.page-sports__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}
.page-sports__hero-section .page-sports__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-sports__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
    border-color: #ffffff;
}

.page-sports__guide-section .page-sports__btn-primary {
    background-color: #26A9E0;
    border-color: #26A9E0;
}
.page-sports__guide-section .page-sports__btn-primary:hover {
    background-color: #1f8ec4;
    border-color: #1f8ec4;
}

.page-sports__btn-link {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-sports__btn-link:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

/* Popular Sports Section */
.page-sports__popular-sports-section .page-sports__section-title {
    color: #ffffff;
}

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

.page-sports__sport-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 20px;
}

.page-sports__sport-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-sports__sport-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-sports__sport-description {
    font-size: 1em;
    color: #555555;
    padding: 0 15px;
    margin-bottom: 20px;
}

/* Benefits Section */
.page-sports__benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-sports__benefit-item {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-sports__benefit-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-sports__benefit-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 15px;
}

/* Guide Section */
.page-sports__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-sports__guide-step {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-sports__step-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
}

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

.page-sports__guide-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Promotions Section */
.page-sports__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-sports__promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 20px;
}

.page-sports__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-sports__promo-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-sports__promo-description {
    font-size: 1em;
    color: #555555;
    padding: 0 15px;
    margin-bottom: 20px;
}

/* Mobile App Section */
.page-sports__app-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-sports__app-text {
    flex: 1;
}

.page-sports__app-features {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 30px;
    color: #555555;
}

.page-sports__app-features li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-sports__app-image-wrapper {
    flex: 1;
    text-align: center;
}

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

/* Responsible Gaming Section */
.page-sports__responsible-tips {
    list-style: disc;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #555555;
    font-size: 1.1em;
}

.page-sports__responsible-tips li {
    margin-bottom: 10px;
}

/* FAQ Section */
.page-sports__faq-list {
    margin-top: 40px;
}

.page-sports__faq-item {
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-sports__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
    background-color: #f0f0f0;
}

.page-sports__faq-title {
    font-size: 1.25em;
    color: #333333;
    margin: 0;
}

.page-sports__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

.page-sports__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8f8f8;
}

.page-sports__faq-item.active .page-sports__faq-answer {
    max-height: 1000px !important;
    padding: 15px 25px;
}

.page-sports__faq-answer p {
    margin: 0;
    font-size: 1em;
    color: #555555;
}

/* Global image styles */
.page-sports img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}