.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: transparent; /* Body background from shared.css */
    padding-top: 0; /* Assumes shared.css sets padding-top for body */
}

/* Hero Banner */
.page-fishing-games__hero-banner {
    padding: 80px 0;
    text-align: center;
    background-color: #8B0000; /* Auxiliary color for a strong banner background */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-fishing-games__hero-banner .page-fishing-games__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.page-fishing-games__hero-content {
    flex: 1;
    text-align: left;
    z-index: 1;
}

.page-fishing-games__main-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

.page-fishing-games__intro-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-fishing-games__cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-tertiary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* For button responsiveness */
    box-sizing: border-box; /* For button responsiveness */
    white-space: normal; /* For button responsiveness */
    word-wrap: break-word; /* For button responsiveness */
}

.page-fishing-games__btn-primary {
    background-color: #FFD700; /* Gold */
    color: #000000; /* Dark text for gold background */
    border: 2px solid #FFD700;
}

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

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #FFD700;
    color: #000000;
}

.page-fishing-games__btn-tertiary {
    background-color: #8B0000; /* Dark red */
    color: #ffffff;
    border: 2px solid #8B0000;
    font-size: 14px;
    padding: 10px 20px;
}

.page-fishing-games__btn-tertiary:hover {
    background-color: #6a0000;
    border-color: #6a0000;
}


.page-fishing-games__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
}

.page-fishing-games__hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

/* General Section Styles */
.page-fishing-games__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__section:last-of-type {
    border-bottom: none;
}

.page-fishing-games__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
}

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

.page-fishing-games__dark-bg {
    background-color: #000; /* Ensure dark background for sections */
    color: #f0f0f0; /* Light text */
}

.page-fishing-games__light-bg {
    background-color: #ffffff; /* Light background for cards */
    color: #333333; /* Dark text */
}

.page-fishing-games p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #f0f0f0; /* Ensure light text for paragraphs */
}

.page-fishing-games__image-block {
    text-align: center;
    margin: 40px 0;
}

.page-fishing-games__image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

/* Features Grid */
.page-fishing-games__features-grid,
.page-fishing-games__steps-grid,
.page-fishing-games__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__feature-card,
.page-fishing-games__step-card,
.page-fishing-games__promo-card {
    background-color: #ffffff; /* Light background for cards */
    color: #333333; /* Dark text for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-card:hover,
.page-fishing-games__step-card:hover,
.page-fishing-games__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__card-title {
    font-size: 22px;
    font-weight: bold;
    color: #8B0000; /* Dark red for card titles */
    margin-bottom: 15px;
}

.page-fishing-games__feature-card p,
.page-fishing-games__step-card p,
.page-fishing-games__promo-card p {
    color: #555555; /* Slightly darker text for contrast on white cards */
    font-size: 15px;
    flex-grow: 1;
}

.page-fishing-games__feature-card img,
.page-fishing-games__step-card img,
.page-fishing-games__promo-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    display: block;
}

/* Strategy List */
.page-fishing-games__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-fishing-games__list li {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly visible background for list items on dark */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700; /* Gold accent */
    border-radius: 5px;
    font-size: 16px;
    color: #f0f0f0;
}

.page-fishing-games__list li strong {
    color: #FFD700;
}

.page-fishing-games__call-to-action-text {
    text-align: center;
    font-size: 18px;
    margin-top: 40px;
    color: #f0f0f0;
}

.page-fishing-games__call-to-action-text a {
    color: #FFD700;
    text-decoration: underline;
}

/* App Download Section */
.page-fishing-games__app-download {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
    padding: 60px 20px;
}

.page-fishing-games__app-content {
    flex: 1;
}

.page-fishing-games__app-content .page-fishing-games__section-title {
    text-align: left;
    margin-bottom: 25px;
}

.page-fishing-games__app-content p {
    font-size: 17px;
    margin-bottom: 25px;
}

.page-fishing-games__app-content .page-fishing-games__list {
    margin-bottom: 30px;
}

.page-fishing-games__app-content .page-fishing-games__list li {
    font-size: 16px;
    padding: 10px 15px;
}

.page-fishing-games__app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

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

.page-fishing-games__app-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

/* Security Section */
.page-fishing-games__security-content {
    margin-bottom: 40px;
}

.page-fishing-games__security-content p {
    font-size: 17px;
}

.page-fishing-games__security-content .page-fishing-games__list li {
    font-size: 16px;
    padding: 10px 15px;
}

