/* style/fishing-games-gameplay.css */

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

.page-fishing-games-gameplay {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for main content */
    background-color: var(--background-color); /* Matches body background if shared.css sets --bg-color */
}

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

/* Hero Section */
.page-fishing-games-gameplay__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
    background-color: var(--deep-green);
}

.page-fishing-games-gameplay__hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.page-fishing-games-gameplay__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-fishing-games-gameplay__hero-content {
    position: relative;
    z-index: 2;
    margin-top: -150px; /* Pull content up over image slightly for visual flow */
    padding-top: 50px;
    color: var(--text-main);
}

.page-fishing-games-gameplay__main-title {
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
}

.page-fishing-games-gameplay__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

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

/* General Section Styling */
.page-fishing-games-gameplay__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-gameplay__sub-title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    color: var(--text-main);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games-gameplay__text-block {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--text-main);
}

.page-fishing-games-gameplay__text-main {
    color: var(--text-main);
}

.page-fishing-games-gameplay__text-secondary {
    color: var(--text-secondary);
}

.page-fishing-games-gameplay__dark-section {
    background-color: var(--deep-green);
    padding: 60px 20px;
}

.page-fishing-games-gameplay__light-bg {
    background-color: var(--card-bg);
    color: var(--text-main);
}

/* Buttons */
.page-fishing-games-gameplay__btn-primary,
.page-fishing-games-gameplay__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
    word-wrap: break-word;
}

.page-fishing-games-gameplay__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* White text on primary button for contrast */
    border: none;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-fishing-games-gameplay__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-fishing-games-gameplay__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-fishing-games-gameplay__btn-secondary:hover {
    background-color: rgba(17, 168, 78, 0.1);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.page-fishing-games-gameplay__cta-center {
    text-align: center;
    margin-top: 20px;
}

.page-fishing-games-gameplay__mt-40 {
    margin-top: 40px;
}

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

.page-fishing-games-gameplay__card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-gameplay__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-gameplay__card-title {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games-gameplay__card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Image with Text Block */
.page-fishing-games-gameplay__image-text-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.page-fishing-games-gameplay__image-text-block.page-fishing-games-gameplay__reverse-layout {
    flex-direction: row-reverse;
}

.page-fishing-games-gameplay__text-content,
.page-fishing-games-gameplay__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games-gameplay__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

/* Lists */
.page-fishing-games-gameplay__ordered-list,
.page-fishing-games-gameplay__unordered-list {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-fishing-games-gameplay__ordered-list li,
.page-fishing-games-gameplay__unordered-list li {
    margin-bottom: 10px;
    color: var(--text-main);
}

.page-fishing-games-gameplay__ordered-list strong,
.page-fishing-games-gameplay__unordered-list strong {
    color: var(--gold-color);
}

/* Strategy Grid */
.page-fishing-games-gameplay__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-fishing-games-gameplay__strategy-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-gameplay__strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-gameplay__strategy-card .page-fishing-games-gameplay__card-title {
    color: var(--gold-color);
}

.page-fishing-games-gameplay__strategy-card .page-fishing-games-gameplay__card-text {
    color: var(--text-secondary);
}

/* FAQ Section */
.page-fishing-games-gameplay__faq-list {
    margin-top: 40px;
}

.page-fishing-games-gameplay__faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--card-bg);
    color: var(--text-main);
}

.page-fishing-games-gameplay__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* For details/summary */
    color: var(--text-main);
}

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

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

.page-fishing-games-gameplay__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

/* Conclusion */
.page-fishing-games-gameplay__conclusion-section {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--deep-green);
}

.page-fishing-games-gameplay__copyright {
    margin-top: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* General Image Styling (ensure min 200x200px) */
.page-fishing-games-gameplay img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Ensure images fill their space nicely */
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games-gameplay__hero-content {
        margin-top: -100px;
    }
    .page-fishing-games-gameplay__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-fishing-games-gameplay__hero-description {
        font-size: 1rem;
    }
    .page-fishing-games-gameplay__section-title {
        font-size: clamp(1.6rem, 3.8vw, 2.5rem);
    }
    .page-fishing-games-gameplay__sub-title {
        font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    }
    .page-fishing-games-gameplay__feature-grid, .page-fishing-games-gameplay__strategy-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-fishing-games-gameplay__image-text-block {
        flex-direction: column;
    }
    .page-fishing-games-gameplay__image-text-block.page-fishing-games-gameplay__reverse-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-gameplay {
        font-size: 16px;
        line-height: 1.6;
    }

    /* HERO 主图区域 */
    .page-fishing-games-gameplay__hero-section {
        padding-top: 10px !important; /* Enforce small top padding */
        padding-bottom: 30px;
    }
    .page-fishing-games-gameplay__hero-content {
        margin-top: -80px; /* Adjust pull-up for smaller screens */
        padding-top: 30px;
    }
    .page-fishing-games-gameplay__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-fishing-games-gameplay__hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    /* 通用图片与容器 */
    .page-fishing-games-gameplay img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-fishing-games-gameplay__container,
    .page-fishing-games-gameplay__feature-grid,
    .page-fishing-games-gameplay__strategy-grid,
    .page-fishing-games-gameplay__image-text-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-fishing-games-gameplay__image-wrapper {
        min-width: unset;
    }

    /* 按钮与按钮容器 */
    .page-fishing-games-gameplay__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px;
    }
    .page-fishing-games-gameplay__btn-primary,
    .page-fishing-games-gameplay__btn-secondary,
    .page-fishing-games-gameplay a[class*="button"],
    .page-fishing-games-gameplay 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-left: 15px !important; /* Ensure inner padding */
        padding-right: 15px !important;
    }

    /* 其他内容模块 */
    .page-fishing-games-gameplay__section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-bottom: 30px;
    }
    .page-fishing-games-gameplay__sub-title {
        font-size: clamp(1.1rem, 4vw, 1.6rem);
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-fishing-games-gameplay__card {
        padding: 20px;
    }
    .page-fishing-games-gameplay__card-title {
        font-size: 1.3rem;
    }
    .page-fishing-games-gameplay__faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    .page-fishing-games-gameplay__faq-answer {
        padding: 0 15px 15px 15px;
    }
    .page-fishing-games-gameplay__dark-section,
    .page-fishing-games-gameplay__conclusion-section {
        padding: 40px 15px;
    }
    .page-fishing-games-gameplay__copyright {
        margin-top: 30px;
    }
}