/* style/fishing-games-strategy.css */
:root {
    --primary-color: #FFD700;
    --secondary-color: #1A1A1A;
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --background-dark: #1A1A1A;
    --background-light: #ffffff;
    --accent-color: #E53935; /* Example accent color */
}

.page-fishing-games-strategy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-light); /* Default to light text for dark body background */
    background-color: var(--background-dark);
}

.page-fishing-games-strategy__hero-section {
    position: relative;
    width: 100%;
    padding-top: var(--header-offset, 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    overflow: hidden;
}

.page-fishing-games-strategy__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-fishing-games-strategy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-fishing-games-strategy__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.page-fishing-games-strategy__main-title {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-strategy__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-strategy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-fishing-games-strategy__btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-fishing-games-strategy__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
}

.page-fishing-games-strategy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

.page-fishing-games-strategy__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games-strategy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-fishing-games-strategy__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-fishing-games-strategy__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-fishing-games-strategy__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-fishing-games-strategy__list-item {
    margin-bottom: 10px;
}

.page-fishing-games-strategy img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 30px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy__image-full-width {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.page-fishing-games-strategy__cta-section {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
}

.page-fishing-games-strategy__cta-title {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-fishing-games-strategy__cta-text {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-fishing-games-strategy__faq-section {
    background-color: var(--background-dark);
    color: var(--text-color-light);
    padding: 60px 20px;
}

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

.page-fishing-games-strategy__faq-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #333333;
    border-bottom: 1px solid #444444;
    transition: background-color 0.3s ease;
}

.page-fishing-games-strategy__faq-question:hover {
    background-color: #444444;
}

.page-fishing-games-strategy__faq-title {
    font-size: 1.2em;
    color: var(--primary-color);
    margin: 0;
}

.page-fishing-games-strategy__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games-strategy__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #2a2a2a;
}

.page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px 25px;
}

.page-fishing-games-strategy__faq-answer .page-fishing-games-strategy__paragraph {
    margin-bottom: 0;
    color: var(--text-color-light);
}

.page-fishing-games-strategy__conclusion-section {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    padding: 80px 20px;
    text-align: center;
}

.page-fishing-games-strategy__conclusion-section .page-fishing-games-strategy__section-title {
    color: var(--primary-color);
}

.page-fishing-games-strategy__conclusion-section .page-fishing-games-strategy__paragraph {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games-strategy__main-title {
        font-size: 2.8em;
    }
    .page-fishing-games-strategy__section-title {
        font-size: 2em;
    }
    .page-fishing-games-strategy__sub-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-strategy {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-fishing-games-strategy__hero-section {
        min-height: 400px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-fishing-games-strategy__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-fishing-games-strategy__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-fishing-games-strategy__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games-strategy__content-area, 
    .page-fishing-games-strategy__faq-section,
    .page-fishing-games-strategy__conclusion-section {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-fishing-games-strategy__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-fishing-games-strategy__sub-title {
        font-size: 1.3em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-fishing-games-strategy__cta-section {
        padding: 30px 20px;
    }
    .page-fishing-games-strategy__cta-title {
        font-size: 1.8em;
    }
    .page-fishing-games-strategy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games-strategy video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games-strategy__faq-question {
        padding: 15px 20px;
    }
    .page-fishing-games-strategy__faq-title {
        font-size: 1.1em;
    }
    .page-fishing-games-strategy__faq-answer {
        padding: 0 20px;
    }
    .page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-strategy__main-title {
        font-size: 1.8em;
    }
    .page-fishing-games-strategy__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games-strategy__hero-description {
        font-size: 0.9em;
    }
}