.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
    line-height: 1.6;
}

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

.page-fishing-games__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Important for flex child */
}

.page-fishing-games__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-fishing-games__main-title {
    font-weight: 700;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 15px;
    line-height: 1.2;
    /* H1 font-size: Using clamp for responsiveness and avoiding fixed large size */
    font-size: clamp(28px, 4vw, 48px);
}

.page-fishing-games__description {
    font-size: 18px;
    color: #1F2D3D; /* Text Main */
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Custom button color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
    border: none;
    cursor: pointer;
    max-width: 100%; /* For button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-fishing-games__cta-button--white {
    background: #ffffff;
    color: #2F6BFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__cta-button--white:hover {
    background: #f0f0f0;
    color: #2F6BFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__section {
    padding: 60px 20px;
    text-align: center;
}

.page-fishing-games__section--intro {
    background-color: #F4F7FB;
}

.page-fishing-games__section--why-choose {
    background-color: #ffffff; /* Card BG */
}

.page-fishing-games__section--game-types {
    background-color: #F4F7FB;
}

.page-fishing-games__section--download-guide {
    background-color: #ffffff;
}

.page-fishing-games__section--tips {
    background-color: #F4F7FB;
}

.page-fishing-games__section--promotions {
    background-color: #ffffff;
}

.page-fishing-games__section--faq {
    background-color: #F4F7FB;
}

.page-fishing-games__section--conclusion {
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Primary to Secondary gradient */
    color: #ffffff;
}

.page-fishing-games__section-title {
    font-size: clamp(24px, 3.5vw, 38px);
    color: #2F6BFF; /* Primary color */
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.page-fishing-games__section-title--white {
    color: #ffffff;
}

.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%; /* Ensure container fills width */
    box-sizing: border-box; /* Include padding in width calculation */
}

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

.page-fishing-games__card {
    background-color: #ffffff; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #1F2D3D; /* Text Main */
}

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

.page-fishing-games__card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-height: 200px; /* Enforce minimum size for cards */
}

.page-fishing-games__card-title {
    font-size: 22px;
    font-weight: 600;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-fishing-games__card-link {
    display: inline-block;
    margin-top: 20px;
    color: #2F6BFF; /* Primary color */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-fishing-games__card-link:hover {
    color: #6FA3FF; /* Secondary color */
    text-decoration: underline;
}

.page-fishing-games__step-list,
.page-fishing-games__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__step-list li,
.page-fishing-games__tip-list li {
    background-color: #ffffff; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    font-size: 17px;
    color: #1F2D3D; /* Text Main */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
}

.page-fishing-games__step-list li strong,
.page-fishing-games__tip-list li strong {
    color: #2F6BFF; /* Primary color */
    font-weight: 700;
}

.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%; /* For button container responsiveness */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-fishing-games__btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
    border: none;
    cursor: pointer;
    max-width: 100%; /* For button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #2F6BFF; /* Primary color */
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #2F6BFF; /* Primary color border */
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    max-width: 100%; /* For button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #F4F7FB; /* Background color */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__conclusion-text {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ styles */
details.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #D6E2FF; /* Border */
    overflow: hidden;
    background: #ffffff; /* Card BG */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: #2F6BFF; /* Primary color for question text */
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question::-webkit-details-marker {
    display: none;
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
    background: #F4F7FB; /* Background color */
}
.page-fishing-games__faq-qtext {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: #1F2D3D; /* Text Main */
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover .page-fishing-games__faq-qtext {
    color: #2F6BFF; /* Primary color */
}
.page-fishing-games__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #2F6BFF; /* Primary color */
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 25px 20px;
    background: #F4F7FB; /* Background color */
    border-radius: 0 0 12px 12px;
    text-align: left;
    color: #1F2D3D; /* Text Main */
    font-size: 16px;
}
.page-fishing-games__faq-answer p {
    margin: 0;
}


/* Responsive styles */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: clamp(26px, 5vw, 42px);
    }
    .page-fishing-games__description {
        font-size: 17px;
    }
    .page-fishing-games__section-title {
        font-size: clamp(22px, 4.5vw, 34px);
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-list,
    .page-fishing-games__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    .page-fishing-games__card {
        padding: 25px;
    }
    .page-fishing-games__card-title {
        font-size: 20px;
    }
    .page-fishing-games__step-list li,
    .page-fishing-games__tip-list li {
        font-size: 16px;
        padding: 18px 22px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* Fixed header spacing */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__hero-image {
        border-radius: 8px;
        margin-bottom: 20px;
    }
    .page-fishing-games__hero-image img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-fishing-games__main-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 10px;
    }
    .page-fishing-games__description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .page-fishing-games__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games__section {
        padding: 40px 15px;
    }
    .page-fishing-games__section-title {
        font-size: clamp(20px, 5.5vw, 30px);
        margin-bottom: 25px;
    }
    .page-fishing-games__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-list,
.page-fishing-games__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    .page-fishing-games__card {
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    .page-fishing-games__card img {
        min- /* Adjust min-height for smaller screens */
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-fishing-games__card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .page-fishing-games__step-list,
    .page-fishing-games__tip-list {
        margin-top: 25px;
    }
    .page-fishing-games__step-list li,
    .page-fishing-games__tip-list li {
        font-size: 15px;
        padding: 15px 20px;
        margin-bottom: 10px;
        border-radius: 6px;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 25px;
        font-size: 16px;
    }
    details.page-fishing-games__faq-item {
        margin-bottom: 10px;
        border-radius: 8px;
    }
    details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
        padding: 15px 20px;
    }
    .page-fishing-games__faq-qtext {
        font-size: 16px;
    }
    .page-fishing-games__faq-toggle {
        font-size: 20px;
        width: 24px;
    }
    details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
        padding: 0 20px 15px;
        font-size: 15px;
    }
    .page-fishing-games__conclusion-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
}