.page-fishing-games-guide {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for first section */
}

.page-fishing-games-guide__hero-section {
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    text-align: center;
    padding: 20px 0 40px;
    background: linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
    border-bottom: 2px solid #3A2A12;
}

.page-fishing-games-guide__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

.page-fishing-games-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 211, 107, 0.3);
}

.page-fishing-games-guide__hero-content {
    max-width: 900px;
    padding: 0 15px;
}

.page-fishing-games-guide__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* Use clamp for H1 */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #F2C14E 0%, #FFD36B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.5);
}

.page-fishing-games-guide__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-guide__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Darker text for contrast on button */
    text-decoration: none;
    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-guide__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

.page-fishing-games-guide__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 50px;
    background: linear-gradient(90deg, #F2C14E 0%, #FFD36B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(255, 211, 107, 0.3);
}

.page-fishing-games-guide__introduction-section,
.page-fishing-games-guide__how-to-play-section,
.page-fishing-games-guide__strategies-section,
.page-fishing-games-guide__popular-games-section,
.page-fishing-games-guide__promotions-section,
.page-fishing-games-guide__faq-section,
.page-fishing-games-guide__cta-final-section {
    padding: 20px 15px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-fishing-games-guide__content-wrapper {
    background-color: #111111;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    border: 1px solid #3A2A12;
}

.page-fishing-games-guide__content-wrapper p,
.page-fishing-games-guide__content-wrapper li {
    font-size: 1rem;
    margin-bottom: 15px;
}

.page-fishing-games-guide__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    min-width: 200px; /* Ensure content images are not too small */
    min-height: 200px; /* Ensure content images are not too small */
    object-fit: cover;
}

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

.page-fishing-games-guide__guide-item {
    background-color: #0A0A0A;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.page-fishing-games-guide__guide-subtitle {
    font-size: 1.3rem;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games-guide__secondary-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    background-color: #3A2A12;
    color: #F2C14E;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #F2C14E;
}

.page-fishing-games-guide__secondary-button:hover {
    background-color: #F2C14E;
    color: #111111;
}

.page-fishing-games-guide__strategies-section .page-fishing-games-guide__content-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0; /* Remove padding from wrapper, cards have their own */
    background-color: transparent; /* Wrapper for grid should be transparent */
    box-shadow: none;
    border: none;
}

.page-fishing-games-guide__strategy-card {
    background-color: #111111;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease;
}

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

.page-fishing-games-guide__strategy-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games-guide__card-title {
    font-size: 1.25rem;
    color: #FFD36B;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games-guide__card-link {
    color: #FFD36B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games-guide__card-link:hover {
    color: #F2C14E;
    text-decoration: underline;
}

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

.page-fishing-games-guide__game-card {
    background-color: #111111;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease;
}

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

.page-fishing-games-guide__game-image {
    width: 100%;
    height: 200px; /* Fixed height for game images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

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

.page-fishing-games-guide__play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(255, 211, 107, 0.5);
}

.page-fishing-games-guide__promotion-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-fishing-games-guide__promotion-item {
    background-color: #0A0A0A;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #FFF6D6;
    display: flex;
    align-items: center;
}

.page-fishing-games-guide__promotion-item::before {
    content: "🌟";
    margin-right: 10px;
    font-size: 1.2rem;
}

.page-fishing-games-guide__faq-list {
    margin-top: 30px;
}

.page-fishing-games-guide__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-fishing-games-guide__faq-question {
    font-size: 1.2rem;
    color: #F2C14E;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    padding-right: 30px;
}

.page-fishing-games-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-fishing-games-guide__faq-question.active::after {
    transform: rotate(45deg);
}

.page-fishing-games-guide__faq-answer {
    font-size: 1rem;
    color: #FFF6D6;
    display: none; /* Hidden by default, JS will toggle */
    padding-top: 10px;
    border-top: 1px solid #3A2A12;
    margin-top: 10px;
}

.page-fishing-games-guide__cta-final-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-fishing-games-guide__cta-final-section .page-fishing-games-guide__description {
    margin-bottom: 40px;
}

.page-fishing-games-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-fishing-games-guide__cta-button--primary {
    /* Uses main CTA button style */
}

.page-fishing-games-guide__cta-button--secondary {
    background: #3A2A12; /* Darker background for secondary CTA */
    color: #FFD36B;
    border: 1px solid #FFD36B;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-guide__cta-button--secondary:hover {
    background-color: #FFD36B;
    color: #111111;
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-fishing-games-guide__hero-image-wrapper {
        margin-bottom: 15px;
    }

    .page-fishing-games-guide__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-fishing-games-guide__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

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

    .page-fishing-games-guide__section-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
        padding-top: 30px;
        margin-bottom: 30px;
    }

    .page-fishing-games-guide__content-wrapper {
        padding: 20px;
        margin-bottom: 30px;
    }

    .page-fishing-games-guide__guide-item,
    .page-fishing-games-guide__strategy-card,
    .page-fishing-games-guide__game-card,
    .page-fishing-games-guide__promotion-item,
    .page-fishing-games-guide__faq-item {
        padding: 15px;
        margin-bottom: 10px;
    }

    .page-fishing-games-guide__guide-subtitle,
    .page-fishing-games-guide__card-title,
    .page-fishing-games-guide__faq-question {
        font-size: 1.1rem;
    }

    .page-fishing-games-guide__strategy-image,
    .page-fishing-games-guide__game-image {
        height: 180px; /* Adjust height for smaller screens */
    }

    .page-fishing-games-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Important: Mobile content image overflow prevention */
    .page-fishing-games-guide img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-guide__hero-section {
        padding: 15px 0 30px;
    }

    .page-fishing-games-guide__main-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .page-fishing-games-guide__description {
        font-size: 0.95rem;
    }

    .page-fishing-games-guide__cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .page-fishing-games-guide__section-title {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
        padding-top: 25px;
        margin-bottom: 25px;
    }

    .page-fishing-games-guide__content-wrapper {
        padding: 15px;
        margin-bottom: 25px;
    }

    .page-fishing-games-guide__strategy-image,
    .page-fishing-games-guide__game-image {
        height: 150px; /* Further adjust height for very small screens */
    }
}