/* style/fishing-games-popular-titles.css */

/* Base styles for the page content */
.page-fishing-games-popular-titles {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #000000; /* Ensure consistency with body background */
}

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

.page-fishing-games-popular-titles__section {
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-fishing-games-popular-titles__dark-bg {
    background-color: #0d0d0d;
    color: #ffffff;
}

.page-fishing-games-popular-titles__light-bg {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

.page-fishing-games-popular-titles__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold brand color */
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.page-fishing-games-popular-titles__section-description {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-fishing-games-popular-titles__hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    min-height: 700px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    position: relative;
    overflow: hidden;
    text-align: left;
}

.page-fishing-games-popular-titles__hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-right: 40px;
}

.page-fishing-games-popular-titles__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold brand color */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
}

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

.page-fishing-games-popular-titles__hero-buttons {
    display: flex;
    gap: 20px;
}

.page-fishing-games-popular-titles__btn-primary,
.page-fishing-games-popular-titles__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-fishing-games-popular-titles__btn-primary {
    background-color: #FFD700; /* Gold brand color */
    color: #000000; /* Black text for contrast */
    border: 2px solid #FFD700;
}

.page-fishing-games-popular-titles__btn-primary:hover {
    background-color: #e0b800;
    border-color: #e0b800;
}

.page-fishing-games-popular-titles__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold brand color */
    border: 2px solid #FFD700;
}

.page-fishing-games-popular-titles__btn-secondary:hover {
    background-color: #FFD700;
    color: #000000;
}

.page-fishing-games-popular-titles__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-fishing-games-popular-titles__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Darken image for text readability */
}

/* Intro Section */
.page-fishing-games-popular-titles__intro-section .page-fishing-games-popular-titles__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games-popular-titles__feature-card {
    background-color: #1a1a1a; /* Darker background for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-fishing-games-popular-titles__feature-card:hover {
    transform: translateY(-10px);
}

.page-fishing-games-popular-titles__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-fishing-games-popular-titles__card-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold brand color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games-popular-titles__card-text {
    font-size: 1em;
    color: #cccccc;
}

/* Game Titles Section */
.page-fishing-games-popular-titles__game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games-popular-titles__game-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-fishing-games-popular-titles__game-card:hover {
    transform: translateY(-10px);
}

.page-fishing-games-popular-titles__game-card .page-fishing-games-popular-titles__card-title a {
    color: #FFD700; /* Gold brand color for links */
    text-decoration: none;
}

.page-fishing-games-popular-titles__game-card .page-fishing-games-popular-titles__card-title a:hover {
    text-decoration: underline;
}

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

.page-fishing-games-popular-titles__strategy-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.page-fishing-games-popular-titles__strategy-item .page-fishing-games-popular-titles__card-title {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-fishing-games-popular-titles__strategy-image {
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games-popular-titles__promo-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-fishing-games-popular-titles__promo-card .page-fishing-games-popular-titles__btn-primary {
    margin-top: 20px;
    width: calc(100% - 40px);
}

/* FAQ Section */
.page-fishing-games-popular-titles__faq-list {
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-popular-titles__faq-item {
    background-color: #1a1a1a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-popular-titles__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700; /* Gold brand color */
    cursor: pointer;
    background-color: #8B0000; /* Dark red brand color */
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.page-fishing-games-popular-titles__faq-question:hover {
    background-color: #a00000;
}

.page-fishing-games-popular-titles__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
}

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

.page-fishing-games-popular-titles__faq-answer p {
    padding-bottom: 15px;
    margin: 0;
}

.page-fishing-games-popular-titles__faq-item.active .page-fishing-games-popular-titles__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 15px 25px;
}

/* Conclusion Section */
.page-fishing-games-popular-titles__conclusion-section .page-fishing-games-popular-titles__cta-button {
    margin-top: 40px;
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
}

/* Image responsiveness */
.page-fishing-games-popular-titles img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-fishing-games-popular-titles__hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
        min-height: auto;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-fishing-games-popular-titles__hero-content {
        margin-right: 0;
        max-width: 100%;
    }

    .page-fishing-games-popular-titles__hero-title {
        font-size: 2.5em;
    }

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

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

    .page-fishing-games-popular-titles__btn-primary,
    .page-fishing-games-popular-titles__btn-secondary,
    .page-fishing-games-popular-titles a[class*="button"],
    .page-fishing-games-popular-titles a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-fishing-games-popular-titles__section-description {
        font-size: 0.95em;
    }

    .page-fishing-games-popular-titles__feature-grid,
    .page-fishing-games-popular-titles__game-card-grid,
    .page-fishing-games-popular-titles__strategy-grid,
    .page-fishing-games-popular-titles__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games-popular-titles__card-image {
        height: 180px;
    }

    .page-fishing-games-popular-titles__section,
    .page-fishing-games-popular-titles__card,
    .page-fishing-games-popular-titles__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games-popular-titles img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-fishing-games-popular-titles__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-fishing-games-popular-titles__faq-answer {
        padding: 0 20px;
    }

    .page-fishing-games-popular-titles__faq-item.active .page-fishing-games-popular-titles__faq-answer {
        padding: 15px 20px;
    }

    .page-fishing-games-popular-titles__cta-button {
        font-size: 1.1em;
        padding: 15px 20px;
    }
}