/* style/fishing-games.css */

/* Root variables for consistent spacing and colors */
:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-bg-dark: #08160F;
    --color-card-bg: #11271B;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
    --gradient-button: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--color-text-main); /* Default text color for main content */
    background-color: var(--color-bg-dark); /* Page background 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 {
    padding: 60px 0;
    text-align: center;
}

.page-fishing-games__section-title {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 40px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__text-block {
    font-size: 1.1em;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__text-block strong {
    color: var(--color-text-main);
}

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

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

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background: var(--gradient-button);
    color: #ffffff; /* Forced white text for contrast */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

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

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

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px; /* Pull content slightly over image for visual flow */
    background: rgba(17, 39, 27, 0.9); /* Card BG with slight transparency */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-border);
}

.page-fishing-games__main-title {
    font-size: clamp(2.5em, 4vw, 3.5em); /* Responsive font size */
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

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

/* Introduction Section */
.page-fishing-games__introduction-section {
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid var(--color-divider);
}

/* Video Section */
.page-fishing-games__video-section {
    padding: 40px 0;
    background-color: var(--color-card-bg);
    border-bottom: 1px solid var(--color-divider);
    padding-top: 10px; /* Small top padding for sections */
}

.page-fishing-games__video-container {
    width: 100%; /* Desktop width */
    max-width: 1000px; /* Max width for video */
    margin: 0 auto;
    box-sizing: border-box;
}

.page-fishing-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    border: 2px solid var(--color-border);
}

.page-fishing-games__video-link-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.page-fishing-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

/* Features Section */
.page-fishing-games__features-section {
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid var(--color-divider);
}

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

.page-fishing-games__feature-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--color-divider);
    display: block;
}

.page-fishing-games__feature-title {
    font-size: 1.6em;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-fishing-games__feature-description {
    font-size: 1em;
    color: var(--color-text-secondary);
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
    background-color: var(--color-card-bg);
    border-bottom: 1px solid var(--color-divider);
}

.page-fishing-games__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    gap: 40px;
    margin-top: 40px;
}

.page-fishing-games__text-content,
.page-fishing-games__image-content {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__ordered-list {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
    color: var(--color-text-secondary);
}

.page-fishing-games__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--color-text-main);
}

.page-fishing-games__ordered-list li strong {
    color: var(--color-gold);
}

.page-fishing-games__how-to-play-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--color-border);
    display: block;
}

.page-fishing-games__btn-learn-more {
    margin-top: 30px;
}

/* Tips Section */
.page-fishing-games__tips-section {
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid var(--color-divider);
}

.page-fishing-games__unordered-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    color: var(--color-text-secondary);
}

.page-fishing-games__unordered-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--color-text-main);
}

.page-fishing-games__unordered-list li strong {
    color: var(--color-gold);
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
    background-color: var(--color-card-bg);
    border-bottom: 1px solid var(--color-divider);
}

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

.page-fishing-games__benefit-card {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-fishing-games__benefit-title {
    font-size: 1.8em;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* Promotions Section */
.page-fishing-games__promotions-section {
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid var(--color-divider);
}

.page-fishing-games__promotions-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-fishing-games__promotions-text {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__promotions-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fishing-games__promotion-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--color-border);
    display: block;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    background-color: var(--color-card-bg);
}

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

.page-fishing-games__faq-item {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    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 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--color-text-main);
    cursor: pointer;
    background-color: var(--color-card-bg);
    border-bottom: 1px solid var(--color-divider);
    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(--color-deep-green);
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    color: var(--color-gold);
}

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

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

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

.page-fishing-games__cta-support {
    margin-top: 50px;
}

/* Images */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 2.2em;
    }
    .page-fishing-games__hero-content {
        margin-top: -80px;
        padding: 30px 20px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-fishing-games__tagline {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__section {
        padding: 40px 0;
    }
    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-fishing-games__text-block {
        font-size: 1em;
    }
    .page-fishing-games__hero-section {
        padding-top: 10px !important;
    }
    .page-fishing-games__hero-content {
        margin-top: -60px;
        padding: 25px 15px;
        border-radius: 10px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-fishing-games__tagline {
        font-size: 0.95em;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .page-fishing-games__text-content,
    .page-fishing-games__image-content {
        min-width: unset;
        width: 100%;
    }
    .page-fishing-games__ordered-list {
        padding-left: 20px;
    }
    .page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-fishing-games__faq-answer {
        padding: 10px 20px 15px;
    }

    /* Image and Video Mobile Adaptation */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .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,
    .page-fishing-games__promotions-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-fishing-games__video-section {
        padding-top: 10px !important; /* body handles header offset */
    }
}

@media (max-width: 480px) {
    .page-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }
    .page-fishing-games__tagline {
        font-size: 0.9em;
    }
    .page-fishing-games__hero-content {
        margin-top: -40px;
    }
    .page-fishing-games__feature-card,
    .page-fishing-games__benefit-card {
        padding: 20px;
    }
    .page-fishing-games__feature-title,
    .page-fishing-games__benefit-title {
        font-size: 1.4em;
    }
    .page-fishing-games__faq-question {
        font-size: 1em;
    }
}