/* style/fishing-games-top-picks.css */

/* Custom Colors from provided scheme */
:root {
    --fishing-games-top-picks-primary: #11A84E;
    --fishing-games-top-picks-secondary: #22C768;
    --fishing-games-top-picks-card-bg: #11271B;
    --fishing-games-top-picks-background: #08160F;
    --fishing-games-top-picks-text-main: #F2FFF6;
    --fishing-games-top-picks-text-secondary: #A7D9B8;
    --fishing-games-top-picks-border: #2E7A4E;
    --fishing-games-top-picks-glow: #57E38D;
    --fishing-games-top-picks-gold: #F2C14E;
    --fishing-games-top-picks-divider: #1E3A2A;
    --fishing-games-top-picks-deep-green: #0A4B2C;
    --fishing-games-top-picks-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-fishing-games-top-picks {
    font-family: Arial, sans-serif;
    color: var(--fishing-games-top-picks-text-main); /* Default text color for the page */
    background-color: var(--fishing-games-top-picks-background); /* Ensure consistent background */
}

.page-fishing-games-top-picks__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-fishing-games-top-picks__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--fishing-games-top-picks-deep-green);
}

.page-fishing-games-top-picks__hero-image-wrapper {
    width: 100%;
    max-height: 70vh; /* Limit height for hero image */
    overflow: hidden;
}

.page-fishing-games-top-picks__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim the image to make text stand out if it were overlayed, but text is below */
}

.page-fishing-games-top-picks__hero-content {
    padding: 40px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--fishing-games-top-picks-text-main);
}

.page-fishing-games-top-picks__main-title {
    color: var(--fishing-games-top-picks-gold);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
}

.page-fishing-games-top-picks__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--fishing-games-top-picks-text-main);
}

.page-fishing-games-top-picks__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* General Section Styling */
.page-fishing-games-top-picks__section-title {
    font-size: 2.5em;
    color: var(--fishing-games-top-picks-gold);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games-top-picks__text-block {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--fishing-games-top-picks-text-secondary);
    text-align: justify;
}

.page-fishing-games-top-picks__dark-section {
    background-color: var(--fishing-games-top-picks-card-bg);
    padding: 60px 0;
}

/* Buttons */
.page-fishing-games-top-picks__btn-primary,
.page-fishing-games-top-picks__btn-secondary,
.page-fishing-games-top-picks__btn-card {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-fishing-games-top-picks__btn-primary {
    background: var(--fishing-games-top-picks-button-gradient);
    color: var(--fishing-games-top-picks-text-main);
    border: 2px solid var(--fishing-games-top-picks-glow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px var(--fishing-games-top-picks-glow);
}

.page-fishing-games-top-picks__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px var(--fishing-games-top-picks-glow);
    opacity: 0.9;
}

.page-fishing-games-top-picks__btn-secondary {
    background-color: transparent;
    color: var(--fishing-games-top-picks-glow);
    border: 2px solid var(--fishing-games-top-picks-glow);
    box-shadow: 0 2px 10px rgba(87, 227, 141, 0.2);
}

.page-fishing-games-top-picks__btn-secondary:hover {
    background-color: var(--fishing-games-top-picks-glow);
    color: var(--fishing-games-top-picks-background);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(87, 227, 141, 0.4);
}

.page-fishing-games-top-picks__btn-card {
    background: var(--fishing-games-top-picks-button-gradient);
    color: var(--fishing-games-top-picks-text-main);
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-top-picks__btn-card:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* About Section */
.page-fishing-games-top-picks__about-section {
    text-align: center;
}

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

.page-fishing-games-top-picks__feature-item {
    background-color: var(--fishing-games-top-picks-deep-green);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 1px solid var(--fishing-games-top-picks-divider);
}

.page-fishing-games-top-picks__feature-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games-top-picks__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px var(--fishing-games-top-picks-glow));
}

.page-fishing-games-top-picks__feature-title {
    font-size: 1.4em;
    color: var(--fishing-games-top-picks-text-main);
    margin-bottom: 10px;
}

.page-fishing-games-top-picks__feature-description {
    color: var(--fishing-games-top-picks-text-secondary);
    font-size: 0.95em;
    line-height: 1.6;
}

