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

/* Base styles for the page content, ensuring scope isolation */
.page-games-fishing-games {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333; /* Default text color for light backgrounds */
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for general sections */
}

/* Container for content width */
.page-games-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Shared Section Styling */
.page-games-fishing-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-games-fishing-games__section:nth-of-type(even) {
    background-color: #e9ecef; /* Slightly darker background for alternating sections */
}

.page-games-fishing-games__section-title {
    font-size: 2.8em;
    color: #1A2E47;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-games-fishing-games__section-description {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-games-fishing-games strong.highlight {
    color: #1A2E47;
    font-weight: bold;
}

/* CTA Button Styling */
.page-games-fishing-games__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2E47;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-games-fishing-games__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    color: #1A2E47;
}

.page-games-fishing-games__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
    margin-top: 30px;
}

/* Image Styling */
.page-games-fishing-games__section-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.page-games-fishing-games__hero-section {
    background: linear-gradient(135deg, #1A2E47 0%, #3a506b 100%); /* Dark blue gradient */
    padding: 80px 0 40px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

.page-games-fishing-games__hero-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-games-fishing-games__hero-section .page-games-fishing-games__hero-cta {
    background-color: #FFD700;
    color: #1A2E47;
    border: none;
    padding: 18px 40px;
    font-size: 1.3em;
    margin-top: 20px;
    border-radius: 50px;
    text-transform: uppercase;
}

.page-games-fishing-games__hero-section .page-games-fishing-games__hero-cta:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
}

.page-games-fishing-games__hero-image {
    width: 100%;
    max-width: 1000px;
    margin-top: 50px;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.2);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Section */
.page-games-fishing-games__why-choose {
    background-color: #f0f2f5;
}

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

.page-games-fishing-games__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-bottom: 5px solid #FFD700;
}

.page-games-fishing-games__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-games-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

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

.page-games-fishing-games__feature-item p {
    color: #666;
    font-size: 0.95em;
}

/* How to Play Section */
.page-games-fishing-games__how-to-play {
    background-color: #ffffff;
}

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

.page-games-fishing-games__step-item {
    text-align: left;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #1A2E47;
}

.page-games-fishing-games__step-item:nth-child(odd) {
    border-left-color: #FFD700;
}

.page-games-fishing-games__step-title {
    font-size: 1.6em;
    color: #1A2E47;
    margin-bottom: 15px;
}

.page-games-fishing-games__step-item p {
    color: #555;
    font-size: 1em;
}

.page-games-fishing-games__step-item a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-games-fishing-games__step-item a:hover {
    text-decoration: underline;
}


/* Strategies Section */
.page-games-fishing-games__strategies {
    background-color: #e9ecef;
}

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

.page-games-fishing-games__strategy-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
    border-right: 5px solid #1A2E47;
}

.page-games-fishing-games__strategy-item:nth-child(even) {
    border-right-color: #FFD700;
}

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

.page-games-fishing-games__strategy-item p {
    color: #666;
    font-size: 0.95em;
}

/* Offers Section */
.page-games-fishing-games__offers {
    background-color: #ffffff;
}

.page-games-fishing-games__offer-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-games-fishing-games__offer-list li {
    background-color: #f8f9fa;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #333;
}

.page-games-fishing-games__offer-list li strong {
    color: #1A2E47;
}

.page-games-fishing-games__offer-list li a {
    color: #1A2E47;
    font-weight: bold;
    text-decoration: none;
}

.page-games-fishing-games__offer-list li a:hover {
    text-decoration: underline;
    color: #FFD700;
}

/* Safety & Support Section */
.page-games-fishing-games__safety-support {
    background-color: #f0f2f5;
}

.page-games-fishing-games__safety-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-games-fishing-games__safety-list li {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #333;
    border-right: 5px solid #1A2E47;
}

.page-games-fishing-games__safety-list li strong {
    color: #1A2E47;
}

.page-games-fishing-games__safety-list li a {
    color: #FFD700;
    font-weight: bold;
    text-decoration: none;
}

.page-games-fishing-games__safety-list li a:hover {
    text-decoration: underline;
}


/* FAQ Section */
.page-games-fishing-games__faq {
    background-color: #ffffff;
}

.page-games-fishing-games__faq-list {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-games-fishing-games__faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-games-fishing-games__faq-question {
    background-color: #1A2E47;
    color: #FFD700;
    padding: 18px 25px;
    margin: 0;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-games-fishing-games__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-games-fishing-games__faq-item.active .page-games-fishing-games__faq-question {
    background-color: #2a415a;
    color: #FFD700;
}

.page-games-fishing-games__faq-item.active .page-games-fishing-games__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-games-fishing-games__faq-answer {
    padding: 0 25px;
    background-color: #fefefe;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #444;
}

.page-games-fishing-games__faq-item.active .page-games-fishing-games__faq-answer {
    max-height: 200px; /* Adjust as needed, or use JS to calculate */
    padding: 15px 25px 25px;
}

.page-games-fishing-games__faq-answer p {
    margin: 0;
    font-size: 0.95em;
}
.page-games-fishing-games__faq-answer a {
    color: #1A2E47;
    font-weight: bold;
    text-decoration: none;
}
.page-games-fishing-games__faq-answer a:hover {
    text-decoration: underline;
    color: #FFD700;
}


/* Call to Action Section (Conclusion) */
.page-games-fishing-games__call-to-action {
    background: linear-gradient(45deg, #1A2E47, #3a506b);
    color: #fff;
    padding: 80px 0;
}

.page-games-fishing-games__call-to-action .page-games-fishing-games__section-title {
    color: #FFD700;
}

.page-games-fishing-games__call-to-action .page-games-fishing-games__section-description {
    color: #e0e0e0;
}

.page-games-fishing-games__call-to-action .page-games-fishing-games__cta-button {
    background-color: #FFD700;
    color: #1A2E47;
    border-color: #FFD700;
}

.page-games-fishing-games__call-to-action .page-games-fishing-games__cta-button:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games-fishing-games__hero-title {
        font-size: 2.8em;
    }
    .page-games-fishing-games__section-title {
        font-size: 2.2em;
    }
    .page-games-fishing-games__hero-cta,
    .page-games-fishing-games__cta-button--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
    .page-games-fishing-games__features-grid,
    .page-games-fishing-games__step-by-step,
    .page-games-fishing-games__strategy-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-games-fishing-games__hero-title {
        font-size: 2.2em;
    }
    .page-games-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-games-fishing-games__section-description {
        font-size: 1em;
    }
    .page-games-fishing-games__feature-title,
    .page-games-fishing-games__step-title,
    .page-games-fishing-games__strategy-title {
        font-size: 1.3em;
    }
    .page-games-fishing-games__hero-section,
    .page-games-fishing-games__section {
        padding: 40px 0;
    }
    .page-games-fishing-games__hero-image {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .page-games-fishing-games__container {
        padding: 0 15px;
    }
    .page-games-fishing-games__hero-title {
        font-size: 1.8em;
    }
    .page-games-fishing-games__section-title {
        font-size: 1.6em;
    }
    .page-games-fishing-games__hero-description {
        font-size: 0.95em;
    }
    .page-games-fishing-games__hero-cta,
    .page-games-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-games-fishing-games__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-games-fishing-games__features-grid,
    .page-games-fishing-games__step-by-step,
    .page-games-fishing-games__strategy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-games-fishing-games__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-games-fishing-games__faq-item.active .page-games-fishing-games__faq-answer {
        padding: 10px 20px 20px;
    }
}