.page-fishing-games {
    background-color: #140C0C;
    color: #FFF1E8;
    font-family: Arial, sans-serif;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small padding to avoid double header offset */
    padding-bottom: 60px;
    background-color: #140C0C;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

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

.page-fishing-games__hero-content {
    padding: 20px 20px 0;
    max-width: 900px;
    z-index: 1;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #FFF1E8;
    margin-bottom: 20px;
}

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

.page-fishing-games__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    color: #FFF1E8;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
    text-align: center;
}

.page-fishing-games__cta-button:hover {
    background: linear-gradient(180deg, #FFC57A 0%, #E87A24 100%);
}

.page-fishing-games__cta-button--secondary {
    background: #6A1E1E;
}

.page-fishing-games__cta-button--secondary:hover {
    background: #7E0D0D;
}

/* General Section Styling */
.page-fishing-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #FFF1E8;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-fishing-games__about-section,
.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__download-app-section,
.page-fishing-games__latest-news-section {
    padding: 60px 0;
}

/* About Section */
.page-fishing-games__about-section {
    background-color: #140C0C;
}

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

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

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

.page-fishing-games__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__learn-more-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    background-color: #C61F1F;
    color: #FFF1E8;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-fishing-games__learn-more-button:hover {
    background-color: #E53030;
}

/* Features Section */
.page-fishing-games__features-section {
    background-color: #2A1212;
}

.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: #140C0C;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #6A1E1E;
}

.page-fishing-games__feature-icon {
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__feature-title {
    font-size: 1.4rem;
    color: #F3C54D;
    margin-bottom: 15px;
}

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

/* How to Play Section */
.page-fishing-games__how-to-play-section {
    background-color: #140C0C;
}

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

.page-fishing-games__step-card {
    background-color: #2A1212;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #6A1E1E;
}

.page-fishing-games__step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-fishing-games__step-title {
    font-size: 1.3rem;
    color: #FFF1E8;
    margin-bottom: 15px;
}

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

.page-fishing-games__step-description a {
    color: #F3C54D;
    text-decoration: none;
}

.page-fishing-games__step-description a:hover {
    text-decoration: underline;
}

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

/* Download App Section */
.page-fishing-games__download-app-section {
    background-color: #2A1212;
}

.page-fishing-games__download-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.page-fishing-games__download-text,
.page-fishing-games__download-image {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__download-text h2 {
    text-align: left;
}

.page-fishing-games__download-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #FFF1E8;
}

.page-fishing-games__download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Latest News Section (Blog) */
.page-fishing-games__latest-news-section {
    background-color: #140C0C;
}

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

.page-fishing-games__news-card {
    background-color: #2A1212;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #6A1E1E;
}

.page-fishing-games__news-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__news-content {
    padding: 20px;
}

.page-fishing-games__news-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.page-fishing-games__news-title a {
    color: #F3C54D;
    text-decoration: none;
}

.page-fishing-games__news-title a:hover {
    text-decoration: underline;
}

.page-fishing-games__news-date {
    font-size: 0.9rem;
    color: #C61F1F;
    margin-bottom: 15px;
    display: block;
}

.page-fishing-games__news-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF1E8;
    margin-bottom: 20px;
}

.page-fishing-games__read-more {
    display: inline-block;
    color: #FFB04A;
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__read-more:hover {
    text-decoration: underline;
}

.keyword {
    color: #F3C54D;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-fishing-games__hero-content {
        padding: 15px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .page-fishing-games__description {
        font-size: 1rem;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-fishing-games__cta-button {
        width: 100%;
        min-width: unset;
    }

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

    .page-fishing-games__content-wrapper,
    .page-fishing-games__download-content {
        flex-direction: column;
        text-align: center;
    }

    .page-fishing-games__download-text h2 {
        text-align: center;
    }

    .page-fishing-games__download-buttons {
        justify-content: center;
    }

    .page-fishing-games__image,
    .page-fishing-games__feature-icon,
    .page-fishing-games__news-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    
    /* Ensure all images within .page-fishing-games are responsive and don't overflow */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
        /* min-width and min-height are already applied to specific image classes above */
    }
}

@media (max-width: 480px) {
    .page-fishing-games__container {
        padding: 15px;
    }

    .page-fishing-games__hero-section,
    .page-fishing-games__about-section,
    .page-fishing-games__features-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__download-app-section,
    .page-fishing-games__latest-news-section {
        padding: 40px 0;
    }

    .page-fishing-games__feature-card,
    .page-fishing-games__step-card,
    .page-fishing-games__news-card {
        padding: 20px;
    }
}