:root {
    --primary-color: #0A2463;
    --secondary-color: #FFD700;
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --background-dark: #000;
    --background-light: #f9f9f9;
    --border-color: #e0e0e0;
}

.page-fishing-games {
    color: var(--text-color-light); /* Default text color for the page, adapted for dark body background */
    background-color: var(--background-dark); /* Inherited from shared.css, explicitly set for context */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

/* --- Hero Section --- */
.page-fishing-games__hero-section {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    background-image: url('[GALLERY:hero_bg:1920x1080:b52 club,fishing games,underwater,abstract,dynamic]');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.page-fishing-games__main-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: var(--text-color-light);
}

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

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-fishing-games__btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.page-fishing-games__btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
    background: var(--primary-color);
    color: var(--text-color-light);
    border: 2px solid var(--secondary-color);
}

.page-fishing-games__btn-secondary:hover {
    background: #061a47;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* --- General Section Styles --- */
.page-fishing-games__section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-fishing-games__dark-bg .page-fishing-games__section-title {
    color: var(--secondary-color);
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
    color: var(--primary-color);
}

.page-fishing-games__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.page-fishing-games__light-bg {
    background-color: var(--background-light);
    color: var(--text-color-dark);
}

/* --- Introduction Section --- */
.page-fishing-games__introduction-section {
    padding: 60px 0;
}

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

.page-fishing-games__content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.page-fishing-games__content-wrapper p {
    flex: 1;
}

.page-fishing-games__image {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
}

.page-fishing-games__image--left {
    margin-right: 20px;
}

.page-fishing-games__image--right {
    margin-left: 20px;
}

/* --- Features Section --- */
.page-fishing-games__features-section {
    padding: 60px 0;
}

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

.page-fishing-games__feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
    color: var(--text-color-light);
}

.page-fishing-games__feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__feature-icon {
    width: 100%;
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(1.1) saturate(1.2); /* Allowed for minor enhancement, not color change */
    border-radius: 5px;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
    object-fit: cover;
}

.page-fishing-games__feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-fishing-games__feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color-light);
}

/* --- Strategy Guide Section --- */
.page-fishing-games__strategy-guide {
    padding: 60px 0;
}

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

.page-fishing-games__strategy-list {
    list-style: none;
    padding: 0;
    flex: 1;
}

.page-fishing-games__strategy-list li {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__strategy-item-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* --- Promotions Section --- */
.page-fishing-games__promotions-section {
    padding: 60px 0;
}

.page-fishing-games__promotions-description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.page-fishing-games__promotion-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--text-color-light);
    transition: transform 0.3s ease, background 0.3s ease;
}

.page-fishing-games__promotion-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__promotion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
}

.page-fishing-games__promotion-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-fishing-games__promotion-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-color-light);
}

/* --- FAQ Section --- */
.page-fishing-games__faq-section {
    padding: 60px 0;
}

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

.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    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;
    color: var(--primary-color);
    pointer-events: none;
}

.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);
}

.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, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    color: var(--text-color-dark);
}

.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;
}

/* --- Brand Section --- */
.page-fishing-games__brand-section {
    padding: 60px 0;
}

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

.page-fishing-games__brand-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--text-color-light);
    transition: background 0.3s ease;
}

.page-fishing-games__brand-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__brand-item-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

/* --- Blog Section --- */
.page-fishing-games__blog-section {
    padding: 60px 0;
}

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

.page-fishing-games__blog-item {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__blog-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.page-fishing-games__blog-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
}

.page-fishing-games__blog-item-title {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 20px 10px;
    color: var(--primary-color);
    line-height: 1.4;
}

.page-fishing-games__blog-item-excerpt {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 20px 15px;
    color: #666;
}

.page-fishing-games__blog-item-date {
    display: block;
    font-size: 13px;
    color: #999;
    margin: 0 20px 20px;
}

/* --- Call to Action Section --- */
.page-fishing-games__call-to-action {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    background-image: url('[GALLERY:cta_bg:1920x1080:b52 club,fishing games,call to action,dynamic,abstract]');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.page-fishing-games__cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: var(--text-color-light);
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: 42px;
    }

    .page-fishing-games__section-title {
        font-size: 32px;
    }

    .page-fishing-games__hero-description,
    .page-fishing-games__cta-text {
        font-size: 18px;
    }

    .page-fishing-games__cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games {
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-fishing-games__container {
        padding: 30px 15px;
    }

    .page-fishing-games__hero-section {
        padding: 60px 15px;
    }

    .page-fishing-games__main-title {
        font-size: 32px;
    }

    .page-fishing-games__hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .page-fishing-games__introduction-section,
    .page-fishing-games__features-section,
    .page-fishing-games__strategy-guide,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__brand-section,
    .page-fishing-games__blog-section,
    .page-fishing-games__call-to-action {
        padding: 40px 0;
    }

    .page-fishing-games__content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .page-fishing-games__image,
    .page-fishing-games__blog-thumbnail,
    .page-fishing-games__promotion-image,
    .page-fishing-games__feature-icon {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__image--left,
    .page-fishing-games__image--right {
        margin: 0;
    }

    .page-fishing-games__features-grid,
    .page-fishing-games__promotions-grid,
    .page-fishing-games__blog-list,
    .page-fishing-games__brand-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__feature-card,
    .page-fishing-games__promotion-card,
    .page-fishing-games__brand-item,
    .page-fishing-games__blog-item {
        padding: 20px;
    }

    .page-fishing-games__feature-title,
    .page-fishing-games__promotion-title,
    .page-fishing-games__brand-item-title,
    .page-fishing-games__blog-item-title {
        font-size: 20px;
    }

    .page-fishing-games__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }

    .page-fishing-games__faq-question h3 {
        font-size: 15px;
        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;
    }

    .page-fishing-games__promotions-description,
    .page-fishing-games__cta-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: 28px;
    }

    .page-fishing-games__section-title {
        font-size: 24px;
    }

    .page-fishing-games__hero-section {
        padding: 50px 15px;
    }

    .page-fishing-games__cta-button {
        font-size: 15px !important;
    }
}