.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #FFFFFF; /* Default body background */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: #26A9E0; /* Main brand color for dark background */
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    padding-top: 0; /* Assuming shared.css handles body padding-top */
    padding-bottom: 80px;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-fishing-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* Overlay effect */
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    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;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-fishing-games__btn-primary {
    background-color: #EA7C07; /* Login color for primary action */
    color: #FFFFFF;
    border: 2px solid #EA7C07;
}

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

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

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

/* Intro Section */
.page-fishing-games__intro-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    color: #333333;
    text-align: center;
}

.page-fishing-games__intro-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #26A9E0;
}

.page-fishing-games__intro-text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 15px auto;
}

/* Features Section */
.page-fishing-games__features-section {
    padding: 80px 0;
    background-color: #26A9E0;
    color: #FFFFFF;
    text-align: center;
}

.page-fishing-games__features-title {
    font-size: 2.8em;
    margin-bottom: 50px;
    color: #FFFFFF;
}

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

.page-fishing-games__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-10px);
}

.page-fishing-games__feature-icon {
    width: 100%; /* Ensure images take full width of container */
    max-width: 250px; /* Max size for feature icons */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__feature-heading {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-fishing-games__feature-description {
    font-size: 1em;
    color: #f0f0f0;
}

/* Popular Games Section */
.page-fishing-games__popular-games-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    color: #333333;
    text-align: center;
}

.page-fishing-games__popular-games-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #26A9E0;
}

.page-fishing-games__popular-games-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

.page-fishing-games__game-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__game-thumbnail {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.page-fishing-games__game-name {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-fishing-games__game-name a {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__game-name a:hover {
    color: #1a7fb4;
}

.page-fishing-games__game-text {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
}

.page-fishing-games__btn-play {
    background-color: #26A9E0;
    border-color: #26A9E0;
    color: #FFFFFF;
}

.page-fishing-games__btn-play:hover {
    background-color: #1a7fb4;
    border-color: #1a7fb4;
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
    padding: 80px 0;
    background-color: #26A9E0;
    color: #FFFFFF;
    text-align: center;
}

.page-fishing-games__how-to-play-title {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.page-fishing-games__how-to-play-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-fishing-games__how-to-play-item {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    transition: background-color 0.3s ease;
}

.page-fishing-games__how-to-play-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.page-fishing-games__how-to-play-step-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.page-fishing-games__how-to-play-step-title a {
    color: #FFFFFF;
    text-decoration: underline;
}

.page-fishing-games__how-to-play-step-title a:hover {
    color: #f0f0f0;
}

.page-fishing-games__how-to-play-step-description {
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-fishing-games__how-to-play-step-description a {
    color: #FFFFFF;
    text-decoration: underline;
}

.page-fishing-games__how-to-play-step-description a:hover {
    color: #f0f0f0;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    color: #333333;
    text-align: center;
}

.page-fishing-games__promotions-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #26A9E0;
}

.page-fishing-games__promotions-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

.page-fishing-games__promotion-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__promotion-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.page-fishing-games__promotion-heading {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-fishing-games__promotion-heading a {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__promotion-heading a:hover {
    color: #1a7fb4;
}

.page-fishing-games__promotion-text {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
}

/* Related Content Section */
.page-fishing-games__related-content-section {
    padding: 80px 0;
    background-color: #26A9E0;
    color: #FFFFFF;
    text-align: center;
}

.page-fishing-games__related-content-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-fishing-games__related-content-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

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

.page-fishing-games__related-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-fishing-games__related-card:hover {
    transform: translateY(-10px);
}

.page-fishing-games__related-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.page-fishing-games__related-heading {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-fishing-games__related-heading a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__related-heading a:hover {
    color: #f0f0f0;
}

.page-fishing-games__related-text {
    font-size: 0.95em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    color: #333333;
}

.page-fishing-games__faq-title {
    font-size: 2.8em;
    margin-bottom: 40px;
    text-align: center;
    color: #26A9E0;
}

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

.page-fishing-games__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: #e5e5e5;
}

.page-fishing-games__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #333333;
}

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

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
    transform: rotate(45deg); /* Changes + to x (minus) */
}

.page-fishing-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 20px !important; /* Active padding */
}

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

.page-fishing-games__faq-answer a {
    color: #26A9E0;
    text-decoration: underline;
}

/* CTA Section */
.page-fishing-games__cta-section {
    padding: 80px 0;
    background-color: #26A9E0;
    color: #FFFFFF;
    text-align: center;
}

.page-fishing-games__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-fishing-games__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* General image styling */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles for Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-fishing-games__container {
        padding: 0 15px;
    }

    /* HERO 主图区域 */
    .page-fishing-games__hero-section {
        min-height: 450px;
        padding-top: 0; /* Still 0, assuming shared handles body padding */
        padding-bottom: 40px;
        flex-direction: column;
    }

    .page-fishing-games__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-fishing-games__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-fishing-games__hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px; /* Constrain button group width */
        margin: 0 auto;
    }

    /* 按钮与按钮容器 */
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games__hero-buttons .page-fishing-games__btn-primary,
    .page-fishing-games__hero-buttons .page-fishing-games__btn-secondary {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column !important; /* Ensure buttons stack */
        gap: 15px;
        width: 100% !important;
        max-width: 300px !important; /* Constrain button group width */
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Intro Section */
    .page-fishing-games__intro-section {
        padding: 40px 0;
    }

    .page-fishing-games__intro-title {
        font-size: 1.8em;
    }

    .page-fishing-games__intro-text {
        font-size: 0.95em;
    }

    /* Features Section */
    .page-fishing-games__features-section {
        padding: 50px 0;
    }

    .page-fishing-games__features-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-fishing-games__features-grid {
        grid-template-columns: 1fr; /* Single column */
    }

    .page-fishing-games__feature-icon {
        max-width: 100%; /* Ensure images take full width of container */
        height: auto;
    }

    /* 产品展示图区域 */
    .page-fishing-games__popular-games-section {
        padding: 50px 0;
    }

    .page-fishing-games__popular-games-title {
        font-size: 2em;
    }

    .page-fishing-games__games-grid {
        grid-template-columns: 1fr; /* Single column for games */
    }

    .page-fishing-games__game-thumbnail {
        height: auto; /* Allow height to adjust */
        min-height: 200px; /* Minimum height to avoid small images */
    }

    /* How to Play Section */
    .page-fishing-games__how-to-play-section {
        padding: 50px 0;
    }

    .page-fishing-games__how-to-play-title {
        font-size: 2em;
    }

    .page-fishing-games__how-to-play-list {
        padding: 0;
    }

    .page-fishing-games__how-to-play-item {
        padding: 20px;
    }

    .page-fishing-games__how-to-play-step-title {
        font-size: 1.4em;
    }

    /* Promotions Section */
    .page-fishing-games__promotions-section {
        padding: 50px 0;
    }
}