/* style/fishing-games.css */

:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --page-bg: #F4F7FB;
    --text-main: #1F2D3D;
    --text-black: #000000;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
    --light-text-color: #ffffff;
    --dark-text-color: #333333;
}

.page-fishing-games {
    font-family: Arial, sans-serif;
    color: var(--dark-text-color); /* Body background is light (#F4F7FB), so text should be dark */
    background-color: var(--page-bg);
    line-height: 1.6;
}

/* General text styles */
.page-fishing-games__text-main {
    color: var(--text-main);
}

.page-fishing-games__light-text {
    color: var(--light-text-color);
}

.page-fishing-games__highlight {
    color: var(--primary-color);
    font-weight: bold;
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
    color: var(--text-main);
}

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

.page-fishing-games__paragraph {
    font-size: 1em;
    margin-bottom: 15px;
    color: var(--dark-text-color);
}

.page-fishing-games__card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    color: var(--dark-text-color);
    border: 1px solid var(--border-color);
}

.page-fishing-games__card-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--text-main);
}

.page-fishing-games__card-description {
    font-size: 0.95em;
    line-height: 1.5;
    color: var(--dark-text-color);
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    padding-top: 10px; /* Aligns with common padding-top for body */
    padding-bottom: 50px;
    background-color: var(--page-bg);
    overflow: hidden;
    text-align: center;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for desktop */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.page-fishing-games__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__hero-description {
    font-size: 1.15em;
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-fishing-games__btn-primary {
    background: var(--button-gradient);
    color: var(--light-text-color);
    border: 2px solid transparent;
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

.page-fishing-games__btn-secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: var(--light-text-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

/* Features Section */
.page-fishing-games__features-section {
    padding: 60px 0;
    background-color: var(--page-bg);
}

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

.page-fishing-games__feature-card {
    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 8px 25px rgba(0, 0, 0, 0.1);
}

/* Gameshow Section */
.page-fishing-games__gameshow-section {
    padding: 60px 0;
    background-color: var(--page-bg);
}

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

.page-fishing-games__gameshow-card {
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__gameshow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__gameshow-image {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

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

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

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

.page-fishing-games__guide-text {
    flex: 1;
}

.page-fishing-games__guide-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-fishing-games__guide-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.page-fishing-games__button-inline {
    margin-top: 20px;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 60px 0;
    background: var(--primary-color);
}

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

.page-fishing-games__promotion-card {
    text-align: center;
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-fishing-games__promotion-card:hover {
    transform: translateY(-5px);
}

.page-fishing-games__promotion-image {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

/* Strategy Section */
.page-fishing-games__strategy-section {
    padding: 60px 0;
    background-color: var(--page-bg);
}

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

.page-fishing-games__list-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
}

/* Support Section */
.page-fishing-games__support-section {
    padding: 60px 0;
    background: var(--primary-color);
    text-align: center;
}

.page-fishing-games__support-section .page-fishing-games__paragraph {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

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

.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-fishing-games__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--card-bg);
    color: var(--text-main);
    list-style: none; /* Hide default marker */
}

.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: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

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

/* Conclusion Section */
.page-fishing-games__conclusion-section {
    padding: 60px 0;
    background-color: var(--page-bg);
    text-align: center;
}

.page-fishing-games__conclusion-section .page-fishing-games__paragraph {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Global image settings for content area to prevent small icons */
.page-fishing-games img {
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: clamp(2em, 5vw, 2.8em);
    }

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

    .page-fishing-games__guide-content {
        flex-direction: column;
        text-align: center;
    }

    .page-fishing-games__guide-image-wrapper {
        order: -1; /* Image above text on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }

    /* HERO Section */
    .page-fishing-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-fishing-games__hero-image-wrapper {
        max-height: 300px;
        margin-bottom: 20px;
    }

    .page-fishing-games__hero-image {
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 8px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.2em);
        margin-bottom: 15px;
    }

    .page-fishing-games__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

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

    .page-fishing-games__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

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

    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-fishing-games__sub-title {
        font-size: 1.3em;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page-fishing-games__paragraph {
        font-size: 0.95em;
    }

    /* Features Grid */
    .page-fishing-games__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Gameshow Grid */
    .page-fishing-games__gameshow-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__gameshow-image {
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-fishing-games__button-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Guide Section */
    .page-fishing-games__guide-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-fishing-games__guide-image {
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-fishing-games__button-inline {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    /* Promotions Grid */
    .page-fishing-games__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__promotion-image {
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Strategy Section */
    .page-fishing-games__list-item {
        padding: 20px;
    }

    /* FAQ Section */
    .page-fishing-games__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }

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

    /* Universal image and container responsive styles */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games__gameshow-section .page-fishing-games__container {
        padding-left: 0;
        padding-right: 0;
    }

    .page-fishing-games__gameshow-grid {
        padding: 0 15px; /* Add padding to grid items within the section */
    }
}