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

/* Base styles for the page */
.page-fishing-games-popular-game-strategy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Default light text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

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

/* Hero Section */
.page-fishing-games-popular-game-strategy__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    padding: 80px 0;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    overflow: hidden;
    color: #ffffff; /* Light text for dark background */
}

.page-fishing-games-popular-game-strategy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); /* Darken image slightly for text contrast */
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-fishing-games-popular-game-strategy__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

/* Call to Action Buttons */
.page-fishing-games-popular-game-strategy__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 600px; /* Constrain width of button group */
    margin: 0 auto;
}

.page-fishing-games-popular-game-strategy__btn-primary,
.page-fishing-games-popular-game-strategy__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.2s ease;
    box-sizing: border-box;
    text-align: center;
    max-width: 100%; /* Ensure button adapts to container */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-fishing-games-popular-game-strategy__btn-primary {
    background-color: #C30808; /* Red for Register/Login, as specified */
    color: #FFFF00; /* Yellow text for Register/Login, as specified */
    border: 2px solid #C30808;
}

.page-fishing-games-popular-game-strategy__btn-primary:hover {
    background-color: #e02020;
    transform: translateY(-2px);
}

.page-fishing-games-popular-game-strategy__btn-secondary {
    background-color: #017439; /* Main brand color for secondary actions */
    color: #ffffff;
    border: 2px solid #017439;
}

.page-fishing-games-popular-game-strategy__btn-secondary:hover {
    background-color: #02944b;
    transform: translateY(-2px);
}

/* Content Area */
.page-fishing-games-popular-game-strategy__content-area {
    padding: 60px 0;
    color: #333333; /* Dark text for light background */
}

.page-fishing-games-popular-game-strategy__section-title {
    font-size: 2.2em;
    color: #017439; /* Brand color for titles */
    margin-bottom: 25px;
    text-align: center;
    padding-top: 20px;
}

.page-fishing-games-popular-game-strategy__subsection-title {
    font-size: 1.8em;
    color: #017439; /* Brand color for subtitles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-fishing-games-popular-game-strategy__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Images within content */
.page-fishing-games-popular-game-strategy__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-fishing-games-popular-game-strategy__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
    display: block; /* Ensure it behaves as a block element for max-width */
    margin: 0 auto; /* Center the image */
}

/* List styles */
.page-fishing-games-popular-game-strategy__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-fishing-games-popular-game-strategy__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-fishing-games-popular-game-strategy__list-item strong {
    color: #017439; /* Highlight important terms */
}

/* Card Grid */
.page-fishing-games-popular-game-strategy__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games-popular-game-strategy__card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    color: #333333; /* Dark text for light background */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games-popular-game-strategy__card:hover {
    transform: translateY(-5px);
}

.page-fishing-games-popular-game-strategy__card-title {
    font-size: 1.5em;
    color: #017439;
    margin-bottom: 15px;
}

.page-fishing-games-popular-game-strategy__card-text {
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow text to take available space */
}

.page-fishing-games-popular-game-strategy__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 15px;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

/* Video Section */
.page-fishing-games-popular-game-strategy__video-container {
    margin: 40px auto;
    max-width: 1000px; /* Max width for video */
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #000; /* Black background for video */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-popular-game-strategy__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.page-fishing-games-popular-game-strategy__video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.page-fishing-games-popular-game-strategy__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}


/* FAQ Section */
.page-fishing-games-popular-game-strategy__faq-list {
    margin-top: 40px;
}

.page-fishing-games-popular-game-strategy__faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #333333; /* Dark text for light background */
}

.page-fishing-games-popular-game-strategy__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #017439;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.page-fishing-games-popular-game-strategy__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-fishing-games-popular-game-strategy__faq-item summary:hover {
    background-color: #f0f0f0;
}

.page-fishing-games-popular-game-strategy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #017439;
}

.page-fishing-games-popular-game-strategy__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #555555;
}

