/* style/fishing-games-strategy.css */

/* Base Styles for the Page Content */
.page-fishing-games-strategy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Default text color for potentially dark body background */
    background-color: var(--dark-bg-1, #1a1a1a); /* Inherit from shared or fallback */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

/* General Container for sections */
.page-fishing-games-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section Styling */
.page-fishing-games-strategy__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-fishing-games-strategy__section-description {
    font-size: 1.1em;
    color: #d0d0d0; /* Lighter text for description on dark background */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Sub-titles */
.page-fishing-games-strategy__sub-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Paragraph text within content sections */
.page-fishing-games-strategy p {
    color: #e0e0e0;
    margin-bottom: 1em;
}

/* --- Hero Section --- */
.page-fishing-games-strategy__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background-color: #1a1a1a; /* Dark background for hero */
    color: #ffffff;
    overflow: hidden;
    min-height: 500px;
}

.page-fishing-games-strategy__hero-content {
    max-width: 700px;
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.page-fishing-games-strategy__hero-title {
    font-size: 3.5em;
    color: #FFFFFF; /* White text for hero title */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-fishing-games-strategy__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-fishing-games-strategy__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-fishing-games-strategy__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2; /* Subtle background image */
    z-index: 0;
    overflow: hidden;
}

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

/* --- Buttons --- */
.page-fishing-games-strategy__btn-primary,
.page-fishing-games-strategy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Ensure long words break */
}

.page-fishing-games-strategy__btn-primary {
    background-color: #26A9E0; /* Brand color */
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-fishing-games-strategy__btn-primary:hover {
    background-color: #1e87b8;
    border-color: #1e87b8;
}

.page-fishing-games-strategy__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-fishing-games-strategy__btn-secondary:hover {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-fishing-games-strategy__cta-center {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-fishing-games-strategy__cta-final {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* --- Why SV66 Section --- */
.page-fishing-games-strategy__why-sv66 {
    background-color: #1f1f1f; /* Slightly lighter dark background */
    padding: 80px 0;
    color: #e0e0e0;
}

.page-fishing-games-strategy__why-sv66 .page-fishing-games-strategy__section-title {
    color: #26A9E0;
}

.page-fishing-games-strategy__why-sv66 .page-fishing-games-strategy__section-description {
    color: #d0d0d0;
}

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

.page-fishing-games-strategy__feature-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-fishing-games-strategy__feature-title {
    font-size: 1.5em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-fishing-games-strategy__feature-text {
    color: #c0c0c0;
    font-size: 0.95em;
}

/* --- Gameplay Basics Section --- */
.page-fishing-games-strategy__gameplay-basics {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: #e0e0e0;
}

.page-fishing-games-strategy__gameplay-basics .page-fishing-games-strategy__section-title {
    color: #26A9E0;
}

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

.page-fishing-games-strategy__text-content {
    flex: 1;
}

.page-fishing-games-strategy__image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fishing-games-strategy__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-fishing-games-strategy__list strong {
    color: #FFFFFF;
}

/* --- Advanced Strategies Section --- */
.page-fishing-games-strategy__advanced-strategies {
    background-color: #1f1f1f;
    padding: 80px 0;
    color: #e0e0e0;
}

.page-fishing-games-strategy__advanced-strategies .page-fishing-games-strategy__section-title {
    color: #26A9E0;
}

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

.page-fishing-games-strategy__strategy-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__strategy-title {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-fishing-games-strategy__strategy-text {
    color: #c0c0c0;
    font-size: 0.95em;
}

.page-fishing-games-strategy__image-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-fishing-games-strategy__strategy-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* --- Weapon Skills Section --- */
.page-fishing-games-strategy__weapon-skills {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: #e0e0e0;
}

.page-fishing-games-strategy__weapon-skills .page-fishing-games-strategy__section-title {
    color: #26A9E0;
}

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

.page-fishing-games-strategy__skill-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__skill-title {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-fishing-games-strategy__skill-text {
    color: #c0c0c0;
    font-size: 0.95em;
}

/* --- Bankroll Management Section --- */
.page-fishing-games-strategy__bankroll-management {
    background-color: #1f1f1f;
    padding: 80px 0;
    color: #e0e0e0;
}

.page-fishing-games-strategy__bankroll-management .page-fishing-games-strategy__section-title {
    color: #26A9E0;
}

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

.page-fishing-games-strategy__point-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__point-title {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-fishing-games-strategy__point-text {
    color: #c0c0c0;
    font-size: 0.95em;
}

/* --- FAQ Section --- */
.page-fishing-games-strategy__faq-section {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: #e0e0e0;
}

.page-fishing-games-strategy__faq-section .page-fishing-games-strategy__section-title {
    color: #26A9E0;
}

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

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

.page-fishing-games-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #26A9E0; /* Brand color for question background */
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    user-select: none;
    list-style: none; /* For details/summary */
}

/* Hide default marker for <details> */
.page-fishing-games-strategy__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-fishing-games-strategy__faq-item summary {
    list-style: none;
}

.page-fishing-games-strategy__faq-qtext {
    flex-grow: 1;
}

.page-fishing-games-strategy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-fishing-games-strategy__faq-item[open] .page-fishing-games-strategy__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or similar */
}

.page-fishing-games-strategy__faq-answer {
    padding: 20px 25px;
    background-color: #3a3a3a; /* Darker background for answer */
    color: #e0e0e0;
    font-size: 0.95em;
}

.page-fishing-games-strategy__faq-answer p {
    color: #e0e0e0;
}

/* --- Conclusion Section --- */
.page-fishing-games-strategy__conclusion-section {
    background-color: #1f1f1f;
    padding: 80px 0;
    text-align: center;
    color: #e0e0e0;
}

.page-fishing-games-strategy__conclusion-section .page-fishing-games-strategy__section-title {
    color: #26A9E0;
}

.page-fishing-games-strategy__conclusion-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-fishing-games-strategy__conclusion-content p {
    font-size: 1.1em;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.page-fishing-games-strategy__conclusion-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-fishing-games-strategy__hero-title {
        font-size: 3em;
    }
    .page-fishing-games-strategy__hero-description {
        font-size: 1.2em;
    }
    .page-fishing-games-strategy__section-title {
        font-size: 2em;
    }
    .page-fishing-games-strategy__content-flex {
        flex-direction: column;
    }
    .page-fishing-games-strategy__image-content {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    /* Mobile General Content Padding */
    .page-fishing-games-strategy__container {
        padding: 0 15px;
    }

    /* Hero Section */
    .page-fishing-games-strategy__hero-section {
        padding: 60px 0;
        min-height: unset;
    }
    .page-fishing-games-strategy__hero-content {
        padding: 0 15px;
    }
    .page-fishing-games-strategy__hero-title {
        font-size: 2.2em;
    }
    .page-fishing-games-strategy__hero-description {
        font-size: 1em;
    }
    .page-fishing-games-strategy__hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    /* Sections */
    .page-fishing-games-strategy__why-sv66,
    .page-fishing-games-strategy__gameplay-basics,
    .page-fishing-games-strategy__advanced-strategies,
    .page-fishing-games-strategy__weapon-skills,
    .page-fishing-games-strategy__bankroll-management,
    .page-fishing-games-strategy__faq-section,
    .page-fishing-games-strategy__conclusion-section {
        padding: 60px 0;
    }

    .page-fishing-games-strategy__section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-fishing-games-strategy__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
}