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

.page-fishing-games {
    background-color: var(--bg-primary);
    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-title {
    font-size: 2.8em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

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

.page-fishing-games__card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px var(--glow-color);
}

.page-fishing-games__card-image {
    width: 100%;
    height: 200px; /* Default height, can be overridden by specific sections */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid var(--deep-green);
}

.page-fishing-games__card-title {
    font-size: 1.5em;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__card-text {
    font-size: 0.95em;
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
}

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

.page-fishing-games__btn-primary {
    background: var(--btn-gradient);
    color: var(--text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6), 0 0 10px var(--glow-color);
}

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

.page-fishing-games__btn-secondary:hover {
    background-color: var(--glow-color);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__cta-buttons--center {
    justify-content: center;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-primary);
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

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

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

.page-fishing-games__main-title {
    font-size: clamp(2.5em, 5vw, 3.8em);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

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

/* Intro Section */
.page-fishing-games__intro-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

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

.page-fishing-games__image-text-block {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-fishing-games__image-text-block .page-fishing-games__content-image {
    flex-shrink: 0;
    width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__image-text-block .page-fishing-games__text-block {
    flex-grow: 1;
    margin-bottom: 0;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
    padding: 80px 0;
    background-color: var(--deep-green);
}

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

.page-fishing-games__feature-card .page-fishing-games__card-image {
    height: 250px;
}

/* Games Showcase Section */
.page-fishing-games__games-showcase {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

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

.page-fishing-games__game-card .page-fishing-games__card-image {
    height: 220px;
}

.page-fishing-games__more-games-text {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
    padding: 80px 0;
    background-color: var(--deep-green);
}

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

.page-fishing-games__step-card {
    position: relative;
    padding-top: 60px;
}

.page-fishing-games__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--glow-color);
    color: var(--bg-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.7);
    border: 2px solid var(--gold-color);
}

.page-fishing-games__step-card .page-fishing-games__card-title {
    margin-top: 15px;
}

.page-fishing-games__step-card .page-fishing-games__btn-secondary {
    margin-top: 20px;
}

.page-fishing-games__note-text {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    font-size: 0.9em;
    color: var(--text-secondary);
}

.page-fishing-games__note-text a {
    color: var(--gold-color);
    text-decoration: underline;
}

.page-fishing-games__note-text a:hover {
    color: var(--glow-color);
}

/* Tips & Strategy Section */
.page-fishing-games__tips-strategy-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

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

.page-fishing-games__tip-card .page-fishing-games__card-text {
    text-align: left;
}

.page-fishing-games__strategy-conclusion {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
}

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

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

.page-fishing-games__promo-card .page-fishing-games__card-image {
    height: 220px;
}

.page-fishing-games__promo-call-to-action {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
}

/* Support & Security Section */
.page-fishing-games__support-security-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

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

.page-fishing-games__info-item .page-fishing-games__card-text {
    text-align: left;
}

.page-fishing-games__responsible-gambling-text {
    text-align: center;
    margin-top: 40px;
    font-size: 0.95em;
    color: var(--text-secondary);
}

.page-fishing-games__responsible-gambling-text a {
    color: var(--glow-color);
    text-decoration: underline;
}

.page-fishing-games__responsible-gambling-text a:hover {
    color: var(--gold-color);
}

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

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

.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    overflow: hidden;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: var(--deep-green);
    color: var(--text-main);
    border-bottom: 1px solid var(--divider-color);
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: var(--border-color);
}

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

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

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-fishing-games__faq-answer {
    padding: 15px 25px;
    font-size: 1.0em;
    color: var(--text-secondary);
    text-align: left;
}

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

/* Call to Action Section */
.page-fishing-games__call-to-action-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
    text-align: center;
}

.page-fishing-games__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 2.2em;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2em, 4.5vw, 3em);
    }
    .page-fishing-games__description {
        font-size: 1.1em;
    }
    .page-fishing-games__image-text-block {
        flex-direction: column;
        gap: 20px;
    }
    .page-fishing-games__image-text-block .page-fishing-games__content-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__container {
        padding: 0 15px;
    }

    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* body has padding-top, this is decorative */
        padding-bottom: 40px;
    }

    .page-fishing-games__hero-image-wrapper {
        margin-bottom: 30px;
        border-radius: 8px;
    }

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

    .page-fishing-games__description {
        font-size: 1em;
        margin-bottom: 25px;
    }

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

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

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
        overflow: hidden;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games__card-image {
        height: 180px;
    }

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

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

    /* Ensure all images are responsive */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__hero-image-wrapper,
    .page-fishing-games__image-text-block .page-fishing-games__content-image,
    .page-fishing-games__feature-card .page-fishing-games__card-image,
    .page-fishing-games__game-card .page-fishing-games__card-image,
    .page-fishing-games__promo-card .page-fishing-games__card-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__hero-content,
    .page-fishing-games__intro-section,
    .page-fishing-games__why-choose-section,
    .page-fishing-games__games-showcase,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__tips-strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__support-security-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__call-to-action-section,
    .page-fishing-games__image-text-block,
    .page-fishing-games__steps-grid,
    .page-fishing-games__tips-grid,
    .page-fishing-games__promo-grid,
    .page-fishing-games__info-grid,
    .page-fishing-games__faq-list,
    .page-fishing-games__cta-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    .page-fishing-games__hero-section {
        padding-left: 0;
        padding-right: 0;
    }

    .page-fishing-games__hero-image-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

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

@media (max-width: 480px) {
    .page-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games__card-title {
        font-size: 1.3em;
    }
    .page-fishing-games__faq-question {
        font-size: 1em;
    }
    .page-fishing-games__faq-toggle {
        font-size: 1.3em;
    }
}