.page-fishing-games {
    padding-top: 10px; /* Small top padding for the first section */
    max-width: 1390px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
    color: var(--text-main);
    font-family: Arial, sans-serif;
}

.page-fishing-games__hero-section {
    background-color: var(--deep-navy);
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-fishing-games__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-fishing-games__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-fishing-games__description {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-button {
    display: inline-block;
    background: var(--button);
    color: var(--text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.page-fishing-games__introduction-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__tips-section,
.page-fishing-games__faq-section {
    padding: 40px 20px;
    margin-bottom: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: var(--gold);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.page-fishing-games__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--glow);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-fishing-games__text-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-fishing-games__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    aspect-ratio: 4/3; /* Default aspect ratio for content images */
    object-fit: cover;
}

.page-fishing-games__feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-fishing-games__feature-item {
    background-color: var(--deep-navy);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--divider);
    transition: transform 0.3s ease;
}

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

.page-fishing-games__feature-title {
    font-size: 1.3rem;
    color: var(--glow);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__feature-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.page-fishing-games__game-card {
    background-color: var(--deep-navy);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
}

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

.page-fishing-games__game-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2; /* For 600x400 */
    object-fit: cover;
    display: block;
}

.page-fishing-games__game-card-title {
    font-size: 1.4rem;
    color: var(--gold);
    margin: 15px 10px 5px;
    font-weight: bold;
}

.page-fishing-games__game-card-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0 15px 15px;
    line-height: 1.5;
}

.page-fishing-games__game-card-button {
    display: inline-block;
    background: var(--button);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: background 0.3s ease;
    border: 1px solid var(--border);
}

.page-fishing-games__game-card-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.page-fishing-games__step-list {
    list-style: none;
    padding: 0;
}

.page-fishing-games__step-item {
    background-color: var(--deep-navy);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 5px solid var(--glow);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__step-title {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: bold;
}

.page-fishing-games__step-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-fishing-games__tip-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-fishing-games__tip-item {
    background-color: var(--deep-navy);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--border);
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__tip-item strong {
    color: var(--glow);
}

.page-fishing-games__faq-item {
    background-color: var(--deep-navy);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid var(--divider);
}

.page-fishing-games__faq-question {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__faq-answer {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-fishing-games__faq-answer a {
    color: var(--glow);
    text-decoration: none;
}

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

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-fishing-games {
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-fishing-games__main-title {
        font-size: clamp(1.5rem, 4.5vw, 2.2rem);
    }

    .page-fishing-games__description {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    }

    .page-fishing-games__feature-list,
    .page-fishing-games__game-cards-grid {
        grid-template-columns: 1fr;
    }

    .page-fishing-games__image-content {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px;
    }
}

@media (max-width: 549px) {
    .page-fishing-games__hero-section {
        padding: 30px 10px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.3rem, 4.5vw, 1.8rem);
    }

    .page-fishing-games__description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    }

    .page-fishing-games__text-content,
    .page-fishing-games__feature-description,
    .page-fishing-games__game-card-description,
    .page-fishing-games__step-description,
    .page-fishing-games__tip-item,
    .page-fishing-games__faq-answer {
        text-align: left; /* Adjust justify for smaller screens */
    }

    .page-fishing-games__image-content {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    .page-fishing-games__game-card-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Ensure all content images in .page-fishing-games are at least 200px */
.page-fishing-games img {
    min-width: 200px;
    min-height: 200px;
    box-sizing: border-box;
}

/* Mobile specific for images to prevent overflow */
@media (max-width: 768px) {
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }
}