.page-fishing-games {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #F5F7FA; /* Overall background */
    color: #333333; /* Main text color */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #2d0000; /* Deep red/wine red background for hero */
    color: #FFFFFF;
    text-align: center;
    padding-bottom: 40px;
}

.page-fishing-games__hero-banner {
    width: 100%;
    margin: 0;
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and content */
}

.page-fishing-games__hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5; /* 1920x600 ratio */
    object-fit: cover;
    object-position: center;
}

.page-fishing-games__main-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem); /* Adjusted for H1 on subpage hero */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Buttons */
.page-fishing-games__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.page-fishing-games__button--primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #FFFFFF;
}

.page-fishing-games__button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__button--secondary:hover {
    background-color: #FF5A4F;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__button--large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Section Titles */
.page-fishing-games__section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-top: 60px; /* Space from previous section */
    color: #333333;
}

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

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

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

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

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

.page-fishing-games__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #E53935; /* Primary color for card titles */
    margin-bottom: 15px;
}

.page-fishing-games__card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
}

/* Gameplay Section */
.page-fishing-games__gameplay-section {
    padding-bottom: 60px;
}

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

.page-fishing-games__text-content {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__text-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333333;
}

.page-fishing-games__image-wrapper {
    flex: 1;
    min-width: 300px;
    margin: 0; /* Override default figure margin */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: none; /* No filter */
}

.page-fishing-games__image-caption {
    background-color: #2d0000;
    color: #FFFFFF;
    padding: 10px 15px;
    font-size: 0.9rem;
    text-align: center;
}

/* Tips Section */
.page-fishing-games__tips-section {
    padding-bottom: 60px;
}

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

.page-fishing-games__tip-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.page-fishing-games__tip-card .page-fishing-games__card-title {
    color: #E53935;
}

/* CTA Section */
.page-fishing-games__cta-section {
    background: linear-gradient(135deg, #E53935 0%, #FF5A4F 100%);
    padding: 60px 15px;
    text-align: center;
    color: #FFFFFF;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-fishing-games__cta-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-fishing-games__hero-section {
        padding-top: 10px;
        padding-bottom: 30px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem); /* Adjust H1 for smaller screens */
    }
    .page-fishing-games__hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    .page-fishing-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__button {
        width: 80%; /* Make buttons wider on mobile */
        max-width: 300px;
    }
    .page-fishing-games__gameplay-section .page-fishing-games__content-wrapper {
        flex-direction: column;
    }
    .page-fishing-games__text-content,
    .page-fishing-games__image-wrapper {
        min-width: unset;
        width: 100%;
    }
    .page-fishing-games__section-title {
        padding-top: 40px;
        margin-bottom: 30px;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__tips-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    .page-fishing-games__cta-section {
        margin: 30px 15px;
        padding: 40px 15px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-banner img,
    .page-fishing-games__image-wrapper img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content area images are responsive */
    .page-fishing-games__content-area img {
        max-width: 100%;
        height: auto;
    }
}

/* Specific rule to prevent images from being too small in content area */
.page-fishing-games__content-area img,
.page-fishing-games__gameplay-section img,
.page-fishing-games__image-wrapper img {
    min-width: 200px;
    min-height: 200px;
    width: auto; /* Allow width to be determined by max-width */
    height: auto; /* Maintain aspect ratio */
}