.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #F3F8FF; /* Text Main */
    background-color: var(--deep-navy); /* From shared.css, body background */
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    overflow: hidden;
    background-color: #08162B; /* Deep Navy, matching body if set */
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height to prevent excessive image size */
    overflow: hidden;
}

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

.page-fishing-games__hero-content {
    max-width: 900px;
    margin-top: -100px; /* Overlap slightly for visual effect, but not text on image */
    position: relative; /* Ensure z-index works if needed */
    z-index: 1; /* Bring content above image if any overlap */
    padding: 0 20px;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 size */
    font-weight: bold;
    line-height: 1.2;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__hero-description {
    font-size: 1.2rem;
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Important for mobile */
    box-sizing: border-box; /* Important for mobile */
    white-space: normal; /* Allow text wrap for buttons */
    word-wrap: break-word; /* Allow text wrap for buttons */
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #ffffff;
    border: none;
}

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

.page-fishing-games__btn-secondary {
    background: transparent;
    color: #4FA8FF; /* Glow */
    border: 2px solid #4FA8FF; /* Glow */
}

.page-fishing-games__btn-secondary:hover {
    background: rgba(79, 168, 255, 0.1); /* Glow with transparency */
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-fishing-games__section {
    padding: 80px 0;
    position: relative;
}

.page-fishing-games__container {
    width: 100%; /* Ensure width is 100% for flex child */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-fishing-games__heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-fishing-games__section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #AFC4E8; /* Text Secondary */
}

.page-fishing-games__section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-fishing-games__section ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.page-fishing-games__section ul li::before {
    content: '✓';
    color: #4FA8FF; /* Glow */
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Dark Background Sections */
.page-fishing-games__dark-bg {
    background-color: #113B7A; /* Main color */
    color: #F3F8FF; /* Text Main */
}

.page-fishing-games__dark-bg .page-fishing-games__heading {
    color: #F2C14E; /* Gold */
}

.page-fishing-games__dark-bg p,
.page-fishing-games__dark-bg ul li {
    color: #F3F8FF; /* Text Main */
}


/* Feature Grid */
.page-fishing-games__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__feature-item {
    background-color: #10233F; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #244D84; /* Border */
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__feature-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__feature-title {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

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

/* Guide Steps */
.page-fishing-games__guide-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.page-fishing-games__guide-step {
    background-color: #10233F; /* Card BG */
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #244D84; /* Border */
}

.page-fishing-games__step-title {
    font-size: 2rem;
    color: #4FA8FF; /* Glow */
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-fishing-games__strategy-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-fishing-games__strategy-list li::before {
    content: '•';
    color: #F2C14E; /* Gold */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.page-fishing-games__guide-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-top: 30px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Game Grid */
.page-fishing-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__game-card {
    background-color: #10233F; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #244D84; /* Border */
}

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

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

.page-fishing-games__game-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__game-description {
    font-size: 0.95rem;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.5;
}

/* Promotions Grid */
.page-fishing-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__promo-card {
    background-color: #10233F; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #244D84; /* Border */
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__promo-image {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.page-fishing-games__promo-title {
    font-size: 1.4rem;
    color: #4FA8FF; /* Glow */
    margin-bottom: 10px;
    font-weight: bold;
}

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

/* App Download Section */
.page-fishing-games__app-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* For mobile responsiveness */
}

.page-fishing-games__app-content {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__app-benefits {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-fishing-games__app-benefits li {
    font-size: 1.1rem;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.page-fishing-games__app-benefits li::before {
    content: '📱'; /* Emoji for bullet point */
    position: absolute;
    left: 0;
    color: #F2C14E; /* Gold */
}

.page-fishing-games__app-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-fishing-games__app-image {
    width: 100%;
    max-width: 500px; /* Limit image size */
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-left: auto;
    margin-right: auto;
}

/* Security Section */
.page-fishing-games__security-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-fishing-games__security-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.page-fishing-games__security-list li::before {
    content: '🔒'; /* Lock emoji */
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: #F2C14E; /* Gold */
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__faq-item {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-fishing-games__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #F3F8FF; /* Text Main */
    cursor: pointer;
    list-style: none; /* Hide default marker */
    position: relative;
    outline: none;
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit */
}

.page-fishing-games__faq-item summary:hover {
    background-color: rgba(29, 95, 209, 0.1); /* Light hover effect */
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    color: #F2C14E; /* Gold */
}

.page-fishing-games__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: #4FA8FF; /* Glow */
    margin-left: 20px;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-qtext {
    color: #4FA8FF; /* Change color when open */
}

.page-fishing-games__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #AFC4E8; /* Text Secondary */
}

/* Conclusion Section */
.page-fishing-games__conclusion {
    text-align: center;
    background-color: #08162B; /* Deep Navy */
    padding: 80px 20px;
}

.page-fishing-games__conclusion .page-fishing-games__heading {
    color: #F2C14E; /* Gold */
    margin-bottom: 25px;
}

.page-fishing-games__conclusion p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #F3F8FF; /* Text Main */
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        margin-top: -80px;
    }
    .page-fishing-games__heading {
        font-size: 2.2rem;
    }
    .page-fishing-games__feature-item,
    .page-fishing-games__game-card,
    .page-fishing-games__promo-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    /* General mobile adjustments */
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* body already handles header offset */
        padding-bottom: 40px;
    }
    
    .page-fishing-games__hero-image-wrapper {
        max-height: 300px;
    }

    .page-fishing-games__hero-content {
        margin-top: -60px;
        padding: 0 15px;
    }

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

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

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding to container */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games__section {
        padding: 40px 0;
    }

    .page-fishing-games__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-fishing-games__section p,
    .page-fishing-games__section ul li,
    .page-fishing-games__feature-description,
    .page-fishing-games__game-description,
    .page-fishing-games__promo-description,
    .page-fishing-games__app-benefits li,
    .page-fishing-games__security-list li,
    .page-fishing-games__faq-answer p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .page-fishing-games__feature-grid,
    .page-fishing-games__game-grid,
    .page-fishing-games__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__feature-item,
    .page-fishing-games__guide-step,
    .page-fishing-games__game-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__faq-item {
        padding: 20px;
    }

    .page-fishing-games__feature-title,
    .page-fishing-games__game-title,
    .page-fishing-games__promo-title {
        font-size: 1.2rem;
    }

    .page-fishing-games__step-title {
        font-size: 1.5rem;
    }

    .page-fishing-games__app-flex {
        flex-direction: column;
        gap: 30px;
    }

    .page-fishing-games__app-image-wrapper {
        order: -1; /* Move image to top on mobile */
    }

    .page-fishing-games__app-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

    /* Images responsiveness */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important; /* Ensure padding/border is included in width */
    }
    
    /* Ensure image containers also adapt */
    .page-fishing-games__feature-item,
    .page-fishing-games__guide-step,
    .page-fishing-games__game-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__app-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games__faq-item summary {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    
    .page-fishing-games__faq-toggle {
        font-size: 1.5rem;
    }

    .page-fishing-games__faq-answer {
        padding: 0 20px 15px 20px;
    }
}