/* Games Section */
.page-fishing-games-top-picks__games-section {
    padding: 60px 0;
    background-color: var(--fishing-games-top-picks-background);
    text-align: center;
}

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

.page-fishing-games-top-picks__game-card {
    background-color: var(--fishing-games-top-picks-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--fishing-games-top-picks-divider);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.page-fishing-games-top-picks__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.page-fishing-games-top-picks__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-fishing-games-top-picks__card-title {
    font-size: 1.5em;
    color: var(--fishing-games-top-picks-gold);
    margin-bottom: 10px;
    padding: 0 15px;
    text-align: center;
}

.page-fishing-games-top-picks__card-description {
    font-size: 0.95em;
    color: var(--fishing-games-top-picks-text-secondary);
    line-height: 1.6;
    padding: 0 15px;
    margin-bottom: 15px;
    flex-grow: 1;
    text-align: justify;
}

/* Strategy Section */
.page-fishing-games-top-picks__strategy-section {
    padding: 60px 0;
    text-align: center;
}

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

.page-fishing-games-top-picks__strategy-item {
    background-color: var(--fishing-games-top-picks-deep-green);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--fishing-games-top-picks-divider);
}

.page-fishing-games-top-picks__strategy-title {
    font-size: 1.3em;
    color: var(--fishing-games-top-picks-text-main);
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.page-fishing-games-top-picks__strategy-title::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--fishing-games-top-picks-gold);
    font-size: 1.2em;
    top: -2px;
}

.page-fishing-games-top-picks__strategy-item p {
    color: var(--fishing-games-top-picks-text-secondary);
    line-height: 1.6;
    font-size: 0.95em;
}

.page-fishing-games-top-picks__strategy-item a {
    color: var(--fishing-games-top-picks-glow);
    text-decoration: underline;
}

.page-fishing-games-top-picks__strategy-item a:hover {
    color: var(--fishing-games-top-picks-gold);
}

/* Promotions Section */
.page-fishing-games-top-picks__promotions-section {
    padding: 60px 0;
    background-color: var(--fishing-games-top-picks-background);
    text-align: center;
}

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

.page-fishing-games-top-picks__promo-card {
    background-color: var(--fishing-games-top-picks-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--fishing-games-top-picks-divider);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.page-fishing-games-top-picks__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.page-fishing-games-top-picks__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-fishing-games-top-picks__promo-card .page-fishing-games-top-picks__card-description a {
    color: var(--fishing-games-top-picks-glow);
    text-decoration: underline;
}

.page-fishing-games-top-picks__promo-card .page-fishing-games-top-picks__card-description a:hover {
    color: var(--fishing-games-top-picks-gold);
}

/* Security Section */
.page-fishing-games-top-picks__security-section {
    padding: 60px 0;
    text-align: center;
}

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

.page-fishing-games-top-picks__security-item {
    background-color: var(--fishing-games-top-picks-deep-green);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--fishing-games-top-picks-divider);
}

.page-fishing-games-top-picks__security-title {
    font-size: 1.4em;
    color: var(--fishing-games-top-picks-text-main);
    margin-bottom: 10px;
}

.page-fishing-games-top-picks__security-item p {
    color: var(--fishing-games-top-picks-text-secondary);
    font-size: 0.95em;
    line-height: 1.6;
}

/* FAQ Section */
.page-fishing-games-top-picks__faq-section {
    padding: 60px 0;
    background-color: var(--fishing-games-top-picks-background);
}

.page-fishing-games-top-picks__faq-list {
    margin-top: 40px;
}

.page-fishing-games-top-picks__faq-item {
    background-color: var(--fishing-games-top-picks-card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--fishing-games-top-picks-divider);
}

.page-fishing-games-top-picks__faq-item[open] {
    background-color: var(--fishing-games-top-picks-deep-green);
}

.page-fishing-games-top-picks__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15em;
    font-weight: bold;
    color: var(--fishing-games-top-picks-text-main);
    cursor: pointer;
    background-color: var(--fishing-games-top-picks-card-bg);
    border-bottom: 1px solid var(--fishing-games-top-picks-divider);
}

.page-fishing-games-top-picks__faq-item[open] .page-fishing-games-top-picks__faq-question {
    border-bottom: 1px solid var(--fishing-games-top-picks-gold);
}

