.page-fishing-games {
    background-color: #0A0A0A;
    color: #FFF6D6;
    padding: 10px 0;
    font-family: Arial, sans-serif;
}

.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 15px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9; /* For hero images */
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__hero-content {
    max-width: 800px;
}

.page-fishing-games__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjusted for better H1 size */
    font-weight: bold;
    color: #F2C14E;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.page-fishing-games__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF6D6;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

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

.page-fishing-games__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #F2C14E;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    position: relative;
    padding-bottom: 10px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD36B;
    border-radius: 2px;
}

.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__tips-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__faq-section {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 15px;
}

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

.page-fishing-games__feature-item,
.page-fishing-games__step-item,
.page-fishing-games__game-card {
    background-color: #111111;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid #3A2A12;
    color: #FFF6D6;
    text-decoration: none;
}

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

.page-fishing-games__feature-item img,
.page-fishing-games__game-card img {
    width: 100%;
    height: auto;
    max-width: 400px; /* Constrain size for feature images */
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block; /* Ensures max-width works correctly */
    margin-left: auto;
    margin-right: auto;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__feature-title,
.page-fishing-games__step-title,
.page-fishing-games__game-title {
    font-size: 1.4rem;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-fishing-games__feature-description,
.page-fishing-games__step-description,
.page-fishing-games__game-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #FFF6D6;
}

.page-fishing-games__step-item {
    position: relative;
    padding-top: 50px;
}

.page-fishing-games__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #FFD36B;
    color: #111111;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(255, 211, 107, 0.5);
}

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

.page-fishing-games__tip-item {
    background-color: #111111;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #F2C14E;
    border-radius: 8px;
    line-height: 1.6;
    font-size: 1.05rem;
    color: #FFF6D6;
}

.page-fishing-games__tip-item strong {
    color: #FFD36B;
}

.page-fishing-games__tip-item a {
    color: #FFD36B;
    text-decoration: none;
}

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

.page-fishing-games__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-fishing-games__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    overflow: hidden;
}

.page-fishing-games__faq-question {
    padding: 18px 25px;
    font-size: 1.2rem;
    color: #F2C14E;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    position: relative;
}

.page-fishing-games__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #FFD36B;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-question.active::after {
    content: '-';
    transform: rotate(0deg);
}

.page-fishing-games__faq-answer {
    padding: 0 25px 18px 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF6D6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-fishing-games__faq-answer p {
    margin: 0;
}

.page-fishing-games__faq-answer a {
    color: #FFD36B;
    text-decoration: none;
}

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

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-fishing-games__hero-section {
        padding: 10px 10px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    .page-fishing-games__description {
        font-size: 1rem;
    }
    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .page-fishing-games__feature-item,
    .page-fishing-games__step-item,
    .page-fishing-games__game-card {
        padding: 20px;
    }
    .page-fishing-games__feature-title,
    .page-fishing-games__step-title,
    .page-fishing-games__game-title {
        font-size: 1.2rem;
    }
    .page-fishing-games__tip-item,
    .page-fishing-games__faq-question,
    .page-fishing-games__faq-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-image,
    .page-fishing-games__feature-item img,
    .page-fishing-games__game-card img {
        max-width: 100%;
        height: auto;
    }
    .page-fishing-games__features-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__tips-section,
    .page-fishing-games__popular-games-section,
    .page-fishing-games__faq-section {
        padding: 0 10px;
        margin-bottom: 40px;
    }
}

@media (max-width: 549px) {
    .page-fishing-games__main-title {
        font-size: clamp(1.2rem, 7vw, 2.2rem);
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.1rem, 6vw, 1.8rem);
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .page-fishing-games__feature-item img,
    .page-fishing-games__game-card img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    .page-fishing-games__faq-answer {
        padding: 0 20px 15px 20px;
    }
}

/* Ensure content images are not smaller than 200px */
.page-fishing-games img:not(.page-fishing-games__hero-image) {
    min-width: 200px;
    min-height: 200px;
}