/* style/fishing-games.css */

/* Base Styles */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #000; /* Inherited from body, explicit for clarity */
}

.page-fishing-games__content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-fishing-games__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    padding-top: var(--header-offset, 120px);
    overflow: hidden;
    background: linear-gradient(135deg, #017439, #000000);
    color: #FFFFFF;
    text-align: center;
}

.page-fishing-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFF00;
}

.page-fishing-games__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-fishing-games__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.page-fishing-games__btn-primary {
    background-color: #C30808;
    color: #FFFF00;
    border: 2px solid #C30808;
}

.page-fishing-games__btn-primary:hover {
    background-color: #a30606;
    border-color: #a30606;
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #017439;
}

.page-fishing-games__btn-play {
    background-color: #017439;
    color: #FFFFFF;
    border: 2px solid #017439;
    padding: 10px 20px;
    font-size: 1em;
}

.page-fishing-games__btn-play:hover {
    background-color: #005a2d;
    border-color: #005a2d;
}

.page-fishing-games__btn-view-promo {
    background-color: #C30808;
    color: #FFFF00;
    border: 2px solid #C30808;
    padding: 10px 20px;
    font-size: 1em;
}

.page-fishing-games__btn-view-promo:hover {
    background-color: #a30606;
    border-color: #a30606;
}

/* About Section */
.page-fishing-games__about-section {
    background-color: #f8f8f8;
    color: #333333;
}

.page-fishing-games__about-section .page-fishing-games__section-title {
    color: #333333;
}

.page-fishing-games__about-section .page-fishing-games__section-intro {
    color: #555555;
}

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

.page-fishing-games__feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333;
}

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

.page-fishing-games__feature-icon {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__feature-description {
    font-size: 1em;
    color: #555555;
}

/* Gameplay Section */
.page-fishing-games__gameplay-section {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.page-fishing-games__game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__game-thumbnail {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
}

.page-fishing-games__game-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #FFFF00;
}

.page-fishing-games__game-title a {
    color: #FFFF00;
    text-decoration: none;
}

.page-fishing-games__game-title a:hover {
    text-decoration: underline;
}

.page-fishing-games__game-description {
    font-size: 0.95em;
    color: #f0f0f0;
    padding: 0 20px 20px;
}

/* Tips & Strategies Section */
.page-fishing-games__tips-strategies-section {
    background-color: #f8f8f8;
    color: #333333;
}

.page-fishing-games__tips-strategies-section .page-fishing-games__section-title {
    color: #333333;
}

.page-fishing-games__tips-strategies-section .page-fishing-games__section-intro {
    color: #555555;
}

.page-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.page-fishing-games__tip-item {
    background: #ffffff;
    border-left: 5px solid #017439;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    color: #333333;
}

.page-fishing-games__tip-title {
    font-size: 1.4em;
    color: #017439;
    margin-bottom: 10px;
}

.page-fishing-games__tip-description {
    font-size: 1em;
    color: #555555;
}

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    background-color: #1a1a1a;
    color: #ffffff;
}

.page-fishing-games__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-fishing-games__promo-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
}

.page-fishing-games__promo-title {
    font-size: 1.4em;
    color: #FFFF00;
    margin-bottom: 10px;
    padding: 0 20px;
}

.page-fishing-games__promo-description {
    font-size: 0.95em;
    color: #f0f0f0;
    padding: 0 20px 20px;
}

/* Mobile Section */
.page-fishing-games__mobile-section {
    background-color: #f8f8f8;
    color: #333333;
}

.page-fishing-games__mobile-section .page-fishing-games__section-title {
    color: #333333;
}

.page-fishing-games__mobile-section .page-fishing-games__section-intro {
    color: #555555;
}

.page-fishing-games__mobile-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.page-fishing-games__mobile-text {
    flex: 1;
}

.page-fishing-games__mobile-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #555555;
}

.page-fishing-games__mobile-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-fishing-games__mobile-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1em;
    color: #333333;
}

.page-fishing-games__icon {
    color: #017439;
    font-size: 1.2em;
    margin-right: 10px;
}

.page-fishing-games__mobile-buttons {
    display: flex;
    gap: 15px;
}

.page-fishing-games__mobile-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-fishing-games__mobile-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-fishing-games__faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    color: #FFFF00;
    background-color: rgba(255, 255, 255, 0.08);
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

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

.page-fishing-games__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #f0f0f0;
    line-height: 1.6;
}

.page-fishing-games__faq-answer p {
    margin-bottom: 10px;
}

.page-fishing-games__faq-answer a {
    color: #017439;
    text-decoration: underline;
}

.page-fishing-games__faq-answer a:hover {
    color: #005a2d;
}

/* Details/Summary specific styles for native expand/collapse */
.page-fishing-games__faq-item[open] > .page-fishing-games__faq-question .page-fishing-games__faq-toggle {
    content: '−';
}

.page-fishing-games__faq-item summary::-webkit-details-marker, 
.page-fishing-games__faq-item summary::marker {
    display: none;
}

.page-fishing-games__faq-item summary {
    list-style: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__hero-title {
        font-size: 2.8em;
    }
    .page-fishing-games__hero-description {
        font-size: 1.1em;
    }
    .page-fishing-games__section-title {
        font-size: 2em;
    }
    .page-fishing-games__tips-list {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__mobile-flex {
        flex-direction: column;
        text-align: center;
    }
    .page-fishing-games__mobile-text {
        order: 2;
    }
    .page-fishing-games__mobile-image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }
    .page-fishing-games__mobile-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-fishing-games__content-container {
        padding: 30px 15px;
    }
    .page-fishing-games__hero-section {
        min-height: 600px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-fishing-games__hero-title {
        font-size: 2.2em;
    }
    .page-fishing-games__hero-description {
        font-size: 1em;
    }
    .page-fishing-games__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__btn-play,
    .page-fishing-games__btn-view-promo {
        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__section-title {
        font-size: 1.8em;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-list,
    .page-fishing-games__promo-cards {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__feature-card,
    .page-fishing-games__game-card,
    .page-fishing-games__promo-card {
        padding: 20px;
    }
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__hero-image-wrapper,
    .page-fishing-games__mobile-image-wrapper,
    .page-fishing-games__feature-icon,
    .page-fishing-games__game-thumbnail,
    .page-fishing-games__promo-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-fishing-games__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-answer {
        padding: 0 20px 15px;
    }
    .page-fishing-games__mobile-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-title {
        font-size: 1.8em;
    }
    .page-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games__hero-buttons {
        gap: 10px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
    }
}

/* Color Contrast Fixes (if needed, though primary/secondary colors are chosen to contrast with backgrounds) */
.page-fishing-games__dark-bg {
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff; /* Light text */
}

.page-fishing-games__light-bg {
    background-color: #f8f8f8; /* Light background */
    color: #333333; /* Dark text */
}

/* Ensure link colors contrast */
.page-fishing-games a {
    color: #017439;
}

.page-fishing-games a:hover {
    color: #005a2d;
}

.page-fishing-games__dark-bg a {
    color: #FFFF00;
}

.page-fishing-games__dark-bg a:hover {
    color: #fff;
}