/* style/fishing-games.css */

/* Custom Colors */
: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: #2E7A4E;
    --fishing-games-glow: #57E38D;
    --fishing-games-gold: #F2C14E;
    --fishing-games-divider: #1E3A2A;
    --fishing-games-deep-green: #0A4B2C;
}

.page-fishing-games {
    background-color: var(--fishing-games-background);
    color: var(--fishing-games-text-main);
    font-family: Arial, sans-serif;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Rely on body padding for header offset */
    background-color: var(--fishing-games-deep-green);
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 30px;
}

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

.page-fishing-games__hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.page-fishing-games__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em);
    color: var(--fishing-games-text-main);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-fishing-games__description {
    font-size: 1.1em;
    color: var(--fishing-games-text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-fishing-games__btn-primary {
    background: var(--fishing-games-button-gradient);
    color: #ffffff;
    border: none;
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

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

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

/* Section Titles */
.page-fishing-games__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    color: var(--fishing-games-text-main);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

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

.page-fishing-games__intro-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.page-fishing-games__intro-content p {
    font-size: 1em;
    line-height: 1.7;
    color: var(--fishing-games-text-secondary);
    max-width: 700px;
}

.page-fishing-games__image-right {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

/* Benefits Section */
.page-fishing-games__benefits-section {
    padding: 60px 0;
    background-color: var(--fishing-games-card-bg);
}

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

.page-fishing-games__benefit-card {
    background-color: var(--fishing-games-deep-green);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--fishing-games-border);
}

.page-fishing-games__benefit-icon {
    width: 100%;
    max-width: 250px; /* Increased from small icon sizes */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

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

.page-fishing-games__benefit-card p {
    font-size: 0.95em;
    color: var(--fishing-games-text-secondary);
    line-height: 1.6;
}

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

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

.page-fishing-games__step-card {
    background-color: var(--fishing-games-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--fishing-games-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

/* Popular Games Section */
.page-fishing-games__popular-games-section {
    padding: 60px 0;
    background-color: var(--fishing-games-deep-green);
}

.page-fishing-games__text-block {
    font-size: 1.1em;
    color: var(--fishing-games-text-secondary);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.page-fishing-games__game-card {
    background-color: var(--fishing-games-card-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--fishing-games-border);
    text-align: center;
    display: flex;
    flex-direction: column;
}

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

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

/* VIP Section */
.page-fishing-games__vip-section {
    padding: 60px 0;
    background-color: var(--fishing-games-background);
}

.page-fishing-games__vip-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-fishing-games__vip-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__vip-text {
    text-align: center;
    max-width: 800px;
}

.page-fishing-games__vip-text p {
    font-size: 1em;
    line-height: 1.7;
    color: var(--fishing-games-text-secondary);
    margin-bottom: 20px;
}

/* App Download Section */
.page-fishing-games__app-download-section {
    padding: 60px 0;
    background-color: var(--fishing-games-card-bg);
}

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

.page-fishing-games__app-text {
    text-align: center;
    max-width: 800px;
}

.page-fishing-games__app-text p {
    font-size: 1em;
    line-height: 1.7;
    color: var(--fishing-games-text-secondary);
    margin-bottom: 20px;
}

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

.page-fishing-games__app-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--fishing-games-text-main);
    cursor: pointer;
    background-color: var(--fishing-games-deep-green);
    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(--fishing-games-primary-color);
}

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

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

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

/* Responsive Design */
@media (min-width: 769px) {
    .page-fishing-games__intro-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .page-fishing-games__intro-content p {
        max-width: 50%;
    }

    .page-fishing-games__image-right {
        margin-top: 0;
        margin-left: 30px;
    }

    .page-fishing-games__vip-content,
    .page-fishing-games__app-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: left;
    }

    .page-fishing-games__vip-text,
    .page-fishing-games__app-text {
        text-align: left;
        max-width: 50%;
        padding-right: 30px;
    }

    .page-fishing-games__vip-image {
        order: 2;
        margin-left: 30px;
    }
    .page-fishing-games__app-image {
        margin-right: 30px;
    }
}

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

    .page-fishing-games__hero-section,
    .page-fishing-games__intro-section,
    .page-fishing-games__benefits-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__popular-games-section,
    .page-fishing-games__vip-section,
    .page-fishing-games__app-download-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__call-to-action-section {
        padding: 40px 0;
    }

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

    .page-fishing-games__description,
    .page-fishing-games__text-block,
    .page-fishing-games p,
    .page-fishing-games li {
        font-size: 1em;
        line-height: 1.6;
    }

    .page-fishing-games__cta-buttons,
    .page-fishing-games__app-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .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 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__hero-image-wrapper,
    .page-fishing-games__intro-content,
    .page-fishing-games__benefits-grid,
    .page-fishing-games__benefit-card,
    .page-fishing-games__steps-grid,
    .page-fishing-games__step-card,
    .page-fishing-games__popular-games-section .page-fishing-games__container,
    .page-fishing-games__game-cards-grid,
    .page-fishing-games__game-card,
    .page-fishing-games__vip-content,
    .page-fishing-games__app-content,
    .page-fishing-games__faq-list,
    .page-fishing-games__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

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

    .page-fishing-games__intro-content,
    .page-fishing-games__vip-content,
    .page-fishing-games__app-content {
        flex-direction: column;
    }

    .page-fishing-games__image-right,
    .page-fishing-games__vip-image,
    .page-fishing-games__app-image {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .page-fishing-games__vip-text,
    .page-fishing-games__app-text {
        padding-right: 0;
    }
    .page-fishing-games__vip-image {
        order: unset;
    }
}