.page-fishing-games__cta-contact {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05); /* Darker background for FAQ items on dark body */
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.1); /* Slightly lighter for question bar */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: #f0f0f0;
}

.page-fishing-games__faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.page-fishing-games__faq-question:active {
    background: rgba(255, 255, 255, 0.2);
}

.page-fishing-games__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: #FFD700; /* Gold for FAQ questions */
}

.page-fishing-games__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #FFD700; /* Gold for toggle icon */
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
    color: #ffffff; /* White when active */
    transform: rotate(45deg); /* Rotate for minus sign visual */
}

.page-fishing-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 20px;
    opacity: 0;
    background: rgba(255, 255, 255, 0.08); /* Slightly darker for answer background */
    border-radius: 0 0 5px 5px;
    color: #f0f0f0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 2000px !important;
    padding: 20px 20px !important;
    opacity: 1;
}

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

.page-fishing-games__container,
.page-fishing-games__hero-banner .page-fishing-games__container,
.page-fishing-games__cta-buttons,
.page-fishing-games__app-buttons,
.page-fishing-games__cta-contact {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__hero-banner .page-fishing-games__container {
        flex-direction: column;
        gap: 30px;
    }

    .page-fishing-games__hero-content {
        text-align: center;
    }

    .page-fishing-games__main-title {
        font-size: 42px;
    }

    .page-fishing-games__app-download {
        flex-direction: column;
        text-align: center;
    }

    .page-fishing-games__app-content .page-fishing-games__section-title {
        text-align: center;
    }
    
    .page-fishing-games__cta-contact {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-fishing-games__hero-banner {
        padding: 60px 0;
    }

    .page-fishing-games__main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .page-fishing-games__intro-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        padding: 0 15px; /* Add padding to container */
    }

    /* 按钮与按钮容器 */
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__btn-tertiary,
    .page-fishing-games a[class*="button"],
    .page-fishing-games a[class*="btn"] {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .page-fishing-games__cta-buttons,
    .page-fishing-games__button-group,
    .page-fishing-games__btn-container,
    .page-fishing-games__app-buttons,
    .page-fishing-games__cta-contact {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    
    .page-fishing-games__cta-buttons,
    .page-fishing-games__app-buttons,
    .page-fishing-games__cta-contact {
        display: flex;
        flex-direction: column; /* Mobile vertical stacking */
    }

    .page-fishing-games__section {
        padding: 40px 0;
    }

    .page-fishing-games__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

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

    .page-fishing-games p {
        font-size: 15px;
    }

    /* 通用图片与容器 */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-fishing-games__container,
    .page-fishing-games__hero-banner .page-fishing-games__container,
    .page-fishing-games__section,
    .page-fishing-games__feature-card,
    .page-fishing-games__step-card,
    .page-fishing-games__promo-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Features Grid, Steps Grid, Promotions Grid */
    .page-fishing-games__features-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .page-fishing-games__feature-card,
    .page-fishing-games__step-card,
    .page-fishing-games__promo-card {
        padding: 20px;
    }

    .page-fishing-games__card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .page-fishing-games__feature-card p,
    .page-fishing-games__step-card p,
.page-fishing-games__promo-card p {
        font-size: 14px;
    }
    
    .page-fishing-games__feature-card img,
    .page-fishing-games__step-card img,
    .page-fishing-games__promo-card img {
        margin-top: 15px;
    }

    /* Strategy List */
    .page-fishing-games__list li {
        font-size: 15px;
        padding: 12px 15px;
    }

    .page-fishing-games__call-to-action-text {
        font-size: 16px;
        margin-top: 30px;
    }

    /* App Download Section */
    .page-fishing-games__app-download {
        flex-direction: column;
        gap: 30px;
        padding: 40px 15px;
    }

    .page-fishing-games__app-content .page-fishing-games__section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .page-fishing-games__app-content p {
        font-size: 15px;
    }
    
    .page-fishing-games__app-content .page-fishing-games__list li {
        font-size: 15px;
    }

    .page-fishing-games__app-image {
        padding: 0 15px; /* Ensure image wrapper has padding */
    }

    /* Security Section */
    .page-fishing-games__security-content p {
        font-size: 15px;
    }

    .page-fishing-games__security-content .page-fishing-games__list li {
        font-size: 15px;
    }

    /* FAQ Section */
    .page-fishing-games__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }

    .page-fishing-games__faq-question h3 {
        font-size: 16px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }

    .page-fishing-games__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }

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

    .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
        padding: 15px !important;
    }
}