/* style/fishing-games.css */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --bg-color: #08160F;
    --card-bg-color: #11271B;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --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); /* Default text color for the page */
    background-color: var(--bg-color);
    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: clamp(28px, 4vw, 42px);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

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

.page-fishing-games__dark-section {
    background-color: var(--deep-green-color);
    padding: 60px 0;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
}

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

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

.page-fishing-games__btn-secondary {
    background: transparent;
    color: var(--glow-color);
    border: 2px solid var(--glow-color);
    box-shadow: inset 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-fishing-games__btn-secondary:hover {
    background: rgba(87, 227, 141, 0.1);
    transform: translateY(-2px);
    box-shadow: inset 0 0 15px rgba(87, 227, 141, 0.5);
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom */
    background-color: var(--deep-green-color);
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit image height */
    overflow: hidden;
    margin-bottom: 30px;
}

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

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

.page-fishing-games__hero-title {
    font-size: clamp(36px, 5vw, 60px);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

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

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

/* Introduction Section */
.page-fishing-games__introduction-section {
    padding: 80px 0;
}

/* Game Types Section */
.page-fishing-games__game-types-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

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

.page-fishing-games__card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

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

.page-fishing-games__card-title {
    font-size: 24px;
    color: var(--text-main-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-fishing-games__card-description {
    font-size: 16px;
    color: var(--text-secondary-color);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Benefits Section */
.page-fishing-games__benefits-section {
    padding: 80px 0;
}

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

.page-fishing-games__benefit-item {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__benefit-title {
    font-size: 22px;
    color: var(--glow-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games__benefit-description {
    font-size: 16px;
    color: var(--text-secondary-color);
}

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

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

.page-fishing-games__guide-list {
    list-style: none;
    padding: 0;
}

.page-fishing-games__guide-list li {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__guide-step-title {
    font-size: 20px;
    color: var(--text-main-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games__guide-step-description {
    font-size: 16px;
    color: var(--text-secondary-color);
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 80px 0;
}

.page-fishing-games__promotion-card {
    display: flex;
    flex-direction: column;
    background-color: var(--card-bg-color);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-top: 40px;
}

.page-fishing-games__promotion-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__promotion-content {
    padding: 30px;
}

.page-fishing-games__promotion-title {
    font-size: 28px;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-fishing-games__promotion-description {
    font-size: 17px;
    color: var(--text-secondary-color);
    margin-bottom: 25px;
}

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

.page-fishing-games__security-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-fishing-games__security-support-image-wrapper {
    text-align: center;
}

.page-fishing-games__security-support-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
}

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

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

.page-fishing-games__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main-color);
    cursor: pointer;
    background-color: var(--card-bg-color);
    border-bottom: 1px solid var(--divider-color);
}

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

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

.page-fishing-games__faq-toggle {
    font-size: 24px;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    content: '−';
}

.page-fishing-games__faq-answer {
    padding: 15px 25px 20px;
    font-size: 16px;
    color: var(--text-secondary-color);
}

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

.page-fishing-games__faq-link {
    color: var(--glow-color);
    text-decoration: underline;
    font-weight: 600;
}

.page-fishing-games__faq-link:hover {
    color: var(--gold-color);
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--deep-green-color);
}

.page-fishing-games__cta-final-section .page-fishing-games__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__hero-title {
        font-size: clamp(32px, 4.5vw, 50px);
    }
    .page-fishing-games__section-title {
        font-size: clamp(24px, 3.5vw, 38px);
    }
    .page-fishing-games__security-support-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__security-support-image-wrapper {
        order: -1; /* Image above text on smaller screens */
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section,
    .page-fishing-games__introduction-section,
    .page-fishing-games__game-types-section,
    .page-fishing-games__benefits-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__security-support-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-final-section {
        padding: 40px 0; /* Adjust padding for mobile */
    }
    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* body already has padding-top */
    }

    .page-fishing-games__container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__text-block,
    .page-fishing-games__hero-description,
    .page-fishing-games__card-description,
    .page-fishing-games__benefit-description,
    .page-fishing-games__guide-step-description,
    .page-fishing-games__promotion-description,
    .page-fishing-games__faq-answer p {
        font-size: 16px;
    }

    /* Images responsive */
    .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-wrapper,
    .page-fishing-games__promotion-image,
    .page-fishing-games__security-support-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

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

    /* Buttons responsive */
    .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 !important;
    }

    .page-fishing-games__hero-cta-buttons,
    .page-fishing-games__cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__promotion-card {
        flex-direction: column;
    }

    .page-fishing-games__promotion-content {
        padding: 20px;
    }

    .page-fishing-games__promotion-title {
        font-size: 24px;
    }

    .page-fishing-games__faq-item summary {
        padding: 15px 20px;
        font-size: 16px;
    }
    .page-fishing-games__faq-answer {
        padding: 10px 20px 15px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-title {
        font-size: clamp(28px, 6vw, 40px);
    }
    .page-fishing-games__section-title {
        font-size: clamp(22px, 5vw, 32px);
    }
    .page-fishing-games__card-title {
        font-size: 20px;
    }
    .page-fishing-games__benefit-title {
        font-size: 18px;
    }
    .page-fishing-games__promotion-title {
        font-size: 20px;
    }
    .page-fishing-games__hero-description {
        font-size: 17px;
    }
}

/* Ensure content area images are not too small by CSS */
.page-fishing-games__game-cards-grid img,
.page-fishing-games__promotion-image,
.page-fishing-games__security-support-image {
  min-width: 200px;
  min-height: 200px;
}

/* No filter on images */
.page-fishing-games img {
    filter: none; /* Ensure no CSS filters are applied */
}