.page-fishing-games {
    font-family: Arial, sans-serif;
    color: #FFFFFF;
    background-color: #100224; /* Adjusted to a deep purple-black for WOW88 style */
}

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

.page-fishing-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #26A9E0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 10;
    padding: 40px 20px;
    max-width: 900px;
    color: #FFFFFF;
    background: linear-gradient(180deg, rgba(38, 169, 224, 0.8) 0%, rgba(16, 2, 36, 0.9) 100%);
    border-radius: 10px;
    margin-top: -80px; /* Pull content up slightly over image for a layered effect without overlapping text on image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.page-fishing-games__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #ff9500 0%, #ff5e3a 100%); /* Orange-red gradient CTA */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 94, 58, 0.4);
}

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

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0; /* Primary color for section titles */
    position: relative;
    padding-bottom: 10px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff9500 0%, #ff5e3a 100%);
    border-radius: 2px;
}

.page-fishing-games__introduction-section,
.page-fishing-games__features-section,
.page-fishing-games__game-showcase,
.page-fishing-games__how-to-play-section,
.page-fishing-games__faq-section {
    padding: 60px 0;
}

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

.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: #1a083f; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-10px);
    background-color: #260f54;
}

.page-fishing-games__feature-icon {
    width: 100%; /* Ensure image fills card */
    max-width: 200px; /* Max width for icon-like images, but still large */
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    object-fit: cover;
}

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

.page-fishing-games__feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #CCCCCC;
}

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

.page-fishing-games__game-card {
    background-color: #1a083f;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-fishing-games__game-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 20px 15px 10px 15px;
    color: #FFFFFF;
}

.page-fishing-games__game-description {
    font-size: 0.95rem;
    color: #CCCCCC;
    padding: 0 15px 20px 15px;
    line-height: 1.5;
}

.page-fishing-games__game-button {
    display: inline-block;
    background-color: #83a1f2; /* Blue pill button style */
    color: #FFFFFF;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-fishing-games__game-button:hover {
    background-color: #688cec;
}

.page-fishing-games__view-all-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-fishing-games__view-all-button {
    display: inline-block;
    background: linear-gradient(90deg, #ff9500 0%, #ff5e3a 100%);
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 94, 58, 0.3);
}

.page-fishing-games__view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 94, 58, 0.5);
}

.page-fishing-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__step-item {
    background-color: #1a083f;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.page-fishing-games__step-number {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: linear-gradient(90deg, #ff9500 0%, #ff5e3a 100%);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 94, 58, 0.4);
    border: 3px solid #1a083f;
}

.page-fishing-games__step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-fishing-games__step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #CCCCCC;
}

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

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

.page-fishing-games__faq-list {
    margin-top: 40px;
}

.page-fishing-games__faq-item {
    background-color: #1a083f;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    padding: 20px 25px;
    color: #FFFFFF;
    cursor: pointer;
    position: relative;
    background-color: #26A9E0; /* Primary color for FAQ questions */
    transition: background-color 0.3s ease;
}

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

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

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

.page-fishing-games__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #CCCCCC;
    background-color: #1a083f;
}

.page-fishing-games__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

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

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        margin-top: -60px;
        padding: 30px 20px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 4.5vw, 2.8rem);
    }
    .page-fishing-games__description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-content {
        margin-top: -40px;
        padding: 25px 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    .page-fishing-games__description {
        font-size: 0.95rem;
    }
    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-grid,
    .page-fishing-games__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__game-image {
        height: 200px;
    }
    .page-fishing-games__faq-question,
    .page-fishing-games__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__faq-question::after {
        right: 15px;
    }
    /* Ensure all content area images are responsive */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }
    .page-fishing-games__feature-icon {
        max-width: 150px;
    }
    .page-fishing-games__game-image {
        width: 100%;
        height: auto; /* Allow height to adjust */
        min-height: 200px; /* Enforce minimum height */
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-content {
        margin-top: -20px;
        padding: 20px 10px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    .page-fishing-games__cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.4rem, 5.5vw, 2rem);
    }
    .page-fishing-games__feature-item,
    .page-fishing-games__game-card,
    .page-fishing-games__step-item,
    .page-fishing-games__faq-item {
        padding: 20px;
    }
    .page-fishing-games__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    .page-fishing-games__step-item {
        padding-top: 50px;
    }
    .page-fishing-games__game-title {
        font-size: 1.2rem;
    }
    .page-fishing-games__faq-question {
        font-size: 1rem;
    }
}