:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --page-bg: #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 {
    background-color: var(--page-bg);
    color: var(--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;
}

.page-fishing-games__section {
    padding: 60px 0;
    position: relative;
}

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 10px 0 60px 0; /* Small top padding, body handles --header-offset */
}

.page-fishing-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
    border-radius: 10px;
    margin-top: 100px; /* Push content down from the top */
}

.page-fishing-games__hero-title {
    font-size: clamp(2em, 4vw, 3.5em);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    border: none;
    cursor: pointer;
}

.page-fishing-games__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games__btn-secondary {
    background-color: var(--deep-green);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--border-color);
    transform: translateY(-2px);
}

.page-fishing-games__hero-cta {
    margin-top: 30px;
}

.page-fishing-games__text-block {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05em;
}

.page-fishing-games__text-block strong {
    color: var(--text-main);
}

.page-fishing-games__introduction-section,
.page-fishing-games__guide-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotion-section,
.page-fishing-games__app-section,
.page-fishing-games__faq-section,
.page-fishing-games__conclusion-section {
    background-color: var(--page-bg);
    padding: 60px 0;
}

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

.page-fishing-games__game-card,
.page-fishing-games__promotion-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.page-fishing-games__game-card:hover,
.page-fishing-games__promotion-card:hover {
    transform: translateY(-5px);
}

.page-fishing-games__game-image,
.page-fishing-games__promotion-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    object-fit: cover;
    width: 100%;
    min-height: 200px;
}

.page-fishing-games__game-title,
.page-fishing-games__promotion-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games__game-description,
.page-fishing-games__promotion-description {
    color: var(--text-secondary);
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__guide-list,
.page-fishing-games__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games__guide-item,
.page-fishing-games__strategy-item {
    background-color: var(--card-bg);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 20px;
    padding: 20px 25px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__guide-heading,
.page-fishing-games__strategy-heading {
    font-size: 1.3em;
    color: var(--text-main);
    margin-bottom: 10px;
}

.page-fishing-games__guide-item p,
.page-fishing-games__strategy-item p {
    color: var(--text-secondary);
    font-size: 1em;
}

.page-fishing-games__guide-item a,
.page-fishing-games__text-block a,
.page-fishing-games__faq-answer a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__guide-item a:hover,
.page-fishing-games__text-block a:hover,
.page-fishing-games__faq-answer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.page-fishing-games__app-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-fishing-games__app-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-fishing-games__app-image-wrapper {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    text-align: center;
}

.page-fishing-games__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    object-fit: contain;
    width: 100%;
    min-height: 200px;
}

.page-fishing-games__app-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    color: var(--text-secondary);
}

.page-fishing-games__app-benefits li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%232AD16F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.page-fishing-games__cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-fishing-games__cta-buttons .page-fishing-games__btn-primary {
    flex-grow: 1;
    max-width: 200px;
}


.page-fishing-games__faq-list {
    margin-top: 40px;
}

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    color: var(--text-main);
    font-weight: 600;
    cursor: pointer;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--divider-color);
    user-select: none;
}

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

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--gold-color);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
    padding: 15px 25px 20px;
    color: var(--text-secondary);
    font-size: 1em;
    background-color: var(--card-bg);
}

.page-fishing-games__faq-answer p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 2em;
    }
    .page-fishing-games__hero-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-fishing-games__hero-description {
        font-size: 1.1em;
    }
    .page-fishing-games__game-list,
    .page-fishing-games__promotion-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-fishing-games__app-flex {
        flex-direction: column;
        gap: 30px;
    }
    .page-fishing-games__app-image-wrapper {
        order: -1;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-fishing-games__cta-buttons .page-fishing-games__btn-primary {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__section {
        padding: 40px 0;
    }
    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-fishing-games__hero-content {
        padding: 30px 15px;
        margin-top: 60px;
    }
    .page-fishing-games__hero-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-fishing-games__hero-description {
        font-size: 1em;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        padding: 12px 20px;
        font-size: 0.9em;
        max-width: 100% !important;
        width: 100% !important;
    }
    .page-fishing-games__game-list,
    .page-fishing-games__promotion-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__guide-item,
    .page-fishing-games__strategy-item {
        padding: 15px 20px;
    }
    .page-fishing-games__guide-heading,
    .page-fishing-games__strategy-heading {
        font-size: 1.2em;
    }
    .page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-fishing-games__faq-answer {
        padding: 10px 20px 15px;
    }

    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-fishing-games__container,
    .page-fishing-games__game-card,
    .page-fishing-games__promotion-card,
    .page-fishing-games__app-flex,
    .page-fishing-games__app-content,
    .page-fishing-games__app-image-wrapper,
    .page-fishing-games__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-fishing-games__hero-section {
        padding-top: 10px !important;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-fishing-games__cta-buttons .page-fishing-games__btn-primary {
        max-width: 100% !important;
        width: 100% !important;
    }
}