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

.page-fishing-games {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--l33-text-main-color); /* Default text color for the page */
    background-color: var(--l33-bg-color); /* Main page background */
    overflow-x: hidden;
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--l33-gold-color);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.page-fishing-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--l33-text-secondary-color);
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background-color: var(--l33-bg-color);
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px; /* Adjust to bring content slightly over image */
    background: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__main-title {
    font-weight: 800;
    color: var(--l33-gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 100%;
}

.page-fishing-games__hero-description {
    font-size: 1.2em;
    color: var(--l33-text-main-color);
    margin-bottom: 30px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-fishing-games__btn-primary {
    background: var(--l33-btn-gradient);
    color: #ffffff;
    border: none;
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: var(--l33-text-main-color);
    border: 2px solid var(--l33-border-color);
}

.page-fishing-games__btn-secondary:hover {
    background: var(--l33-border-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Intro Section */
.page-fishing-games__intro-section {
    padding: 80px 0;
}

.page-fishing-games__light-bg {
    background-color: var(--l33-text-main-color);
    color: var(--l33-card-bg-color);
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
    color: var(--l33-deep-green-color);
}

.page-fishing-games__light-bg .page-fishing-games__text-block {
    color: var(--l33-deep-green-color);
}

.page-fishing-games__light-bg .page-fishing-games__image {
    border: 1px solid var(--l33-divider-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    max-width: 800px; /* Example max-width */
    border-radius: 10px;
}

/* Video Section */
.page-fishing-games__video-section {
    padding: 60px 0;
    background-color: var(--l33-bg-color);
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-fishing-games__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 30px auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: var(--l33-card-bg-color);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}

.page-fishing-games__video-cta {
    margin-top: 30px;
}

/* How to Play Section */
.page-fishing-games__dark-bg {
    background-color: var(--l33-card-bg-color);
    color: var(--l33-text-main-color);
}

.page-fishing-games__dark-bg .page-fishing-games__section-title {
    color: var(--l33-gold-color);
}

.page-fishing-games__dark-bg .page-fishing-games__text-block {
    color: var(--l33-text-secondary-color);
}

.page-fishing-games__ordered-list,
.page-fishing-games__unordered-list {
    list-style-position: inside;
    margin-bottom: 30px;
    padding-left: 20px;
}

.page-fishing-games__ordered-list li,
.page-fishing-games__unordered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--l33-text-secondary-color);
}

.page-fishing-games__ordered-list li strong,
.page-fishing-games__unordered-list li strong {
    color: var(--l33-text-main-color);
}

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

.page-fishing-games__game-card {
    background-color: var(--l33-card-bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: var(--l33-text-main-color);
    border: 1px solid var(--l33-border-color);
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(87, 227, 141, 0.3);
}

.page-fishing-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-fishing-games__card-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--l33-gold-color);
    margin: 20px 15px 10px;
}

.page-fishing-games__card-description {
    font-size: 1em;
    color: var(--l33-text-secondary-color);
    padding: 0 15px 20px;
}

/* Promotions Section & Register CTA */
.page-fishing-games__promotions-section,
.page-fishing-games__register-cta-section {
    padding: 80px 0;
    text-align: center;
}

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

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
    text-align: center;
}

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

.page-fishing-games__faq-item {
    background-color: var(--l33-card-bg-color);
    border: 1px solid var(--l33-divider-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--l33-text-main-color);
    cursor: pointer;
    background-color: var(--l33-deep-green-color);
    border-bottom: 1px solid var(--l33-divider-color);
    list-style: none; /* For details/summary */
}

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

.page-fishing-games__faq-question::-webkit-details-marker {
    display: none;
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    color: var(--l33-text-main-color);
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--l33-gold-color);
}

.page-fishing-games__faq-answer {
    padding: 20px;
    font-size: 1.05em;
    color: var(--l33-text-secondary-color);
    background-color: var(--l33-card-bg-color);
}

.page-fishing-games__faq-answer p {
    margin-bottom: 10px;
    color: var(--l33-text-secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: 2.8em;
    }
    .page-fishing-games__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-content {
        margin-top: -50px;
        padding: 30px 15px;
    }
    .page-fishing-games__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-fishing-games__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-fishing-games__hero-cta-buttons,
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 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 15px;
        font-size: 1em;
    }

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

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

    .page-fishing-games__text-block,
    .page-fishing-games__ordered-list li,
    .page-fishing-games__unordered-list li,
    .page-fishing-games__faq-answer p {
        font-size: 0.95em;
    }

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

    .page-fishing-games__hero-image-wrapper,
    .page-fishing-games__video-wrapper,
    .page-fishing-games__game-card,
    .page-fishing-games__faq-item,
    .page-fishing-games__intro-section,
    .page-fishing-games__video-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__game-types-section,
    .page-fishing-games__benefits-section,
    .page-fishing-games__tips-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__register-cta-section,
    .page-fishing-games__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 0;
        padding-right: 0;
    }
    .page-fishing-games__video-section {
        padding-top: 10px !important;
    }
    .page-fishing-games__game-cards {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-fishing-games__faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: 1.8em;
    }
    .page-fishing-games__section-title {
        font-size: 1.5em;
    }
}