/* style/fishing-games.css */
:root {
    --primary-color: #007bff;
    --secondary-color: #28a745;
    --dark-bg-1: #0d0d0d;
    --light-text: #ffffff;
    --dark-text: #333333;
    --grey-light: #f1f3f5;
    --grey-medium: #e0e0e0;
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--dark-text); /* Default text color for light backgrounds */
    background-color: var(--grey-light);
}

/* Fixed Navbar Padding */
.page-fishing-games__hero-subpage-section {
    padding-top: 180px; /* Desktop: Adjust based on fixed header height */
}

.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-fishing-games__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 40px;
}

.page-fishing-games__section-description {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-fishing-games__inline-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__inline-link:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.page-fishing-games__highlight {
    font-weight: bold;
    color: var(--primary-color);
}

/* Hero Subpage Section */
.page-fishing-games__hero-subpage-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: var(--light-text);
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-fishing-games__hero-subpage-container {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.page-fishing-games__hero-subpage-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--light-text);
}

.page-fishing-games__hero-subpage-description {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--secondary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-fishing-games__cta-button:hover {
    background: #218838; /* Darker secondary color */
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-fishing-games__introduction-section {
    padding: 80px 0;
    background-color: var(--light-text);
}

.page-fishing-games__grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-fishing-games__text-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.page-fishing-games__image-wrapper {
    text-align: center;
}

.page-fishing-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.page-fishing-games__features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0056b3, var(--primary-color));
    color: var(--light-text);
}

.page-fishing-games__features-section .page-fishing-games__section-title {
    color: var(--light-text);
}

.page-fishing-games__grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-fishing-games__card {
    background: var(--light-text);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--dark-text);
}

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

.page-fishing-games__card-icon {
    width: 120px; /* Enlarge icon size */
    height: auto;
    margin-bottom: 20px;
    filter: none; /* Ensure no color filters */
}

.page-fishing-games__card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-fishing-games__card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
}

/* Benefits Section */
.page-fishing-games__benefits-section {
    padding: 80px 0;
    background-color: var(--grey-light);
}

.page-fishing-games__grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page-fishing-games__benefit-item {
    background: var(--light-text);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-fishing-games__benefit-icon {
    width: 100px; /* Enlarge icon size */
    height: auto;
    margin-bottom: 20px;
    filter: none; /* Ensure no color filters */
}

.page-fishing-games__benefit-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-fishing-games__benefit-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
}

/* Tips Section */
.page-fishing-games__tips-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0056b3, var(--primary-color));
    color: var(--light-text);
}

.page-fishing-games__tips-section .page-fishing-games__section-title {
    color: var(--light-text);
}

.page-fishing-games__tips-section .page-fishing-games__text-content p {
    color: rgba(255, 255, 255, 0.9);
}

.page-fishing-games__styled-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-fishing-games__styled-list li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-fishing-games__styled-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
}

.page-fishing-games__tips-section .page-fishing-games__image {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 80px 0;
    background-color: var(--light-text);
}

.page-fishing-games__promo-card {
    background: var(--grey-light);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-5px);
}

.page-fishing-games__promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: none; /* Ensure no color filters */
}

.page-fishing-games__promo-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-fishing-games__promo-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.page-fishing-games__promo-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
}

.page-fishing-games__promo-button:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: var(--grey-light);
}

.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-fishing-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    color: var(--dark-text);
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

.page-fishing-games__faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--grey-medium);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-fishing-games__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-fishing-games__faq-question:active {
    background: #eeeeee;
}

.page-fishing-games__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--dark-text);
}

.page-fishing-games__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg); /* Rotate for 'x' effect */
}

/* CTA Section */
.page-fishing-games__cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: var(--light-text);
    text-align: center;
}

.page-fishing-games__cta-section .page-fishing-games__section-title {
    color: var(--light-text);
}

.page-fishing-games__cta-section .page-fishing-games__section-description {
    color: rgba(255, 255, 255, 0.9);
}

.page-fishing-games__cta-button--large {
    padding: 20px 50px;
    font-size: 22px;
    border-radius: 50px;
    background: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__cta-button--large:hover {
    background: #218838;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games__grid-2-cols {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__grid-2-cols .page-fishing-games__image-wrapper {
        order: -1; /* Image first on smaller screens */
        margin-bottom: 30px;
    }
    .page-fishing-games__grid-3-cols, .page-fishing-games__grid-benefits {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-fishing-games__hero-subpage-title {
        font-size: 40px;
    }
    .page-fishing-games__hero-subpage-description {
        font-size: 18px;
    }
    .page-fishing-games__cta-button {
        padding: 15px 30px;
        font-size: 18px;
    }
    .page-fishing-games__section-title {
        font-size: 32px;
    }
    .page-fishing-games__card-title {
        font-size: 22px;
    }
    .page-fishing-games__benefit-title {
        font-size: 20px;
    }
    .page-fishing-games__promo-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-subpage-section {
        padding-top: 160px !important; /* Mobile: Adjust based on fixed header height */
        padding-bottom: 60px;
    }
    .page-fishing-games__container {
        padding: 0 15px;
    }
    .page-fishing-games__hero-subpage-title {
        font-size: 32px;
    }
    .page-fishing-games__hero-subpage-description {
        font-size: 16px;
    }
    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    .page-fishing-games__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-fishing-games__section-description {
        font-size: 16px;
    }
    .page-fishing-games__introduction-section,
    .page-fishing-games__features-section,
    .page-fishing-games__benefits-section,
    .page-fishing-games__tips-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-section {
        padding: 60px 0;
    }
    .page-fishing-games__card, .page-fishing-games__benefit-item, .page-fishing-games__promo-card {
        padding: 20px;
    }
    .page-fishing-games__card-icon, .page-fishing-games__benefit-icon {
        width: 80px; /* Adjust icon size for mobile */
    }
    .page-fishing-games__card-title {
        font-size: 20px;
    }
    .page-fishing-games__benefit-title {
        font-size: 18px;
    }
    .page-fishing-games__promo-title {
        font-size: 18px;
    }
    .page-fishing-games__text-content p, .page-fishing-games__card p, .page-fishing-games__benefit-item p, .page-fishing-games__promo-card p {
        font-size: 15px;
    }
    .page-fishing-games__styled-list li {
        font-size: 15px;
        padding-left: 25px;
    }
    .page-fishing-games__styled-list li::before {
        font-size: 16px;
    }
    .page-fishing-games__cta-button--large {
        padding: 15px 35px;
        font-size: 18px;
    }
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-fishing-games__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-fishing-games__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-fishing-games__faq-answer {
        padding: 0 15px;
    }
    .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
        padding: 15px !important;
    }
}