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

.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--fishing-games-text-main); /* Default text color for the page */
    background-color: var(--fishing-games-background);
}

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

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

.page-fishing-games__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--fishing-games-text-secondary);
}

.page-fishing-games__text-block a {
    color: var(--fishing-games-glow-color);
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__text-block a:hover {
    text-decoration: underline;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding as body handles header offset */
    padding-bottom: 60px;
    overflow: hidden;
    background: var(--fishing-games-deep-green);
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Ensure image wrapper does not exceed max width */
    margin-bottom: 30px;
}

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

.page-fishing-games__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-fishing-games__main-title {
    font-weight: 800;
    color: var(--fishing-games-gold-color);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
}

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

.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    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: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-fishing-games__btn-primary {
    background: var(--fishing-games-button-gradient);
    color: var(--fishing-games-text-main);
    border: 2px solid var(--fishing-games-glow-color);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-fishing-games__btn-secondary {
    background: var(--fishing-games-card-bg);
    color: var(--fishing-games-glow-color);
    border: 2px solid var(--fishing-games-glow-color);
}

.page-fishing-games__btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--fishing-games-primary-color);
}

/* General Section Styling */
.page-fishing-games__intro-section,
.page-fishing-games__game-types-section,
.page-fishing-games__guide-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__faq-section,
.page-fishing-games__conclusion-section {
    padding: 60px 0;
}

.page-fishing-games__light-bg {
    background-color: #f0f0f0; /* A light background for contrast */
    color: #333333; /* Dark text for light background */
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
    color: var(--fishing-games-deep-green);
}

.page-fishing-games__light-bg .page-fishing-games__text-block {
    color: #555555;
}

.page-fishing-games__light-bg .page-fishing-games__highlight {
    color: var(--fishing-games-primary-color);
}

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

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

.page-fishing-games__game-card {
    background-color: var(--fishing-games-card-bg);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--fishing-games-border-color);
}

.page-fishing-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--fishing-games-primary-color);
}

.page-fishing-games__card-title {
    font-size: 1.5em;
    color: var(--fishing-games-gold-color);
    margin-bottom: 10px;
}

.page-fishing-games__card-description {
    color: var(--fishing-games-text-secondary);
    font-size: 0.95em;
    margin-bottom: 25px;
}

.page-fishing-games__card-button {
    width: auto;
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Guide List */
.page-fishing-games__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games__guide-list li {
    background-color: #ffffff;
    color: #333333;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-size: 1.05em;
}

.page-fishing-games__guide-list li strong {
    color: var(--fishing-games-primary-color);
}

.page-fishing-games__download-button {
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Strategy Section */
.page-fishing-games__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-fishing-games__strategy-item {
    background-color: var(--fishing-games-card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--fishing-games-divider-color);
}

.page-fishing-games__strategy-item .page-fishing-games__card-title {
    color: var(--fishing-games-glow-color);
    font-size: 1.3em;
}

.page-fishing-games__strategy-item .page-fishing-games__card-description {
    color: var(--fishing-games-text-secondary);
}

.page-fishing-games__strategy-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--fishing-games-primary-color);
}

/* Promotions List */
.page-fishing-games__promotions-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 30px;
    color: #555555;
}

.page-fishing-games__promotions-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-fishing-games__promotions-list li strong {
    color: var(--fishing-games-deep-green);
}

.page-fishing-games__promotions-list li a {
    color: var(--fishing-games-primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__promotions-list li a:hover {
    text-decoration: underline;
}

/* Why Choose Section */
.page-fishing-games__reasons-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games__reasons-list li {
    background-color: var(--fishing-games-card-bg);
    color: var(--fishing-games-text-main);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.05em;
    border-left: 5px solid var(--fishing-games-glow-color);
}

.page-fishing-games__reasons-list li strong {
    color: var(--fishing-games-gold-color);
}

.page-fishing-games__reasons-list li a {
    color: var(--fishing-games-glow-color);
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__reasons-list li a:hover {
    text-decoration: underline;
}

.page-fishing-games__why-choose-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--fishing-games-primary-color);
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 30px;
}

.page-fishing-games__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1em;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

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

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

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--fishing-games-primary-color);
    transition: transform 0.3s ease;
}

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

.page-fishing-games__faq-answer {
    padding: 15px 25px;
    font-size: 1em;
    color: #555555;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

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

.page-fishing-games__conclusion-section .page-fishing-games__section-title {
    color: var(--fishing-games-gold-color);
}

.page-fishing-games__conclusion-section .page-fishing-games__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--fishing-games-text-secondary);
    font-size: 1.15em;
}

.page-fishing-games__conclusion-section .page-fishing-games__cta-buttons {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }

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

    .page-fishing-games__game-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

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

    .page-fishing-games__hero-section {
        padding-bottom: 40px;
    }

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

    .page-fishing-games__subtitle {
        font-size: 1em;
    }

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

    .page-fishing-games__text-block {
        font-size: 1em;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 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__cta-buttons,
    .page-fishing-games__button-group,
    .page-fishing-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-fishing-games__game-list,
    .page-fishing-games__strategy-grid {
        grid-template-columns: 1fr;
    }

    .page-fishing-games__card-image,
    .page-fishing-games__strategy-image,
    .page-fishing-games__why-choose-image,
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__hero-section,
    .page-fishing-games__intro-section,
    .page-fishing-games__game-types-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__why-choose-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

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

    .page-fishing-games__faq-answer {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}

/* No CSS filter for images */
.page-fishing-games img {
    filter: none;
}

/* Color Contrast Fixes (if needed, but designed to avoid) */
.page-fishing-games__dark-bg {
  color: var(--fishing-games-text-main);
}

.page-fishing-games__light-bg {
  color: #333333;
}

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

.page-fishing-games__light-bg .page-fishing-games__guide-list li {
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games__light-bg .page-fishing-games__faq-item {
  background-color: #ffffff;
}

.page-fishing-games__light-bg .page-fishing-games__faq-question {
  background-color: #f9f9f9;
  color: #333333;
}

.page-fishing-games__light-bg .page-fishing-games__faq-answer {
  background-color: #ffffff;
  color: #555555;
}