/* style/fishing-games.css */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #F3F8FF; /* Text Main */
    background-color: var(--deep-navy); /* From shared.css */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding as body handles header offset */
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for desktop */
    overflow: hidden;
}

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

.page-fishing-games__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    z-index: 1;
    background-color: rgba(16, 35, 63, 0.8); /* Card BG with transparency */
    border-radius: 10px;
    margin-top: -80px; /* Overlap slightly for visual effect, but not text on image */
    position: relative;
}

.page-fishing-games__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.page-fishing-games__hero-description {
    font-size: 1.2em;
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 30px;
    line-height: 1.5;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
    color: #F3F8FF; /* Text Main */
    border: 2px solid transparent;
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(43, 115, 246, 0.4);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #2B73F6; /* Primary button top color */
    border: 2px solid #2B73F6;
}

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

/* General Sections */
.page-fishing-games__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 25px;
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #AFC4E8; /* Text Secondary */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-fishing-games__dark-section {
    background-color: #10233F; /* Card BG */
    padding: 60px 0;
}

.page-fishing-games__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 40px auto 0 auto;
    max-width: 800px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Highlights Section */
.page-fishing-games__highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__highlight-card {
    background-color: #10233F; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #F3F8FF;
}

.page-fishing-games__highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

.page-fishing-games__card-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
}

.page-fishing-games__card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #AFC4E8; /* Text Secondary */
}

/* Game Types Section */
.page-fishing-games__game-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 900px;
}

.page-fishing-games__game-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 5px solid #2B73F6;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.page-fishing-games__game-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-fishing-games__game-name {
    font-size: 1.4em;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
}

.page-fishing-games__game-details {
    font-size: 1em;
    color: #AFC4E8;
    line-height: 1.6;
}

/* Guide Section */
.page-fishing-games__guide-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 900px;
}

.page-fishing-games__guide-item {
    display: flex;
    flex-direction: column;
    background-color: #10233F; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.page-fishing-games__guide-step-title {
    font-size: 1.3em;
    color: #2B73F6; /* Button gradient top color */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games__guide-step-description {
    font-size: 1em;
    color: #AFC4E8;
    line-height: 1.6;
}

/* Promotions Section */
.page-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 900px;
}

.page-fishing-games__promo-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #1B3357; /* Divider */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-fishing-games__promo-title {
    font-size: 1.4em;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
}

.page-fishing-games__promo-details {
    font-size: 1em;
    color: #AFC4E8;
    line-height: 1.6;
}

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

.page-fishing-games__reason-card {
    background-color: #10233F; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    color: #F3F8FF;
}

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

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

.page-fishing-games__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #1B3357; /* Divider */
    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;
    font-size: 1.2em;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    background-color: #10233F; /* Card BG */
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-fishing-games__faq-item[open] > .page-fishing-games__faq-question {
    background-color: #113B7A; /* Main color */
}

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

.page-fishing-games__faq-qtext {
    flex-grow: 1;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: #F3F8FF;
}

.page-fishing-games__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
}

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

/* Final CTA Section */
.page-fishing-games__cta-final-section {
    padding: 80px 0;
    text-align: center;
    background-color: #08162B; /* Deep Navy */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__container {
        padding: 30px 15px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }

    .page-fishing-games__hero-description {
        font-size: 1.1em;
    }

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

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

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__container {
        padding: 20px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* HERO 主图区域 */
    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
        padding-bottom: 20px;
    }

    .page-fishing-games__hero-image-wrapper {
        max-height: 300px; /* Adjust height for mobile */
    }

    .page-fishing-games__hero-content {
        padding: 30px 15px;
        margin-top: -50px; /* Adjust overlap for mobile */
        width: calc(100% - 30px);
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.5em, 7vw, 2.5em);
        margin-bottom: 15px;
    }

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

    /* 产品展示图区域 (Highlights Grid) */
    .page-fishing-games__highlights-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

    .page-fishing-games__highlight-card {
        padding: 20px;
    }

    /* 通用图片与容器 */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__content-image {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: auto;
        margin-right: auto;
    }
    .page-fishing-games__intro-section,
    .page-fishing-games__game-types-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__why-choose-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-final-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }

    /* 按钮与按钮容器 */
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 10px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .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: 12px 15px;
        font-size: 1em;
    }

    /* 其他内容模块 */
    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-fishing-games__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-fishing-games__game-item,
    .page-fishing-games__guide-item,
    .page-fishing-games__promo-item,
    .page-fishing-games__faq-item {
        margin-left: 15px;
        margin-right: 15px;
        width: calc(100% - 30px);
        box-sizing: border-box;
    }

    .page-fishing-games__game-list,
    .page-fishing-games__guide-list,
    .page-fishing-games__promo-list,
    .page-fishing-games__faq-list {
        margin-left: 0;
        margin-right: 0;
    }

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

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

    .page-fishing-games__reason-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

    .page-fishing-games__cta-final-section {
        padding: 40px 0;
    }
}