/* style/fishing-games.css */

:root {
    --primary-color: #113B7A; /* 主色调 */
    --secondary-color: #1D5FD1; /* 辅助色 */
    --text-main-color: #F3F8FF; /* Text Main */
    --text-secondary-color: #AFC4E8; /* Text Secondary */
    --card-bg-color: #10233F; /* Card B G */
    --border-color: #244D84; /* 边框 */
    --glow-color: #4FA8FF; /* Glow */
    --gold-color: #F2C14E; /* Gold */
    --divider-color: #1B3357; /* Divider */
    --deep-navy-color: #08162B; /* Deep Navy */
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* 按钮渐变 */
}

/* Base styles for the page content */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color); /* Light text for dark body background */
    line-height: 1.6;
    background-color: transparent; /* Body background handled by shared.css */
}

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

.page-fishing-games__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-fishing-games__text-block {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-secondary-color);
}

.page-fishing-games__highlight {
    color: var(--gold-color);
    font-weight: bold;
}

/* Links */
.page-fishing-games a {
    color: var(--glow-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Buttons */
.page-fishing-games__cta-button,
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__card-button {
    display: inline-block;
    padding: 15px 40px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__cta-button,
.page-fishing-games__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__cta-button:hover,
.page-fishing-games__btn-primary:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__btn-secondary:hover {
    background: var(--gold-color);
    color: var(--deep-navy-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__card-button {
    background: var(--secondary-color);
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 15px;
}

.page-fishing-games__card-button:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
}

/* HERO Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
    background: var(--deep-navy-color); /* Dark background for the section */
}

.page-fishing-games__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure it takes full width within max-width */
}

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

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-fishing-games__subtitle {
    font-size: 20px;
    color: var(--text-secondary-color);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Intro Section */
.page-fishing-games__intro-section {
    padding: 80px 0;
    background-color: var(--deep-navy-color); /* Dark background */
    color: var(--text-main-color);
}

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

.page-fishing-games__feature-item {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-fishing-games__feature-title {
    font-size: 22px;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__feature-item p {
    font-size: 16px;
    color: var(--text-secondary-color);
}

/* Quick Access Section */
.page-fishing-games__quick-access-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-fishing-games__quick-access-section .page-fishing-games__section-title {
    color: #ffffff;
}

.page-fishing-games__quick-access-section .page-fishing-games__section-title::after {
    background-color: var(--gold-color);
}

.page-fishing-games__quick-access-section .page-fishing-games__text-block {
    color: #ffffff;
}

.page-fishing-games__button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-fishing-games__button-group--center {
    margin-top: 50px;
}

.page-fishing-games__note {
    font-size: 16px;
    margin-top: 30px;
    font-style: italic;
    color: var(--text-secondary-color);
}

/* Game Types Section */
.page-fishing-games__game-types-section {
    padding: 80px 0;
    background-color: var(--deep-navy-color);
    color: var(--text-main-color);
}

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

.page-fishing-games__game-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-fishing-games__game-card img {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--divider-color);
}

.page-fishing-games__game-card .page-fishing-games__card-title {
    font-size: 24px;
    color: var(--gold-color);
    margin: 20px 15px 10px;
    font-weight: bold;
}

.page-fishing-games__game-card p {
    font-size: 16px;
    color: var(--text-secondary-color);
    padding: 0 15px 20px;
    flex-grow: 1; /* Push button to bottom */
}

.page-fishing-games__game-card .page-fishing-games__card-button {
    margin: 0 15px 20px;
    width: calc(100% - 30px);
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-fishing-games__promotions-section .page-fishing-games__section-title {
    color: #ffffff;
}

.page-fishing-games__promotions-section .page-fishing-games__section-title::after {
    background-color: var(--gold-color);
}

.page-fishing-games__promotions-section .page-fishing-games__text-block {
    color: #ffffff;
}

.page-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-fishing-games__promo-item {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-fishing-games__promo-title {
    font-size: 22px;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__promo-item p {
    font-size: 16px;
    color: var(--text-secondary-color);
}

/* Safety & Support Section */
.page-fishing-games__safety-support-section {
    padding: 80px 0;
    background-color: var(--deep-navy-color);
    color: var(--text-main-color);
    text-align: center;
}

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

.page-fishing-games__safety-item {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-fishing-games__safety-title {
    font-size: 22px;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__safety-item p {
    font-size: 16px;
    color: var(--text-secondary-color);
}

.page-fishing-games__security-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
    border: 1px solid var(--border-color);
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-fishing-games__faq-section .page-fishing-games__section-title {
    color: #ffffff;
}

.page-fishing-games__faq-section .page-fishing-games__section-title::after {
    background-color: var(--gold-color);
}

.page-fishing-games__faq-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    color: var(--gold-color);
    font-weight: bold;
    font-size: 18px;
}

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

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
    background: rgba(var(--primary-color), 0.7);
}

.page-fishing-games__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--gold-color);
}

.page-fishing-games__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--glow-color);
    flex-shrink: 0;
    margin-left: 20px;
    width: 30px;
    text-align: center;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 25px 25px;
    background: var(--card-bg-color);
    border-radius: 0 0 10px 10px;
    color: var(--text-secondary-color);
    font-size: 16px;
    line-height: 1.7;
}

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

/* Blog/News Section */
.page-fishing-games__blog-news-section {
    padding: 80px 0;
    background-color: var(--deep-navy-color);
    color: var(--text-main-color);
}

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

.page-fishing-games__blog-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.page-fishing-games__blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--divider-color);
}

.page-fishing-games__blog-card .page-fishing-games__card-title {
    font-size: 22px;
    color: var(--gold-color);
    margin: 20px 20px 10px;
    font-weight: bold;
    line-height: 1.3;
}

.page-fishing-games__blog-card .page-fishing-games__card-title a {
    color: inherit;
}

.page-fishing-games__blog-card .page-fishing-games__card-title a:hover {
    color: var(--glow-color);
    text-decoration: underline;
}

.page-fishing-games__blog-card .page-fishing-games__card-date {
    font-size: 14px;
    color: var(--text-secondary-color);
    margin: 0 20px 15px;
}

.page-fishing-games__blog-card p {
    font-size: 16px;
    color: var(--text-secondary-color);
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-fishing-games__card-link {
    display: inline-block;
    color: var(--glow-color);
    text-decoration: none;
    font-weight: bold;
    margin: 0 20px 20px;
}

.page-fishing-games__card-link:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games__section-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .page-fishing-games__text-block {
        font-size: 17px;
        margin-bottom: 25px;
    }

    .page-fishing-games__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

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

    .page-fishing-games__subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .page-fishing-games__cta-button,
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        padding: 12px 30px;
        font-size: 16px;
    }

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

    .page-fishing-games__intro-section,
    .page-fishing-games__quick-access-section,
    .page-fishing-games__game-types-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__safety-support-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__blog-news-section {
        padding: 60px 0;
    }

    .page-fishing-games__features-grid,
    .page-fishing-games__game-grid,
    .page-fishing-games__promo-list,
    .page-fishing-games__safety-grid,
    .page-fishing-games__blog-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__hero-image img {
        border-radius: 8px;
    }

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

    .page-fishing-games__text-block {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .page-fishing-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

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

    .page-fishing-games__subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .page-fishing-games__cta-button,
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__card-button {
        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__button-group {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-fishing-games__game-card img {
        
    }

    .page-fishing-games__game-card .page-fishing-games__card-title,
    .page-fishing-games__blog-card .page-fishing-games__card-title {
        font-size: 20px;
        margin: 15px 15px 8px;
    }

    .page-fishing-games__game-card p,
    .page-fishing-games__blog-card p {
        font-size: 15px;
        padding: 0 15px 15px;
    }

    .page-fishing-games__promo-title,
    .page-fishing-games__safety-title,
    .page-fishing-games__feature-title {
        font-size: 20px;
    }

    details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }

    .page-fishing-games__faq-qtext {
        font-size: 16px;
    }

    .page-fishing-games__faq-toggle {
        font-size: 24px;
        margin-left: 15px;
        width: 25px;
    }

    details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
        padding: 0 20px 20px;
        font-size: 15px;
    }

    .page-fishing-games__blog-card .page-fishing-games__card-date {
        margin: 0 15px 10px;
    }
    .page-fishing-games__card-link {
        margin: 0 15px 15px;
    }

    .page-fishing-games__security-image {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }
    .page-fishing-games__subtitle {
        font-size: 15px;
    }
    .page-fishing-games__section-title {
        font-size: 24px;
    }
    .page-fishing-games__hero-image {
        margin-bottom: 20px;
    }
    .page-fishing-games__cta-button {
        padding: 10px 25px;
        font-size: 15px;
    }
    .page-fishing-games__game-card img {
        
    }
}