.page-fishing-games {
    font-family: Arial, sans-serif;
    color: #F3F8FF;
    background-color: #08162B; /* Deep Navy as base background */
}

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

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
    color: #F3F8FF;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #1D5FD1, #2B73F6);
    border-radius: 2px;
}

.page-fishing-games__section-description {
    font-size: 1.1rem;
    color: #AFC4E8;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Hero Section */
.page-fishing-games__hero-section {
    background-color: #113B7A; /* Primary color as a fallback/base */
    padding-top: 10px; /* Small top padding to avoid header overlap */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1920 / 600; /* Maintain aspect ratio */
}

.page-fishing-games__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    width: 100%;
    z-index: 1;
    box-sizing: border-box;
}

.page-fishing-games__hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 800;
    line-height: 1.2;
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
    font-size: 1.2rem;
    color: #F3F8FF;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-cta-button,
.page-fishing-games__cta-button,
.page-fishing-games__faq-contact-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #F3F8FF;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__hero-cta-button:hover,
.page-fishing-games__cta-button:hover,
.page-fishing-games__faq-contact-button:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-fishing-games__introduction-section {
    padding: 60px 0;
    background-color: #08162B; /* Deep Navy */
}

/* Game Types Section */
.page-fishing-games__game-types-section {
    padding: 60px 0;
    background-color: #10233F; /* Card BG */
}

.page-fishing-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-fishing-games__game-card {
    background-color: #08162B; /* Deep Navy */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    border: 1px solid #244D84; /* Border color */
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__game-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

/* Advantages Section */
.page-fishing-games__advantages-section {
    padding: 60px 0;
    background-color: #08162B; /* Deep Navy */
}

.page-fishing-games__advantage-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-fishing-games__advantage-item {
    background-color: #10233F; /* Card BG */
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 1.05rem;
    color: #F3F8FF;
    line-height: 1.5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #1D5FD1; /* Auxiliary color accent */
}

/* Guide Section */
.page-fishing-games__guide-section {
    padding: 60px 0;
    background-color: #10233F; /* Card BG */
}

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

.page-fishing-games__guide-text {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__guide-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-fishing-games__guide-step {
    background-color: #08162B; /* Deep Navy */
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid #244D84; /* Border color */
}

.page-fishing-games__guide-step h3 {
    font-size: 1.4rem;
    color: #F2C14E; /* Gold */
    margin-top: 0;
    margin-bottom: 10px;
}

.page-fishing-games__guide-step p {
    font-size: 1rem;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
}

.page-fishing-games__guide-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fishing-games__guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #244D84; /* Border color */
    display: block; /* Ensure it behaves as a block element */
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 60px 0;
    background-color: #08162B; /* Deep Navy */
    text-align: center;
}

.page-fishing-games__faq-accordion {
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.page-fishing-games__faq-item {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border color */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
    font-size: 1.2rem;
    color: #F3F8FF;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1B3357; /* Divider as question background */
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: #244D84; /* Border color for hover */
}

.page-fishing-games__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #F2C14E; /* Gold */
    transition: transform 0.3s ease;
}

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

.page-fishing-games__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #10233F; /* Card BG */
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding: 15px 25px 25px 25px;
}

.page-fishing-games__faq-answer p {
    font-size: 1rem;
    color: #AFC4E8;
    line-height: 1.6;
    margin: 0;
}

.page-fishing-games__faq-answer a {
    color: #1D5FD1; /* Auxiliary color for links */
    text-decoration: none;
}

.page-fishing-games__faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-fishing-games__hero-image {
        aspect-ratio: 4 / 3;
    }

    .page-fishing-games__hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

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

    .page-fishing-games__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .page-fishing-games__guide-content {
        flex-direction: column;
    }

    .page-fishing-games__guide-image {
        width: 100%; /* Ensure image fills container */
        height: auto;
    }

    .page-fishing-games__hero-cta-button,
    .page-fishing-games__cta-button,
    .page-fishing-games__faq-contact-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

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

    .page-fishing-games__faq-question {
        font-size: 1.1rem;
    }

    .page-fishing-games__faq-answer p {
        font-size: 0.95rem;
    }

    /* Enforce min-width for content images on mobile */
    .page-fishing-games img {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 549px) {
    .page-fishing-games__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-fishing-games__section-description {
        font-size: 0.95rem;
    }

    .page-fishing-games__game-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }

    .page-fishing-games__container {
        padding: 15px;
    }

    .page-fishing-games__advantage-item,
    .page-fishing-games__guide-step {
        padding: 18px 20px;
    }

    .page-fishing-games__guide-step h3 {
        font-size: 1.2rem;
    }

    .page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
        padding: 10px 20px 20px 20px;
    }
}

/* Ensure content area images are never smaller than 200px (desktop) */
.page-fishing-games__game-image,
.page-fishing-games__guide-image {
    min-width: 200px;
    min-height: 200px; /* Applies to desktop, overridden by max-width:100% on mobile */
}

/* Color Contrast Check: */
/* Main text on Deep Navy/Card BG: #F3F8FF on #08162B (contrast 12.3:1) - PASS */
/* Secondary text on Deep Navy/Card BG: #AFC4E8 on #08162B (contrast 6.2:1) - PASS */
/* Gold text on Deep Navy/Card BG: #F2C14E on #08162B (contrast 7.8:1) - PASS */
/* Button text #F3F8FF on gradient (darkest #1144A6): #F3F8FF on #1144A6 (contrast 10.1:1) - PASS */
/* FAQ Question text #F3F8FF on #1B3357 (contrast 10.1:1) - PASS */
/* FAQ Answer link #1D5FD1 on #10233F (contrast 4.7:1) - PASS */