/* style/resources-fishing-game-strategy-tips.css */
.page-resources-fishing-game-strategy-tips {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: var(--dark-bg-1);
}

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

.page-resources-fishing-game-strategy-tips__hero-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #017439, #005f2f);
    color: #ffffff;
    padding-top: var(--header-offset, 120px);
}

.page-resources-fishing-game-strategy-tips__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-game-strategy-tips__intro-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-resources-fishing-game-strategy-tips__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-fishing-game-strategy-tips__btn-primary,
.page-resources-fishing-game-strategy-tips__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-resources-fishing-game-strategy-tips__btn-primary {
    background-color: #C30808; /* Đăng ký màu */
    color: #FFFF00; /* Đăng ký và Đăng nhập font màu */
    border: 2px solid #C30808;
}

.page-resources-fishing-game-strategy-tips__btn-primary:hover {
    background-color: #e00a0a;
    transform: translateY(-2px);
}

.page-resources-fishing-game-strategy-tips__btn-secondary {
    background-color: #ffffff;
    color: #017439;
    border: 2px solid #017439;
}

.page-resources-fishing-game-strategy-tips__btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-resources-fishing-game-strategy-tips__btn-large {
    font-size: 1.1em;
    padding: 18px 35px;
}

.page-resources-fishing-game-strategy-tips__content-section {
    padding: 60px 0;
    background-color: var(--dark-bg-1);
    color: #f0f0f0;
}

.page-resources-fishing-game-strategy-tips__light-bg {
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
    color: #f0f0f0;
}

.page-resources-fishing-game-strategy-tips__dark-bg {
    background-color: #017439;
    color: #ffffff;
}

.page-resources-fishing-game-strategy-tips__section-title {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.page-resources-fishing-game-strategy-tips__subsection-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-fishing-game-strategy-tips__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-resources-fishing-game-strategy-tips__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-resources-fishing-game-strategy-tips__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-fishing-game-strategy-tips__image {
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-fishing-game-strategy-tips__faq-section {
    padding: 60px 0;
    background-color: #017439;
    color: #ffffff;
}

.page-resources-fishing-game-strategy-tips__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-fishing-game-strategy-tips__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-fishing-game-strategy-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.page-resources-fishing-game-strategy-tips__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-fishing-game-strategy-tips__faq-question::-webkit-details-marker,
.page-resources-fishing-game-strategy-tips__faq-question::marker {
    display: none;
}

.page-resources-fishing-game-strategy-tips__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
}

.page-resources-fishing-game-strategy-tips__faq-answer {
    padding: 0 20px 20px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-resources-fishing-game-strategy-tips__cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #005f2f, #017439);
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-fishing-game-strategy-tips__main-title {
        font-size: 2.8em;
    }
    .page-resources-fishing-game-strategy-tips__section-title {
        font-size: 2em;
    }
    .page-resources-fishing-game-strategy-tips__subsection-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-fishing-game-strategy-tips {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-fishing-game-strategy-tips__hero-section {
        padding: 60px 0;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-fishing-game-strategy-tips__main-title {
        font-size: 2.2em;
    }
    .page-resources-fishing-game-strategy-tips__intro-text {
        font-size: 1em;
    }
    .page-resources-fishing-game-strategy-tips__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-resources-fishing-game-strategy-tips__btn-primary,
    .page-resources-fishing-game-strategy-tips__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-fishing-game-strategy-tips__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-fishing-game-strategy-tips__subsection-title {
        font-size: 1.4em;
    }
    .page-resources-fishing-game-strategy-tips__paragraph,
    .page-resources-fishing-game-strategy-tips__list-item,
    .page-resources-fishing-game-strategy-tips__faq-question,
    .page-resources-fishing-game-strategy-tips__faq-answer {
        font-size: 1em;
    }
    .page-resources-fishing-game-strategy-tips__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-resources-fishing-game-strategy-tips__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-resources-fishing-game-strategy-tips__content-section,
    .page-resources-fishing-game-strategy-tips__faq-section,
    .page-resources-fishing-game-strategy-tips__cta-section {
        padding: 40px 0;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
    .page-resources-fishing-game-strategy-tips__faq-question {
        padding: 15px;
    }
    .page-resources-fishing-game-strategy-tips__faq-answer {
        padding: 0 15px 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-fishing-game-strategy-tips__main-title {
        font-size: 1.8em;
    }
    .page-resources-fishing-game-strategy-tips__section-title {
        font-size: 1.5em;
    }
    .page-resources-fishing-game-strategy-tips__subsection-title {
        font-size: 1.2em;
    }
    .page-resources-fishing-game-strategy-tips__btn-large {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* Ensure no image filters are used */
.page-resources-fishing-game-strategy-tips img {
    filter: none;
}