:root {
    /* Custom Color Palette */
    --ff66-primary-color: #11A84E;
    --ff66-secondary-color: #22C768;
    --ff66-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --ff66-card-bg: #11271B;
    --ff66-background: #08160F;
    --ff66-text-main: #F2FFF6;
    --ff66-text-secondary: #A7D9B8;
    --ff66-border: #2E7A4E;
    --ff66-glow: #57E38D;
    --ff66-gold: #F2C14E;
    --ff66-divider: #1E3A2A;
    --ff66-deep-green: #0A4B2C;
}

/* body 已 padding-top: var(--header-offset)；页面禁止再写该变量 */
.page-fishing-games {
    background-color: var(--ff66-background);
    color: var(--ff66-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
    background-color: var(--ff66-deep-green);
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
}

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

.page-fishing-games__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-fishing-games__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    color: var(--ff66-gold);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
    font-size: 1.2em;
    color: var(--ff66-text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__cta-buttons--center {
    margin-top: 40px;
}

.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: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
    text-align: center;
}

.page-fishing-games__btn-primary {
    background: var(--ff66-button-gradient);
    color: var(--ff66-text-main);
    border: none;
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--ff66-secondary-color);
    border: 2px solid var(--ff66-secondary-color);
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--ff66-secondary-color);
    color: var(--ff66-background);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-fishing-games__section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--ff66-background);
    color: var(--ff66-text-main);
}

.page-fishing-games__dark-section {
    background-color: var(--ff66-deep-green);
}

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: var(--ff66-gold);
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__subsection-title {
    font-size: 1.8em;
    color: var(--ff66-secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-fishing-games__text-block {
    font-size: 1.1em;
    color: var(--ff66-text-secondary);
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: left;
}

.page-fishing-games__text-block a {
    color: var(--ff66-secondary-color);
    text-decoration: underline;
}

/* Card Styles */
.page-fishing-games__card {
    background-color: var(--ff66-card-bg);
    border: 1px solid var(--ff66-border);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: var(--ff66-text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__card-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-fishing-games__card-title {
    font-size: 1.4em;
    color: var(--ff66-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__card-description {
    font-size: 1em;
    color: var(--ff66-text-secondary);
    text-align: left;
}

/* Feature Grid */
.page-fishing-games__feature-grid,
.page-fishing-games__reason-grid,
.page-fishing-games__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Promotion List */
.page-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-fishing-games__promo-item {
    background-color: var(--ff66-card-bg);
    border: 1px solid var(--ff66-border);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__promo-title {
    font-size: 1.3em;
    color: var(--ff66-gold);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__promo-description {
    font-size: 1em;
    color: var(--ff66-text-secondary);
}

/* FAQ Section */
.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-fishing-games__faq-item {
    background-color: var(--ff66-card-bg);
    border: 1px solid var(--ff66-border);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    color: var(--ff66-text-main);
    font-weight: bold;
    background-color: var(--ff66-deep-green);
    border-bottom: 1px solid var(--ff66-border);
}

.page-fishing-games__faq-item[open] > .page-fishing-games__faq-question {
    border-bottom: 1px solid var(--ff66-border);
}

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

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--ff66-gold);
}

.page-fishing-games__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--ff66-text-secondary);
    line-height: 1.8;
}

.page-fishing-games__faq-answer p {
    margin: 0;
}

/* Conclusion Section */
.page-fishing-games__conclusion-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 2em;
    }
    .page-fishing-games__subsection-title {
        font-size: 1.5em;
    }
    .page-fishing-games__text-block,
    .page-fishing-games__hero-description {
        font-size: 1em;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-fishing-games__section {
        padding: 50px 0;
    }
    .page-fishing-games__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Images responsiveness */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Buttons responsiveness */
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        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__cta-buttons,
    .page-fishing-games__button-group,
    .page-fishing-games__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px;
    }

    /* FAQ for mobile */
    .page-fishing-games__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-answer {
        padding: 15px 20px;
    }

    /* General text size adjustment */
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* No CSS filter for images */
.page-fishing-games img {
    filter: none !important;
}