.page-fishing-games {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: sans-serif; /* Roboto气质 */
    line-height: 1.6;
}

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

.page-fishing-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    margin-bottom: 40px;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
}

.page-fishing-games__hero-image {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and content */
    border-radius: 8px;
}

.page-fishing-games__hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-fishing-games__main-title {
    /* No fixed large font-size, use font-weight, line-height, letter-spacing */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFF6D6; /* Main text color */
    margin-bottom: 15px;
    /* Optional: text-gradient for H1, if allowed for non-homepage H1 */
    /* background: linear-gradient(90deg, #F2C14E, #FFD36B); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.page-fishing-games__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF6D6;
}

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

.page-fishing-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.page-fishing-games__btn--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for light button */
    border: none;
}

.page-fishing-games__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-fishing-games__btn--secondary {
    background-color: transparent;
    border: 2px solid #F2C14E; /* Main color as border */
    color: #FFF6D6;
}

.page-fishing-games__btn--secondary:hover {
    background-color: #F2C14E;
    color: #111111;
    transform: translateY(-2px);
}

.page-fishing-games__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    border-radius: 30px;
}

.page-fishing-games__section-title {
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FFF6D6;
    background: linear-gradient(90deg, #F2C14E, #FFD36B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Section */
.page-fishing-games__about-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

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

.page-fishing-games__feature-item {
    background-color: #111111; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #3A2A12; /* Border color */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px #FFD36B80; /* Glow */
}

.page-fishing-games__feature-image {
    width: 100%;
    height: 200px; /* Enforce min 200px height for content images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-fishing-games__feature-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #F2C14E; /* Main color for sub-titles */
}

.page-fishing-games__feature-text {
    font-size: 1em;
    color: #FFF6D6;
}

/* Games Showcase Section */
.page-fishing-games__games-showcase {
    padding: 60px 0;
    background-color: #0A0A0A;
}

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

.page-fishing-games__game-card {
    background-color: #111111; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #3A2A12; /* Border color */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px #FFD36B80; /* Glow */
}

.page-fishing-games__game-image {
    width: 100%;
    height: 220px; /* Enforce min 200px height */
    object-fit: cover;
}

.page-fishing-games__game-title {
    font-size: 1.4em;
    font-weight: 600;
    margin: 20px 20px 10px;
    color: #F2C14E;
}

.page-fishing-games__game-description {
    font-size: 0.95em;
    margin: 0 20px 20px;
    color: #FFF6D6;
    flex-grow: 1; /* Push button to bottom */
}

.page-fishing-games__game-card .page-fishing-games__btn {
    margin: 0 20px 20px;
    align-self: flex-start; /* Align button to start */
}

.page-fishing-games__button-wrapper {
    text-align: center;
    margin-top: 20px;
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

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

.page-fishing-games__step-item {
    background-color: #111111; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #3A2A12; /* Border color */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.page-fishing-games__step-text {
    font-size: 1em;
    color: #FFF6D6;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

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

.page-fishing-games__promo-card {
    background-color: #111111; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #3A2A12; /* Border color */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px #FFD36B80; /* Glow */
}

.page-fishing-games__promo-image {
    width: 100%;
    height: 250px; /* Enforce min 200px height */
    object-fit: cover;
}

.page-fishing-games__promo-title {
    font-size: 1.4em;
    font-weight: 600;
    margin: 20px 20px 10px;
    color: #F2C14E;
}

.page-fishing-games__promo-text {
    font-size: 0.95em;
    margin: 0 20px 20px;
    color: #FFF6D6;
    flex-grow: 1;
}

.page-fishing-games__promo-card .page-fishing-games__btn {
    margin: 0 20px 20px;
    align-self: flex-start;
}

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

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

.page-fishing-games__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-fishing-games__faq-question {
    font-size: 1.2em;
    font-weight: 600;
    padding: 20px;
    cursor: pointer;
    color: #FFF6D6;
    position: relative;
    background-color: #1a1a1a;
    transition: background-color 0.3s ease;
}

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

.page-fishing-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

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

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 10px 20px 20px;
}

.page-fishing-games__faq-answer p {
    margin-bottom: 10px;
}

.page-fishing-games__faq-answer .page-fishing-games__btn {
    margin-top: 10px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: 2.5em;
    }
    .page-fishing-games__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-top: 10px;
    }
    .page-fishing-games__main-title {
        font-size: 2em;
    }
    .page-fishing-games__description {
        font-size: 1em;
    }
    .page-fishing-games__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__feature-image,
    .page-fishing-games__game-image,
    .page-fishing-games__promo-image {
        max-width: 100%; /* Important for mobile overflow */
        height: auto;
        min-height: 200px; /* Ensure minimum size */
    }

    /* Content area images MUST use max-width: 100%; height: auto; */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content area images are not smaller than 200px */
    .page-fishing-games__feature-image,
    .page-fishing-games__game-image,
    .page-fishing-games__promo-image {
        min-width: 200px;
        min-height: 200px;
    }
    /* Override for specific small buttons within image containers that might inherit img rules */
    .page-fishing-games__faq-answer .page-fishing-games__btn {
        max-width: none; /* Allow button to take natural width */
        width: auto;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: 1.8em;
    }
    .page-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games__container {
        padding: 0 15px;
    }
}