.page-fishing-games-popular-game-strategy__faq-answer p {
    margin-bottom: 10px;
}
.page-fishing-games-popular-game-strategy__faq-answer a {
    color: #017439;
    text-decoration: underline;
}

/* Call to Action Section (bottom) */
.page-fishing-games-popular-game-strategy__cta-section {
    background-color: #017439; /* Brand color dark background */
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
    border-radius: 10px;
}

.page-fishing-games-popular-game-strategy__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-fishing-games-popular-game-strategy__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #ffffff;
}

/* Background Color Classes for Contrast */
.page-fishing-games-popular-game-strategy__dark-bg {
    background-color: #017439; /* Main brand color for dark sections */
    color: #ffffff;
}

.page-fishing-games-popular-game-strategy__light-bg {
    background-color: #ffffff; /* White background for main content */
    color: #333333;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games-popular-game-strategy__hero-title {
        font-size: 2.5em;
    }
    .page-fishing-games-popular-game-strategy__section-title {
        font-size: 2em;
    }
    .page-fishing-games-popular-game-strategy__subsection-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-popular-game-strategy__container {
        padding: 0 15px;
    }

    .page-fishing-games-popular-game-strategy__hero-section {
        min-height: 400px;
        padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
    }

    .page-fishing-games-popular-game-strategy__hero-title {
        font-size: 2em;
    }

    .page-fishing-games-popular-game-strategy__hero-description {
        font-size: 1em;
    }

    .page-fishing-games-popular-game-strategy__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games-popular-game-strategy__btn-primary,
    .page-fishing-games-popular-game-strategy__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games-popular-game-strategy__content-area {
        padding: 40px 0;
    }

    .page-fishing-games-popular-game-strategy__section-title {
        font-size: 1.8em;
    }

    .page-fishing-games-popular-game-strategy__subsection-title {
        font-size: 1.4em;
    }

    .page-fishing-games-popular-game-strategy__text-block,
    .page-fishing-games-popular-game-strategy__list-item,
    .page-fishing-games-popular-game-strategy__card-text,
    .page-fishing-games-popular-game-strategy__faq-answer {
        font-size: 0.95em;
    }

    .page-fishing-games-popular-game-strategy__card-grid {
        grid-template-columns: 1fr;
    }

    .page-fishing-games-popular-game-strategy__faq-item summary {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-fishing-games-popular-game-strategy__faq-answer {
        padding: 0 20px 15px;
    }

    .page-fishing-games-popular-game-strategy__cta-section {
        padding: 40px 15px;
    }

    .page-fishing-games-popular-game-strategy__cta-title {
        font-size: 2em;
    }

    .page-fishing-games-popular-game-strategy__cta-description {
        font-size: 1em;
    }

    /* Mobile image adaptation */
    .page-fishing-games-popular-game-strategy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important; /* Enforce minimum size on mobile */
        min-height: 200px !important; /* Enforce minimum size on mobile */
    }

    .page-fishing-games-popular-game-strategy__image-wrapper,
    .page-fishing-games-popular-game-strategy__card,
    .page-fishing-games-popular-game-strategy__video-container,
    .page-fishing-games-popular-game-strategy__video-wrapper,
    .page-fishing-games-popular-game-strategy__cta-buttons,
    .page-fishing-games-popular-game-strategy__section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }
    .page-fishing-games-popular-game-strategy__video-container,
    .page-fishing-games-popular-game-strategy__cta-section,
    .page-fishing-games-popular-game-strategy__content-area,
    .page-fishing-games-popular-game-strategy__hero-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-fishing-games-popular-game-strategy__video-section {
        padding-top: var(--header-offset, 120px) !important; /* Mobile video section padding */
    }
    .page-fishing-games-popular-game-strategy__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* Ensure content area images are not scaled down below 200px by specific rules */
    .page-fishing-games-popular-game-strategy__content-area img {
        width: 100% !important; /* Ensure it takes full width */
        height: auto !important;
        min-width: 200px !important; /* Override with important if necessary, but max-width:100% should handle this */
        min-height: 200px !important;
    }
}