.page-fishing-games {
    padding-top: 10px; /* Small top padding, body padding-top handled by shared.css */
    color: #333333; /* Default text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    background-color: #0a0909; /* Dark background */
    padding-bottom: 40px;
    text-align: center;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9; /* For 1920x1080 */
    object-fit: cover;
    object-position: center;
    filter: none; /* Ensure no color filter */
}

.page-fishing-games__hero-content {
    color: #FFFFFF;
    padding: 0 15px;
    max-width: 900px;
    margin: 0 auto;
}

.page-fishing-games__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* H1 clamp font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #26A9E0; /* Primary color */
}

.page-fishing-games__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-fishing-games__cta-button {
    display: inline-block;
    background-color: #EA7C07; /* Login color for CTA */
    color: #FFFFFF;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    min-width: 200px; /* Ensure button is not too small */
}

.page-fishing-games__cta-button:hover {
    background-color: #d66a06;
    transform: translateY(-2px);
}

.page-fishing-games__cta-button--secondary {
    background-color: #26A9E0; /* Primary color for secondary CTA */
}

.page-fishing-games__cta-button--secondary:hover {
    background-color: #1e87b7;
}

/* Sections General */
.page-fishing-games__about-section,
.page-fishing-games__features-section,
.page-fishing-games__guide-section,
.page-fishing-games__faq-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* White background */
}

.page-fishing-games__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: #26A9E0; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.page-fishing-games__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #EA7C07; /* Accent color */
    margin: 15px auto 0;
}

.page-fishing-games__text-content {
    font-size: 1rem;
    color: #333333;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
}

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

.page-fishing-games__feature-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.page-fishing-games__feature-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Constrain image width in card */
    margin: 0 auto 20px;
    border-radius: 8px;
    display: block; /* Ensure display block for max-width */
    object-fit: cover;
    aspect-ratio: 4 / 3; /* For 600x400 */
    filter: none; /* Ensure no color filter */
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-fishing-games__feature-title {
    font-size: 1.3rem;
    color: #26A9E0; /* Primary color */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-fishing-games__feature-description {
    font-size: 0.95rem;
    color: #555555;
}

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

/* Guide Section */
.page-fishing-games__guide-list {
    list-style: none;
    padding: 0;
    counter-reset: guide-step;
    max-width: 900px;
    margin: 0 auto;
}

.page-fishing-games__guide-item {
    background-color: #f0f8ff; /* Light blue background */
    border-left: 5px solid #26A9E0; /* Primary color accent */
    margin-bottom: 20px;
    padding: 20px 25px 20px 60px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__guide-item::before {
    counter-increment: guide-step;
    content: "Bước " counter(guide-step);
    position: absolute;
    left: 15px;
    top: 20px;
    background-color: #26A9E0; /* Primary color */
    color: #FFFFFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
}

.page-fishing-games__guide-step-title {
    font-size: 1.2rem;
    color: #26A9E0; /* Primary color */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games__guide-text {
    font-size: 1rem;
    color: #555555;
}

.page-fishing-games__guide-text a {
    color: #EA7C07; /* Login color for links */
    text-decoration: none;
    font-weight: bold;
}

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

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

.page-fishing-games__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.page-fishing-games__faq-question {
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333333;
    background-color: #f0f0f0;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    display: block; /* Make summary clickable area larger */
}

.page-fishing-games__faq-question:hover {
    background-color: #e0e0e0;
}

.page-fishing-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #26A9E0; /* Primary color */
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-fishing-games__faq-answer {
    padding: 15px 25px 25px;
    font-size: 1rem;
    color: #555555;
    border-top: 1px solid #eee;
}

.page-fishing-games__faq-answer a {
    color: #26A9E0; /* Primary color for links */
    text-decoration: none;
}

.page-fishing-games__faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-fishing-games__hero-content {
        padding-left: 10px;
        padding-right: 10px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    .page-fishing-games__description {
        font-size: 1rem;
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }
    .page-fishing-games__features-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__feature-image {
        max-width: 100%; /* Ensure images don't overflow */
    }
    .page-fishing-games__guide-item {
        padding: 20px 15px 20px 50px;
    }
    .page-fishing-games__guide-item::before {
        left: 10px;
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    .page-fishing-games__faq-question,
    .page-fishing-games__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-image,
    .page-fishing-games__feature-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px; /* Ensure images are not too small */
    }
    .page-fishing-games__text-content img,
    .page-fishing-games__guide-text img,
    .page-fishing-games__faq-answer img { /* Catch all content area images */
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px; /* Ensure images are not too small */
    }
    .page-fishing-games__hero-section,
    .page-fishing-games__about-section,
    .page-fishing-games__features-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__faq-section {
        padding: 40px 0;
    }
}

/* Ensure all content area images meet minimum size requirements */
.page-fishing-games img {
    min-width: 200px;
    min-height: 200px;
}