/* style/blog-how-to-win-at-fishing-games.css */
.page-blog-how-to-win-at-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #F3F8FF; /* Text Main */
    background-color: var(--deep-navy);
    line-height: 1.6;
}

.page-blog-how-to-win-at-fishing-games__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-blog-how-to-win-at-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-blog-how-to-win-at-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-how-to-win-at-fishing-games__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em);
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-blog-how-to-win-at-fishing-games__hero-description {
    font-size: clamp(1em, 2vw, 1.3em);
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-win-at-fishing-games__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-win-at-fishing-games__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-blog-how-to-win-at-fishing-games__introduction-section,
.page-blog-how-to-win-at-fishing-games__content-section,
.page-blog-how-to-win-at-fishing-games__faq-section,
.page-blog-how-to-win-at-fishing-games__cta-bottom-section {
    padding: 60px 0;
    border-top: 1px solid #1B3357; /* Divider */
}

.page-blog-how-to-win-at-fishing-games__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-blog-how-to-win-at-fishing-games__sub-title {
    font-size: 1.8em;
    color: #1D5FD1; /* Auxiliary color */
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-blog-how-to-win-at-fishing-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #F3F8FF; /* Text Main */
}

.page-blog-how-to-win-at-fishing-games__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-win-at-fishing-games__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-blog-how-to-win-at-fishing-games__list-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #F3F8FF; /* Text Main */
}

.page-blog-how-to-win-at-fishing-games__list--dark .page-blog-how-to-win-at-fishing-games__list-item {
    color: #F3F8FF;
}

.page-blog-how-to-win-at-fishing-games__dark-section {
    background-color: #10233F; /* Card BG */
    padding: 60px 0;
}

.page-blog-how-to-win-at-fishing-games__dark-section .page-blog-how-to-win-at-fishing-games__section-title {
    color: #F2C14E;
}

.page-blog-how-to-win-at-fishing-games__dark-section .page-blog-how-to-win-at-fishing-games__text-block {
    color: #AFC4E8;
}

.page-blog-how-to-win-at-fishing-games__faq-list {
    margin-top: 30px;
}

.page-blog-how-to-win-at-fishing-games__faq-item {
    background-color: #10233F; /* Card BG */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #244D84; /* Border */
}

.page-blog-how-to-win-at-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: 600;
    color: #F3F8FF; /* Text Main */
    cursor: pointer;
    background-color: #113B7A; /* Primary color */
    border-bottom: 1px solid #244D84;
}

.page-blog-how-to-win-at-fishing-games__faq-question:hover {
    background-color: #1D5FD1;
}

.page-blog-how-to-win-at-fishing-games__faq-item[open] .page-blog-how-to-win-at-fishing-games__faq-question {
    border-bottom: 1px solid #244D84;
}

.page-blog-how-to-win-at-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

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

.page-blog-how-to-win-at-fishing-games__faq-answer {
    padding: 20px;
    font-size: 1.05em;
    color: #AFC4E8; /* Text Secondary */
    background-color: #10233F;
}

.page-blog-how-to-win-at-fishing-games__faq-answer p {
    margin-bottom: 0;
}

.page-blog-how-to-win-at-fishing-games__cta-bottom-section {
    text-align: center;
    padding: 80px 0;
    background-color: #08162B; /* Deep Navy */
}

.page-blog-how-to-win-at-fishing-games__cta-bottom-section .page-blog-how-to-win-at-fishing-games__section-title {
    color: #F2C14E;
}

.page-blog-how-to-win-at-fishing-games__cta-bottom-section .page-blog-how-to-win-at-fishing-games__text-block {
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #AFC4E8;
}

.page-blog-how-to-win-at-fishing-games__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-how-to-win-at-fishing-games__cta-button--primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #FFFFFF;
}

.page-blog-how-to-win-at-fishing-games__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #1D5FD1; /* Auxiliary color */
    color: #1D5FD1;
}

.page-blog-how-to-win-at-fishing-games__cta-button--secondary:hover {
    background-color: #1D5FD1;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-how-to-win-at-fishing-games__hero-content {
        max-width: 768px;
    }

    .page-blog-how-to-win-at-fishing-games__main-title {
        font-size: clamp(2em, 4vw, 3em);
    }

    .page-blog-how-to-win-at-fishing-games__section-title {
        font-size: 2em;
    }

    .page-blog-how-to-win-at-fishing-games__sub-title {
        font-size: 1.5em;
    }

    .page-blog-how-to-win-at-fishing-games__text-block,
    .page-blog-how-to-win-at-fishing-games__list-item,
    .page-blog-how-to-win-at-fishing-games__faq-answer {
        font-size: 1em;
    }

    .page-blog-how-to-win-at-fishing-games__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-blog-how-to-win-at-fishing-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-blog-how-to-win-at-fishing-games__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-how-to-win-at-fishing-games__hero-content {
        padding: 0 15px;
    }

    .page-blog-how-to-win-at-fishing-games__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
        margin-bottom: 10px;
    }

    .page-blog-how-to-win-at-fishing-games__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    /* 通用图片与容器 */
    .page-blog-how-to-win-at-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 8px;
        margin: 20px auto;
    }

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

    .page-blog-how-to-win-at-fishing-games__introduction-section,
    .page-blog-how-to-win-at-fishing-games__content-section,
    .page-blog-how-to-win-at-fishing-games__faq-section,
    .page-blog-how-to-win-at-fishing-games__cta-bottom-section {
        padding: 40px 0;
    }

    .page-blog-how-to-win-at-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-how-to-win-at-fishing-games__sub-title {
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .page-blog-how-to-win-at-fishing-games__text-block,
    .page-blog-how-to-win-at-fishing-games__list-item {
        font-size: 0.95em;
    }

    .page-blog-how-to-win-at-fishing-games__list {
        padding-left: 15px;
    }

    /* 按钮与按钮容器 */
    .page-blog-how-to-win-at-fishing-games__cta-button,
    .page-blog-how-to-win-at-fishing-games__cta-button--primary,
    .page-blog-how-to-win-at-fishing-games__cta-button--secondary,
    .page-blog-how-to-win-at-fishing-games a[class*="button"],
    .page-blog-how-to-win-at-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 20px;
        font-size: 1em;
    }

    .page-blog-how-to-win-at-fishing-games__button-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden;
    }

    /* FAQ Section */
    .page-blog-how-to-win-at-fishing-games__faq-question {
        font-size: 1em;
        padding: 15px;
    }

    .page-blog-how-to-win-at-fishing-games__faq-answer {
        padding: 15px;
        font-size: 0.9em;
    }

    /* 其他内容模块 */
    .page-blog-how-to-win-at-fishing-games__cta-bottom-section {
        padding: 50px 0;
    }
    .page-blog-how-to-win-at-fishing-games__dark-section {
        padding: 40px 0;
    }
}