.page-fishing-games-top-picks__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome */
}

.page-fishing-games-top-picks__faq-question::marker {
    display: none; /* Hide default marker for Firefox */
}

.page-fishing-games-top-picks__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--fishing-games-top-picks-glow);
}

.page-fishing-games-top-picks__faq-item[open] .page-fishing-games-top-picks__faq-toggle {
    transform: rotate(45deg);
    color: var(--fishing-games-top-picks-gold);
}

.page-fishing-games-top-picks__faq-answer {
    padding: 20px;
    font-size: 1em;
    line-height: 1.7;
    color: var(--fishing-games-top-picks-text-secondary);
    background-color: var(--fishing-games-top-picks-deep-green);
}

.page-fishing-games-top-picks__faq-answer p {
    margin-bottom: 10px;
}

.page-fishing-games-top-picks__faq-answer a {
    color: var(--fishing-games-top-picks-glow);
    text-decoration: underline;
}

.page-fishing-games-top-picks__faq-answer a:hover {
    color: var(--fishing-games-top-picks-gold);
}

/* CTA Bottom Section */
.page-fishing-games-top-picks__cta-bottom-section {
    padding: 80px 0;
    text-align: center;
}

.page-fishing-games-top-picks__cta-bottom-section .page-fishing-games-top-picks__section-title {
    margin-bottom: 25px;
}

/* Utility Classes */
.page-fishing-games-top-picks__text-center {
    text-align: center;
}

.page-fishing-games-top-picks__mt-40 {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games-top-picks__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }
    .page-fishing-games-top-picks__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-top-picks__hero-content {
        padding: 30px 15px;
    }
    .page-fishing-games-top-picks__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }
    .page-fishing-games-top-picks__hero-description {
        font-size: 1em;
    }
    .page-fishing-games-top-picks__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games-top-picks__btn-primary,
    .page-fishing-games-top-picks__btn-secondary,
    .page-fishing-games-top-picks__btn-card {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games-top-picks__cta-buttons,
    .page-fishing-games-top-picks__button-group,
    .page-fishing-games-top-picks__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-fishing-games-top-picks__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-fishing-games-top-picks__text-block {
        font-size: 0.95em;
    }
    .page-fishing-games-top-picks__feature-grid,
    .page-fishing-games-top-picks__game-list,
    .page-fishing-games-top-picks__promo-grid,
    .page-fishing-games-top-picks__strategy-grid,
    .page-fishing-games-top-picks__security-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games-top-picks__game-image,
    .page-fishing-games-top-picks__promo-image {
        height: 180px;
    }
    .page-fishing-games-top-picks__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-fishing-games-top-picks__faq-answer {
        font-size: 0.95em;
        padding: 15px;
    }
    .page-fishing-games-top-picks__container {
        padding: 0 15px;
    }
    /* Ensure images are responsive */
    .page-fishing-games-top-picks img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games-top-picks__hero-image-wrapper,
    .page-fishing-games-top-picks__game-card,
    .page-fishing-games-top-picks__promo-card,
    .page-fishing-games-top-picks__feature-item,
    .page-fishing-games-top-picks__strategy-item,
    .page-fishing-games-top-picks__security-item,
    .page-fishing-games-top-picks__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Ensure no overflow */
    }
    .page-fishing-games-top-picks__hero-section,
    .page-fishing-games-top-picks__about-section,
    .page-fishing-games-top-picks__games-section,
    .page-fishing-games-top-picks__strategy-section,
    .page-fishing-games-top-picks__promotions-section,
    .page-fishing-games-top-picks__security-section,
    .page-fishing-games-top-picks__faq-section,
    .page-fishing-games-top-picks__cta-bottom-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-fishing-games-top-picks__hero-section {
        padding-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-top-picks__main-title {
        font-size: clamp(1.2em, 7vw, 2em);
    }
    .page-fishing-games-top-picks__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games-top-picks__btn-primary,
    .page-fishing-games-top-picks__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-fishing-games-top-picks__feature-item,
    .page-fishing-games-top-picks__game-card,
    .page-fishing-games-top-picks__promo-card,
    .page-fishing-games-top-picks__strategy-item,
    .page-fishing-games-top-picks__security-item {
        padding: 20px;
    }
}