/* style/fishing-games.css */

/* Base styles for the fishing-games page */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

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

.page-fishing-games__section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-fishing-games__section-description {
    font-size: clamp(16px, 2vw, 20px);
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    border: none;
}

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

.page-fishing-games__btn-secondary {
    background: transparent;
    color: #F2FFF6; /* Text Main */
    border: 2px solid #2E7A4E; /* Border */
}

.page-fishing-games__btn-secondary:hover {
    background: rgba(46, 122, 78, 0.2); /* Border color with opacity */
    transform: translateY(-2px);
}

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

.page-fishing-games__card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
}

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

.page-fishing-games__card-title {
    font-size: 22px;
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-fishing-games__card-text {
    font-size: 16px;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding */
    background-color: #08160F;
    overflow: hidden;
}

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

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-height: 400px; /* Ensure hero image is large */
}

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

.page-fishing-games__hero-title {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    color: #F2FFF6;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-fishing-games__hero-description {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #A7D9B8;
    margin-bottom: 30px;
    line-height: 1.5;
}

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

/* Video Section */
.page-fishing-games__video-section {
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding */
    background-color: #08160F;
    text-align: center;
}

.page-fishing-games__video-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-fishing-games__video-title {
    font-size: clamp(24px, 3vw, 40px);
    color: #F2FFF6;
    margin-bottom: 30px;
}

.page-fishing-games__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(87, 227, 141, 0.4);
}

.page-fishing-games__video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

.page-fishing-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.page-fishing-games__video-description {
    font-size: 18px;
    color: #A7D9B8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-fishing-games__btn-video-cta {
    margin-top: 20px;
    padding: 15px 35px;
    font-size: 20px;
}

/* Introduction Section */
.page-fishing-games__introduction-section {
    padding: 80px 0;
    background-color: #08160F;
}

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

.page-fishing-games__text-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #A7D9B8;
    margin-bottom: 15px;
}

.page-fishing-games__image-block .page-fishing-games__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    min-height: 200px; /* Enforce min size */
}

/* Games Showcase Section */
.page-fishing-games__games-showcase-section {
    padding: 80px 0;
    background-color: #11271B; /* Card BG */
}

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

.page-fishing-games__game-card .page-fishing-games__btn-primary {
    margin-top: auto;
}

/* Benefits Section */
.page-fishing-games__benefits-section {
    padding: 80px 0;
    background-color: #08160F;
}

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

.page-fishing-games__benefit-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__benefit-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-fishing-games__benefit-title {
    font-size: 24px;
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-fishing-games__benefit-text {
    font-size: 16px;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
}

/* Guide Section */
.page-fishing-games__guide-section {
    padding: 80px 0;
    background-color: #11271B; /* Card BG */
}

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

.page-fishing-games__step-card {
    padding: 30px;
}

.page-fishing-games__step-title {
    font-size: 22px;
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-fishing-games__step-text {
    font-size: 16px;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Tips Section */
.page-fishing-games__tips-section {
    padding: 80px 0;
    background-color: #08160F;
}

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

.page-fishing-games__tip-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__tip-title {
    font-size: 24px;
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-fishing-games__tip-text {
    font-size: 16px;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 80px 0;
    background-color: #11271B; /* Card BG */
}

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

.page-fishing-games__promotion-card .page-fishing-games__btn-secondary {
    margin-top: auto;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: #08160F;
}

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

.page-fishing-games__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-item summary {
    list-style: none;
}

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 20px;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #11271B;
    border-bottom: 1px solid #2E7A4E;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    border-bottom: 1px solid #2E7A4E;
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
    line-height: 1.4;
}

.page-fishing-games__faq-toggle {
    font-size: 28px;
    line-height: 1;
    color: #57E38D; /* Glow */
}

.page-fishing-games__faq-answer {
    padding: 15px 25px 20px;
    font-size: 16px;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
    padding: 80px 0;
    background-color: #11271B; /* Card BG */
    text-align: center;
}

.page-fishing-games__conclusion-section .page-fishing-games__section-description {
    margin-bottom: 50px;
}

.page-fishing-games__btn-lg {
    padding: 18px 40px;
    font-size: 22px;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__content-grid {
        grid-template-columns: 1fr;
    }

    .page-fishing-games__image-block {
        order: -1; /* Image above text on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-content-wrapper {
        padding: 30px 15px;
    }

    .page-fishing-games__hero-title {
        font-size: clamp(28px, 6vw, 45px);
    }

    .page-fishing-games__hero-description {
        font-size: clamp(16px, 3vw, 20px);
    }

    .page-fishing-games__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100%;
        max-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__video-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body already handles offset */
    }
    
    .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;
    }

    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__section-title {
        font-size: clamp(24px, 5vw, 36px);
    }

    .page-fishing-games__section-description {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .page-fishing-games__container,
    .page-fishing-games__game-cards-grid,
    .page-fishing-games__benefits-grid,
    .page-fishing-games__guide-steps,
    .page-fishing-games__tips-grid,
    .page-fishing-games__promotion-cards-grid,
    .page-fishing-games__faq-list,
    .page-fishing-games__cta-buttons,
    .page-fishing-games__hero-cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__card,
    .page-fishing-games__benefit-item,
    .page-fishing-games__tip-item,
    .page-fishing-games__faq-item {
        padding: 20px;
    }

    .page-fishing-games__card-title,
    .page-fishing-games__benefit-title,
    .page-fishing-games__tip-title {
        font-size: 20px;
    }

    .page-fishing-games__faq-question {
        font-size: 18px;
        padding: 15px 20px;
    }

    .page-fishing-games__faq-answer {
        padding: 10px 20px 15px;
    }

    .page-fishing-games__btn-lg {
        font-size: 18px;
        padding: 15px 30px;
    }
}