/* style/fishing-games.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-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-fishing-games {
    font-family: Arial, sans-serif;
    color: var(--text-main-color); /* Assumed dark body background from shared.css */
    background-color: var(--background-color);
}

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

.page-fishing-games__section {
    padding: 60px 0;
    text-align: center;
}

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

.page-fishing-games__section-title {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-main-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-fishing-games__sub-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-main-color);
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-secondary-color);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 10px 0 60px 0; /* body handles header offset, this is decorative */
    overflow: hidden;
    background-color: var(--background-color);
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height to prevent image from being too tall */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    min-height: 400px; /* Ensure minimum size */
}

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

.page-fishing-games__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive H1 font size */
    font-weight: 900;
    color: var(--text-main-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.4);
}

.page-fishing-games__intro-text {
    font-size: 1.2em;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Buttons */
.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    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(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(42, 209, 111, 0.4);
}

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

.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(--background-color);
    transform: translateY(-3px);
}

/* Image Text Block */
.page-fishing-games__image-text-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__content-image {
    flex: 1 1 400px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

.page-fishing-games__text-content {
    flex: 1 1 450px;
}

.page-fishing-games__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-fishing-games__list-item {
    background: var(--card-bg);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05em;
    color: var(--text-main-color);
    border: 1px solid var(--border-color);
}

.page-fishing-games__list-item strong {
    color: var(--glow-color);
}

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

.page-fishing-games__card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 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__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

.page-fishing-games__card-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-fishing-games__card-title a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__card-title a:hover {
    color: var(--glow-color);
}

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

/* How-To-Play Steps */
.page-fishing-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-fishing-games__step-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.page-fishing-games__step-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games__step-icon {
    margin-bottom: 20px;
}

.page-fishing-games__step-img {
    
    
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--glow-color));
    min-
    min-
}

.page-fishing-games__step-title {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--glow-color);
    margin-bottom: 15px;
}

.page-fishing-games__step-description {
    font-size: 0.95em;
    color: var(--text-secondary-color);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

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

.page-fishing-games__strategy-card {
    text-align: left;
    padding: 25px;
    border-left: 5px solid var(--glow-color);
    background-color: var(--card-bg);
}

.page-fishing-games__strategy-card .page-fishing-games__card-title {
    color: var(--gold-color);
    font-size: 1.4em;
}

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

.page-fishing-games__strategy-image {
    margin-top: 60px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

/* Promotions Section */
.page-fishing-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-fishing-games__promo-card {
    text-align: left;
    padding: 25px;
    border-bottom: 3px solid var(--primary-color);
}

.page-fishing-games__promo-card .page-fishing-games__card-title {
    color: var(--primary-color);
    font-size: 1.4em;
}

.page-fishing-games__promo-card .page-fishing-games__card-description {
    color: var(--text-secondary-color);
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
    text-align: left;
}

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

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

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

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

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

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

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

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

.page-fishing-games__faq-answer .page-fishing-games__cta-button {
    margin-top: 10px;
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
    padding: 80px 0;
    background-color: var(--deep-green-color);
    border-top: 5px solid var(--primary-color);
}

.page-fishing-games__cta-final-section .page-fishing-games__section-title {
    font-size: 3em;
    color: var(--text-main-color);
    text-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-fishing-games__cta-final-section .page-fishing-games__section-description {
    font-size: 1.2em;
    margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 2.2em;
    }
    .page-fishing-games__sub-title {
        font-size: 1.8em;
    }
    .page-fishing-games__hero-content {
        padding: 0 15px;
    }
    .page-fishing-games__image-text-block {
        flex-direction: column;
        text-align: center;
    }
    .page-fishing-games__text-content {
        flex: 1 1 100%;
    }
    .page-fishing-games__content-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-fishing-games__section {
        padding: 40px 0;
    }
    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-fishing-games__sub-title {
        font-size: 1.5em;
    }
    .page-fishing-games__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2em, 8vw, 2.5em);
    }
    .page-fishing-games__intro-text {
        font-size: 1em;
    }
    .page-fishing-games__hero-image-wrapper {
        margin-bottom: 30px;
    }
    .page-fishing-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        min-height: 450px;
    }

    /* Image responsiveness */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-fishing-games__hero-image {
        min-height: 250px !important;
    }
    .page-fishing-games__content-image {
        min-width: 200px !important;
        min-height: 200px !important;
    }

    /* Video responsiveness - not used on this page, but included for completeness */
    .page-fishing-games video,
    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__video-section,
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Button responsiveness */
    .page-fishing-games__cta-button,
    .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-left: 15px;
        padding-right: 15px;
    }
    .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__cta-buttons {
        display: flex;
        flex-direction: column; 
    }

    .page-fishing-games__container,
    .page-fishing-games__card,
    .page-fishing-games__section-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games__game-cards-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__strategy-grid,
    .page-fishing-games__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games__image-text-block {
        gap: 20px;
    }
    .page-fishing-games__list-item {
        font-size: 0.95em;
        padding: 12px 15px;
    }
    .page-fishing-games__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-answer {
        font-size: 0.9em;
        padding: 15px 20px;
    }
    .page-fishing-games__cta-final-section .page-fishing-games__section-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 9vw, 2.2em);
    }
    .page-fishing-games__hero-section {
        min-height: 350px;
    }
    .page-fishing-games__cta-final-section .page-fishing-games__section-title {
        font-size: 1.8em;
    }
}