:root {
    /* Colors */
    --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: #0A4B2C;

    /* Spacing */
    --page-fishing-games-spacing-sm: 10px;
    --page-fishing-games-spacing-md: 20px;
    --page-fishing-games-spacing-lg: 40px;
    --page-fishing-games-spacing-xl: 60px;
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--page-fishing-games-text-main); /* Light text for dark background */
    background-color: var(--page-fishing-games-background); /* Dark background */
    line-height: 1.6;
    padding-bottom: var(--page-fishing-games-spacing-xl); /* Ensure space above footer */
}

.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-fishing-games-spacing-md);
    box-sizing: border-box;
}

.page-fishing-games__section {
    padding: var(--page-fishing-games-spacing-xl) 0;
    border-bottom: 1px solid var(--page-fishing-games-divider-color);
}

.page-fishing-games__section:last-of-type {
    border-bottom: none;
}

.page-fishing-games__section-title {
    font-size: 2.5rem;
    color: var(--page-fishing-games-gold-color);
    text-align: center;
    margin-bottom: var(--page-fishing-games-spacing-lg);
    font-weight: bold;
}

.page-fishing-games__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    color: var(--page-fishing-games-gold-color);
    text-align: center;
    margin-bottom: var(--page-fishing-games-spacing-md);
    font-weight: bold;
    line-height: 1.2;
}

.page-fishing-games__description {
    font-size: 1.1rem;
    color: var(--page-fishing-games-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--page-fishing-games-spacing-lg);
}

.page-fishing-games__text-block {
    font-size: 1rem;
    color: var(--page-fishing-games-text-main);
    margin-bottom: var(--page-fishing-games-spacing-md);
    text-align: justify;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
    padding-bottom: var(--page-fishing-games-spacing-xl);
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--page-fishing-games-spacing-lg); /* Space between image and content */
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit hero image height */
    border-radius: 10px;
}

.page-fishing-games__hero-content {
    position: relative; /* Ensure content is above image if z-index is used, but we avoid overlay */
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--page-fishing-games-spacing-md);
    box-sizing: border-box;
}

.page-fishing-games__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--page-fishing-games-spacing-md);
    margin-top: var(--page-fishing-games-spacing-lg);
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    max-width: 100%;
}

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

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

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--page-fishing-games-gold-color);
    border: 2px solid var(--page-fishing-games-gold-color);
    box-shadow: none;
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--page-fishing-games-gold-color);
    color: var(--page-fishing-games-background);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__btn-small {
    padding: 8px 18px;
    font-size: 1rem;
}

.page-fishing-games__btn-large {
    padding: 15px 30px;
    font-size: 1.2rem;
}

/* Card Styling */
.page-fishing-games__card {
    background-color: var(--page-fishing-games-card-bg);
    border-radius: 10px;
    padding: var(--page-fishing-games-spacing-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: var(--page-fishing-games-spacing-md);
    min-height: 200px; /* Enforce minimum image height */
}

.page-fishing-games__card-title {
    font-size: 1.3rem;
    color: var(--page-fishing-games-text-main);
    margin-bottom: var(--page-fishing-games-spacing-sm);
    font-weight: bold;
}

.page-fishing-games__card-text {
    font-size: 0.95rem;
    color: var(--page-fishing-games-text-secondary);
}

/* Benefits Section */
.page-fishing-games__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--page-fishing-games-spacing-lg);
}

/* Guide Section */
.page-fishing-games__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--page-fishing-games-spacing-lg);
}

.page-fishing-games__guide-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--page-fishing-games-card-bg);
    padding: var(--page-fishing-games-spacing-md);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__guide-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: var(--page-fishing-games-spacing-md);
    min-height: 200px; /* Enforce minimum image height */
}

.page-fishing-games__step-title {
    font-size: 1.4rem;
    color: var(--page-fishing-games-gold-color);
    margin-bottom: var(--page-fishing-games-spacing-sm);
    font-weight: bold;
}

.page-fishing-games__step-text {
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: var(--page-fishing-games-spacing-md);
}

/* Strategy Section */
.page-fishing-games__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--page-fishing-games-spacing-lg);
}

.page-fishing-games__strategy-item {
    padding: var(--page-fishing-games-spacing-md);
}

/* Popular Games Section */
.page-fishing-games__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--page-fishing-games-spacing-lg);
    margin-top: var(--page-fishing-games-spacing-lg);
}

.page-fishing-games__game-card {
    padding: var(--page-fishing-games-spacing-md);
}

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

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--page-fishing-games-spacing-md);
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--page-fishing-games-text-main);
    cursor: pointer;
    background-color: var(--page-fishing-games-deep-green);
    border-bottom: 1px solid var(--page-fishing-games-border-color);
    list-style: none; /* For details/summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
    display: none; /* For details/summary */
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    border-bottom: 1px solid var(--page-fishing-games-border-color);
}

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

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--page-fishing-games-gold-color);
    margin-left: var(--page-fishing-games-spacing-sm);
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
    padding: var(--page-fishing-games-spacing-md);
    font-size: 1rem;
    color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__faq-answer p {
    margin-bottom: 0;
}

/* Call to Action Section */
.page-fishing-games__call-to-action-section {
    text-align: center;
}

.page-fishing-games__center-text {
    text-align: center;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 2.2rem;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }
}

@media (max-width: 768px) {
    .page-fishing-games__section-title {
        font-size: 1.8rem;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }
    .page-fishing-games__description {
        font-size: 1rem;
        margin-bottom: var(--page-fishing-games-spacing-md);
    }
    .page-fishing-games__section {
        padding: var(--page-fishing-games-spacing-lg) 0;
    }
    .page-fishing-games__hero-section {
        padding-bottom: var(--page-fishing-games-spacing-lg);
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: var(--page-fishing-games-spacing-sm);
    }
    .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__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    /* Image responsive */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__container,
    .page-fishing-games__card,
    .page-fishing-games__guide-step,
    .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__hero-content {
        padding: 0 15px;
    }
    .page-fishing-games__hero-image {
        max-height: 400px;
    }
    .page-fishing-games__hero-image-wrapper {
        margin-bottom: var(--page-fishing-games-spacing-md);
    }

    /* Video section (if any) - not present in this outline, but for completeness */
    .page-fishing-games video,
    .page-fishing-games__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !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-section {
      padding-top: 10px !important;
    }
}

/* Contrast Fixes (if needed, but design uses dark bg with light text by default) */
.page-fishing-games__dark-section {
  background: var(--page-fishing-games-deep-green);
  color: var(--page-fishing-games-text-main);
}
.page-fishing-games__light-section {
  background: #ffffff; /* Example if light section is introduced */
  color: #333333;
}