:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-dark: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

/* General page styles */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Default text color for dark background */
    background-color: var(--background-dark); /* Assume body background is dark from shared */
}

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

.page-fishing-games__section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.page-fishing-games__text-block {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary);
    text-align: center;
}

.page-fishing-games__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-main);
    padding: 60px 0;
}

.page-fishing-games__light-bg {
    background-color: #f8f9fa;
    color: #333333;
    padding: 60px 0;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px 0 60px 0; /* body handles header offset, this is decorative top padding */
    background-color: var(--background-dark);
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Adjust based on desired aspect ratio for 1200x675 */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-fishing-games__main-title {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 30px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-play,
.page-fishing-games__btn-details {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Introduction Section */
.page-fishing-games__introduction .page-fishing-games__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #555555;
}

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

.page-fishing-games__feature-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-fishing-games__feature-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
    object-fit: contain;
}

.page-fishing-games__feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-fishing-games__feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

.page-fishing-games__game-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    color: #333333;
}

.page-fishing-games__game-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__game-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-fishing-games__game-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-fishing-games__btn-play {
    background: var(--button-gradient);
    color: var(--text-main);
    border: none;
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__btn-play:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

/* Getting Started Section */
.page-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__step-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.page-fishing-games__step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-fishing-games__step-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Promotions Section */
.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: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    color: #333333;
}

.page-fishing-games__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__promo-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-fishing-games__promo-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-fishing-games__btn-details {
    background-color: var(--primary-color);
    color: var(--text-main);
    border: none;
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__btn-details:hover {
    background-color: var(--deep-green);
    transform: translateY(-1px);
}

.page-fishing-games__view-all-promos {
    text-align: center;
    margin-top: 50px;
}

/* Tips & Strategies Section */
.page-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-fishing-games__tip-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.page-fishing-games__tip-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-fishing-games__tip-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Mobile App Section */
.page-fishing-games__app-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-fishing-games__app-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
}

.page-fishing-games__app-text .page-fishing-games__text-block {
    text-align: left;
    color: #555555;
}

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

.page-fishing-games__app-benefits li {
    font-size: 17px;
    line-height: 1.8;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-fishing-games__icon-check {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

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

.page-fishing-games__app-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* Customer Support Section */
.page-fishing-games__customer-support .page-fishing-games__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* 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: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #333333;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: #f0f0f0;
}

.page-fishing-games__faq-question[open] {
    border-bottom: none;
}

.page-fishing-games__faq-toggle {
    font-size: 24px;
    line-height: 1;
    margin-left: 15px;
    color: var(--primary-color);
}

.page-fishing-games__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-answer {
    max-height: 500px; /* Sufficiently large for content */
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    border-bottom: none;
}

/* Final CTA Section */
.page-fishing-games__cta-final .page-fishing-games__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        padding: 0 40px;
    }
    .page-fishing-games__app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-fishing-games__app-text,
    .page-fishing-games__app-image-wrapper {
        max-width: 100%;
    }
    .page-fishing-games__app-text .page-fishing-games__text-block {
        text-align: center;
    }
    .page-fishing-games__app-benefits {
        padding-left: 0;
        text-align: center;
    }
    .page-fishing-games__app-benefits li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section,
    .page-fishing-games__introduction,
    .page-fishing-games__features,
    .page-fishing-games__game-showcase,
    .page-fishing-games__getting-started,
    .page-fishing-games__promotions,
    .page-fishing-games__tips-strategies,
    .page-fishing-games__mobile-app,
    .page-fishing-games__customer-support,
    .page-fishing-games__faq,
    .page-fishing-games__cta-final {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box !important;
    }
    
    .page-fishing-games__hero-section {
        padding-top: 10px !important;
    }

    .page-fishing-games__main-title {
        font-size: 32px;
    }

    .page-fishing-games__hero-description,
    .page-fishing-games__text-block {
        font-size: 16px;
    }

    .page-fishing-games__section-title {
        font-size: 28px;
    }

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

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__btn-play,
    .page-fishing-games__btn-details {
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 16px;
    }

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

    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-fishing-games__hero-image-wrapper,
    .page-fishing-games__app-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-fishing-games__video-section,
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-fishing-games video,
    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__faq-question {
        font-size: 16px;
        padding: 15px;
    }

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

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: 28px;
    }
    .page-fishing-games__section-title {
        font-size: 24px;
    }
    .page-fishing-games__hero-description,
    .page-fishing-games__text-block {
        font-size: 15px;
    }
}