/* style/fishing-games.css */

/* Global styles for the page content, ensuring text contrast */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main color for dark background */
    background-color: #08160F; /* Background color */
}

/* Sections padding and alignment */
.page-fishing-games__hero-section,
.page-fishing-games__video-section,
.page-fishing-games__overview-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__why-choose-us-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-final-section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    z-index: 1; /* Ensure content is above any potential background effects */
}

.page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Prevent content overflow */
}

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

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.3); /* Green glow effect */
}

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

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive H1 font size */
    color: #F2C14E; /* Gold color for main title */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Soft gold glow */
}

.page-fishing-games__description {
    font-size: 1.2rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.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.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    border: 2px solid #2AD16F;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
    transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Match primary button's highlight color */
    border: 2px solid #2AD16F;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.2);
}

.page-fishing-games__btn-secondary:hover {
    background: #2AD16F;
    color: #F2FFF6;
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.4);
    transform: translateY(-2px);
}

.page-fishing-games__video-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #11271B; /* Card BG */
}

.page-fishing-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1200px;
    width: 100%; /* Ensure desktop width is 100% within its max-width */
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(87, 227, 141, 0.5); /* Glow color */
}

.page-fishing-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block; /* Ensure it behaves as a block element for max-width */
}

.page-fishing-games__video-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

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

.page-fishing-games__section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #F2C14E; /* Gold color for section titles */
    font-weight: bold;
    margin-bottom: 25px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-fishing-games__section-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__text-block {
    font-size: 1.1rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    text-align: left;
}

.page-fishing-games__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.3); /* Glow color */
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-fishing-games__overview-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__why-choose-us-section,
.page-fishing-games__faq-section {
    background-color: #08160F; /* Background color */
}

.page-fishing-games__how-to-play-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__why-choose-us-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.page-fishing-games__feature-list,
.page-fishing-games__strategy-list,
.page-fishing-games__promo-list,
.page-fishing-games__advantage-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__feature-list li,
.page-fishing-games__strategy-list li,
.page-fishing-games__promo-list li,
.page-fishing-games__advantage-list li {
    background-color: #11271B; /* Card BG */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    color: #F2FFF6; /* Text Main */
    border-left: 5px solid #2AD16F; /* Highlight border */
}

.page-fishing-games__feature-list li strong,
.page-fishing-games__strategy-list li strong,
.page-fishing-games__promo-list li strong,
.page-fishing-games__advantage-list li strong {
    color: #F2C14E; /* Gold color for strong text */
    margin-right: 10px;
}

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

/* FAQ Section */
.page-fishing-games__faq-section {
    background-color: #11271B; /* Card BG */
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-fishing-games__faq-item {
    background-color: #08160F; /* Background color */
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.page-fishing-games__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15rem;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    list-style: none; /* Hide default marker */
    background-color: #1E3A2A; /* Divider color for summary background */
    border-bottom: 1px solid #2E7A4E; /* Border color */
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit */
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    color: #F2C14E; /* Gold color for question text */
}

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    margin-left: 15px;
    color: #2AD16F; /* Highlight color */
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to become cross */
}

.page-fishing-games__faq-answer {
    padding: 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    background-color: #08160F; /* Background color */
    border-top: 1px solid #1E3A2A; /* Divider color */
}

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

.page-fishing-games__faq-answer a {
    color: #2AD16F; /* Link color */
    text-decoration: underline;
}

.page-fishing-games__cta-final-section {
    background: linear-gradient(180deg, #11A84E 0%, #0A4B2C 100%); /* Deep Green gradient */
    padding: 80px 20px;
    color: #F2FFF6;
}

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

.page-fishing-games__cta-final-section .page-fishing-games__section-title {
    color: #F2C14E; /* Gold color */
    margin-bottom: 20px;
}

.page-fishing-games__cta-final-section .page-fishing-games__text-block {
    color: #F2FFF6;
    font-size: 1.15rem;
    margin-bottom: 40px;
}


/* --- Responsive Styles --- */
@media (max-width: 768px) {
    .page-fishing-games__hero-section,
    .page-fishing-games__video-section,
    .page-fishing-games__overview-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__why-choose-us-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-final-section {
        padding: 30px 15px !important;
    }

    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* body handles header offset */
    }

    .page-fishing-games__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .page-fishing-games__description {
        font-size: 1rem;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .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;
      overflow: hidden !important;
      flex-wrap: wrap !important; /* Ensure multiple buttons wrap */
      gap: 10px;
    }

    .page-fishing-games__video-wrapper {
        margin: 20px auto !important;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important; /* Enforce minimum size */
        min-height: 200px !important; /* Enforce minimum size */
    }

    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .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;
    }

    .page-fishing-games__feature-list li,
    .page-fishing-games__strategy-list li,
    .page-fishing-games__promo-list li,
    .page-fishing-games__advantage-list li {
        font-size: 1rem;
        padding: 15px;
    }

    .page-fishing-games__faq-item summary {
        font-size: 1rem;
        padding: 15px;
    }

    .page-fishing-games__faq-answer {
        font-size: 0.95rem;
        padding: 15px;
    }
}

/* Desktop specific video container width */
@media (min-width: 769px) {
    .page-fishing-games__video-container {
        width: 100%; /* Ensure desktop width is 100% within its max-width */
    }
}