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

.page-fishing-games {
    background-color: var(--page-fishing-games-background);
    color: var(--page-fishing-games-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-fishing-games__section-title {
    font-size: clamp(2em, 4vw, 2.8em);
    color: var(--page-fishing-games-text-main);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
}

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

.page-fishing-games__text-main {
    color: var(--page-fishing-games-text-main);
}

.page-fishing-games__text-secondary {
    color: var(--page-fishing-games-text-secondary);
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--page-fishing-games-deep-green-color);
    overflow: hidden;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.3;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: var(--page-fishing-games-text-main);
    padding: 20px;
    border-radius: 10px;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5em, 5vw, 3.8em);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--page-fishing-games-gold-color);
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

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

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

/* Buttons */
.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;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 150px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background: var(--page-fishing-games-button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
    opacity: 0.9;
}

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

.page-fishing-games__btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--page-fishing-games-primary-color);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.4);
}

/* Intro Section */
.page-fishing-games__intro-section {
    padding: 60px 20px;
    background-color: var(--page-fishing-games-background);
}

/* Highlights Section */
.page-fishing-games__highlights-section {
    padding: 60px 20px;
    background-color: var(--page-fishing-games-card-bg);
    text-align: center;
}

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

.page-fishing-games__highlight-item {
    background-color: var(--page-fishing-games-background);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    min-height: 200px;
}

.page-fishing-games__highlight-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games__highlight-icon {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

.page-fishing-games__highlight-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__highlight-description {
    font-size: 1em;
    color: var(--page-fishing-games-text-secondary);
}

/* Game Types Section */
.page-fishing-games__game-types-section {
    padding: 60px 20px;
    background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__game-card {
    background-color: var(--page-fishing-games-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
}

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

.page-fishing-games__game-card-title {
    font-size: 1.4em;
    font-weight: bold;
    padding: 15px 20px 5px;
}

.page-fishing-games__game-card-title a {
    color: var(--page-fishing-games-gold-color);
    text-decoration: none;
}

.page-fishing-games__game-card-title a:hover {
    text-decoration: underline;
}

.page-fishing-games__game-card-description {
    font-size: 0.95em;
    padding: 0 20px 15px;
    flex-grow: 1;
}

.page-fishing-games__game-card-button {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* How To Play Section */
.page-fishing-games__how-to-play-section {
    padding: 60px 20px;
    background-color: var(--page-fishing-games-deep-green-color);
}

.page-fishing-games__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-fishing-games__step-item {
    background-color: var(--page-fishing-games-card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-fishing-games__step-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--page-fishing-games-gold-color);
}

.page-fishing-games__step-description {
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 60px 20px;
    background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__promotion-card {
    background-color: var(--page-fishing-games-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-fishing-games__promotion-card:hover {
    transform: translateY(-5px);
}

.page-fishing-games__promotion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__promotion-title {
    font-size: 1.4em;
    font-weight: bold;
    padding: 15px 20px 5px;
}

.page-fishing-games__promotion-title a {
    color: var(--page-fishing-games-text-main);
    text-decoration: none;
}

.page-fishing-games__promotion-title a:hover {
    text-decoration: underline;
}

.page-fishing-games__promotion-description {
    font-size: 0.95em;
    padding: 0 20px 15px;
    flex-grow: 1;
}

.page-fishing-games__promotion-button {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

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

/* Why Choose Section */
.page-fishing-games__why-choose-section {
    padding: 60px 20px;
    background-color: var(--page-fishing-games-deep-green-color);
}

.page-fishing-games__reason-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__reason-item {
    background-color: var(--page-fishing-games-card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-fishing-games__reason-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--page-fishing-games-gold-color);
}

.page-fishing-games__reason-description {
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 60px 20px;
    background-color: var(--page-fishing-games-background);
}

.page-fishing-games__faq-list {
    margin-top: 40px;
}

.page-fishing-games__faq-item {
    background-color: var(--page-fishing-games-card-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-fishing-games__faq-item summary {
    list-style: none;
}

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

.page-fishing-games__faq-question {
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--page-fishing-games-text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--page-fishing-games-deep-green-color);
    border-bottom: 1px solid var(--page-fishing-games-divider-color);
}

.page-fishing-games__faq-question:hover {
    background-color: var(--page-fishing-games-deep-green-color);
    opacity: 0.9;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
}

.page-fishing-games__faq-answer {
    padding: 20px;
    font-size: 1em;
    color: var(--page-fishing-games-text-secondary);
    border-top: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__faq-answer p {
    margin-bottom: 10px;
    text-align: left;
}

.page-fishing-games__link-text {
    color: var(--page-fishing-games-primary-color);
    text-decoration: none;
}

.page-fishing-games__link-text:hover {
    text-decoration: underline;
}

/* Final CTA Section */
.page-fishing-games__final-cta-section {
    padding: 60px 20px;
    background-color: var(--page-fishing-games-deep-green-color);
    text-align: center;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        padding: 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2em, 4vw, 3em);
    }
    .page-fishing-games__hero-description {
        font-size: 1em;
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.8em, 3.5vw, 2.5em);
    }
}

@media (max-width: 768px) {
    .page-fishing-games__content-area {
        padding: 20px 15px;
    }
    .page-fishing-games__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles header offset */
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-fishing-games__hero-description {
        font-size: 0.95em;
    }
    .page-fishing-games__hero-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-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__highlight-grid,
    .page-fishing-games__game-card-grid,
    .page-fishing-games__step-list,
    .page-fishing-games__promotion-grid,
    .page-fishing-games__reason-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__highlight-item,
    .page-fishing-games__game-card,
    .page-fishing-games__step-item,
    .page-fishing-games__promotion-card,
    .page-fishing-games__reason-item,
    .page-fishing-games__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-fishing-games__final-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__faq-question {
        font-size: 1.1em;
    }
    .page-fishing-games__faq-answer {
        font-size: 0.95em;
    }
}