.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Adjusted for shared header offset */
    padding-bottom: 40px;
    background-color: #FFFFFF;
    color: #333333;
}

.page-fishing-games__hero-content {
    text-align: center;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-fishing-games__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-fishing-games__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-fishing-games__btn-primary:hover {
    background-color: #1a8cc4;
    border-color: #1a8cc4;
}

.page-fishing-games__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #f0f8ff;
    color: #1a8cc4;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-fishing-games__hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.page-fishing-games__about-f186-section,
.page-fishing-games__promotions-section,
.page-fishing-games__cta-bottom {
    padding: 60px 0;
    text-align: center;
}

.page-fishing-games__dark-section {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-fishing-games__dark-section .page-fishing-games__section-title {
    color: #FFFFFF;
}

.page-fishing-games__section-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 25px;
    color: #26A9E0;
}

.page-fishing-games__text-block {
    font-size: 1.05em;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.page-fishing-games__game-types-section {
    padding: 60px 0;
    text-align: center;
    background-color: #f8f8f8;
    color: #333333;
}

.page-fishing-games__game-types-section .page-fishing-games__section-title {
    color: #26A9E0;
}

.page-fishing-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-fishing-games__game-tile {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.page-fishing-games__game-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__game-image {
    width: 100%;
    height: auto;
    max-height: 150px; /* Ensure images don't stretch tile */
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-fishing-games__game-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-fishing-games__game-description {
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__btn-play {
    background-color: #EA7C07; /* Login color */
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-play:hover {
    background-color: #d46f00;
}

.page-fishing-games__how-to-play-section {
    padding: 60px 0;
    text-align: center;
}

.page-fishing-games__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
    color: #26A9E0;
}

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

.page-fishing-games__step-item {
    background-color: #f0f8ff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333333;
}

.page-fishing-games__step-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-fishing-games__step-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-fishing-games__step-description {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__btn-link {
    color: #EA7C07;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-link:hover {
    color: #d46f00;
}

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

.page-fishing-games__promo-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
}

.page-fishing-games__promo-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-fishing-games__promo-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-fishing-games__promo-description {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-fishing-games__btn-view-promo {
    background-color: #FFFFFF;
    color: #26A9E0;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-view-promo:hover {
    background-color: #e0f0ff;
}

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

.page-fishing-games__faq-section .page-fishing-games__section-title {
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
}

.page-fishing-games__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: #26A9E0;
    cursor: pointer;
    list-style: none;
}

.page-fishing-games__faq-question::-webkit-details-marker {
    display: none;
}

.page-fishing-games__faq-question .page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #EA7C07;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    line-height: 1.7;
    color: #555555;
}

.page-fishing-games__cta-bottom-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-fishing-games__cta-bottom .page-fishing-games__section-title {
    margin-bottom: 20px;
}

.page-fishing-games__cta-bottom .page-fishing-games__text-block {
    margin-bottom: 30px;
}

/* General image responsiveness for all content images */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-fishing-games__container,
    .page-fishing-games__hero-section,
    .page-fishing-games__about-f186-section,
    .page-fishing-games__game-types-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-bottom {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__hero-section {
        flex-direction: column;
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-fishing-games__hero-content {
        margin-bottom: 25px;
    }

    .page-fishing-games__main-title {
        font-size: 2em; /* Adjust for mobile readability */
    }

    .page-fishing-games__description {
        font-size: 1em;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__btn-play,
    .page-fishing-games__btn-link,
    .page-fishing-games__btn-view-promo,
    .page-fishing-games a[class*="button"],
    .page-fishing-games a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games__hero-image {
        object-fit: contain !important; /* Ensure image is not cropped */
        aspect-ratio: unset !important;
        max-height: none !important;
    }

    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-fishing-games__text-block {
        font-size: 0.95em;
    }

    .page-fishing-games__game-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__game-tile {
        aspect-ratio: 1/1 !important;
    }

    .page-fishing-games__promo-image {
        max-height: 180px;
    }

    .page-fishing-games__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-fishing-games__faq-answer {
        padding: 0 20px 15px 20px;
    }

    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Ensure content sections don't cause horizontal scroll */
    .page-fishing-games__about-f186-section,
    .page-fishing-games__game-types-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-bottom {
        overflow-x: hidden;
    }
}