:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-bg-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg-color: #FFFFFF;
    --page-bg-color: #F4F7FB;
    --text-main-color: #1F2D3D;
    --custom-color-1776249996415: #000000;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
}

.page-fishing-games {
    background-color: var(--page-bg-color); /* #F4F7FB */
    color: var(--text-main-color); /* #1F2D3D */
    font-family: Arial, sans-serif;
    padding-top: 10px; /* Small top padding for the first section */
}

.page-fishing-games__hero-section {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 20px;
    display: flex;
    flex-direction: column; /* Image then text */
    align-items: center;
    text-align: center;
    background-color: var(--card-bg-color); /* #FFFFFF */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    min-width: 200px; /* Enforce min-size */
    min-height: 200px; /* Enforce min-size */
    display: block; /* Remove extra space below image */
}

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

.page-fishing-games__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--custom-color-1776249996415); /* #000000 */
    margin-bottom: 15px;
}

.page-fishing-games__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-main-color); /* #1F2D3D */
}

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

.page-fishing-games__btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
}

.page-fishing-games__btn--primary {
    background: var(--button-bg-gradient); /* linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%) */
    color: #FFFFFF;
    border: none;
}

.page-fishing-games__btn--primary:hover {
    opacity: 0.9;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__btn--secondary {
    background-color: transparent;
    color: var(--primary-color); /* #2F6BFF */
    border: 2px solid var(--primary-color); /* #2F6BFF */
}

.page-fishing-games__btn--secondary:hover {
    background-color: var(--primary-color); /* #2F6BFF */
    color: #FFFFFF;
}

.page-fishing-games__section-title {
    text-align: center;
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--custom-color-1776249996415); /* #000000 */
    padding-top: 40px;
}

.page-fishing-games__features-section,
.page-fishing-games__game-list-section,
.page-fishing-games__guide-section,
.page-fishing-games__faq-section {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 20px;
    background-color: var(--card-bg-color); /* #FFFFFF */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games__feature-card,
.page-fishing-games__game-card {
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    background-color: var(--page-bg-color); /* #F4F7FB for cards within a section */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__feature-icon,
.page-fishing-games__game-thumbnail {
    width: 100%;
    height: auto;
    max-width: 400px; /* Example max-width for content images */
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce min-size */
    min-height: 200px; /* Enforce min-size */
    object-fit: cover;
}

.page-fishing-games__feature-title,
.page-fishing-games__game-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--custom-color-1776249996415); /* #000000 */
}

.page-fishing-games__feature-description,
.page-fishing-games__game-description {
    font-size: 1em;
    line-height: 1.5;
    color: var(--text-main-color); /* #1F2D3D */
    flex-grow: 1; /* Make description take available space */
    margin-bottom: 15px;
}

.page-fishing-games__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: auto; /* Push button to bottom */
}

.page-fishing-games__guide-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-fishing-games__guide-item {
    background-color: var(--page-bg-color); /* #F4F7FB */
    border-left: 5px solid var(--primary-color); /* #2F6BFF */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__guide-step-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color); /* #2F6BFF */
}

.page-fishing-games__guide-step-description {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-main-color); /* #1F2D3D */
}

.page-fishing-games__guide-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-fishing-games__faq-item {
    background-color: var(--page-bg-color); /* #F4F7FB */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color); /* #D6E2FF */
}

.page-fishing-games__faq-question {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--custom-color-1776249996415); /* #000000 */
    margin-bottom: 10px;
}

.page-fishing-games__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-main-color); /* #1F2D3D */
}

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

    .page-fishing-games__main-title {
        font-size: 1.8em; /* Using em for relative sizing */
    }

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

    .page-fishing-games__cta-buttons,
    .page-fishing-games__guide-cta {
        flex-direction: column;
        align-items: center;
    }

    .page-fishing-games__btn {
        width: 100%;
        max-width: 250px;
    }

    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

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

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

    /* Crucial for mobile overflow prevention */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }
}