:root {
    --trum88-primary-color: #11A84E; /* Main Green */
    --trum88-secondary-color: #22C768; /* Auxiliary Green */
    --trum88-bg-card: #11271B; /* Card Background */
    --trum88-bg-body: #08160F; /* Body Background */
    --trum88-text-main: #F2FFF6; /* Main Text */
    --trum88-text-secondary: #A7D9B8; /* Secondary Text */
    --trum88-border-color: #2E7A4E; /* Border Color */
    --trum88-glow-color: #57E38D; /* Glow Effect */
    --trum88-gold-color: #F2C14E; /* Gold Accent */
    --trum88-divider-color: #1E3A2A; /* Divider Color */
    --trum88-deep-green: #0A4B2C; /* Deep Green */
    --trum88-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --header-offset: 100px; /* Placeholder, actual value from shared.css */
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--trum88-text-main); /* Light text for dark background */
    background-color: var(--trum88-bg-body); /* Dark background */
    line-height: 1.6;
    padding-top: 0; /* Handled by body padding-top in shared.css */
}

.page-fishing-games a {
    color: var(--trum88-secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games a:hover {
    color: var(--trum88-glow-color);
    text-decoration: underline;
}

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

/* Sections */
.page-fishing-games__hero-section,
.page-fishing-games__introduction-section,
.page-fishing-games__game-types-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__promotions-section,
.page-fishing-games__platform-features-section,
.page-fishing-games__faq-section,
.page-fishing-games__conclusion-section {
    padding: 60px 0;
    text-align: center;
}

.page-fishing-games__dark-section {
    background-color: var(--trum88-bg-body);
    color: var(--trum88-text-main);
}

.page-fishing-games__section-title {
    font-size: 2.8em;
    color: var(--trum88-gold-color);
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-fishing-games__text-block {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: var(--trum88-text-secondary);
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    padding-top: 10px; /* Small top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-fishing-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.page-fishing-games__hero-image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: var(--trum88-text-main);
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin-top: 20px;
    box-sizing: border-box;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em);
    color: var(--trum88-gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--trum88-text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

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

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

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

.page-fishing-games__btn-secondary:hover {
    background-color: var(--trum88-secondary-color);
    color: var(--trum88-bg-body);
    transform: translateY(-3px);
}

.page-fishing-games__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-fishing-games__btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
}

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

.page-fishing-games__card {
    background-color: var(--trum88-bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--trum88-border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-fishing-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--trum88-divider-color);
}

.page-fishing-games__card-title {
    font-size: 1.5em;
    color: var(--trum88-gold-color);
    padding: 20px 20px 10px 20px;
    margin: 0;
    font-weight: bold;
}

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

.page-fishing-games__card .page-fishing-games__btn-primary {
    margin: 0 20px 20px 20px;
    width: calc(100% - 40px);
    display: block;
}

/* How to Play Section */
.page-fishing-games__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__step-item {
    background-color: var(--trum88-bg-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--trum88-border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__step-icon {
    width: 60px;
    height: 60px;
    background: var(--trum88-btn-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    color: var(--trum88-text-main);
    margin-bottom: 20px;
    box-shadow: 0 0 15px var(--trum88-glow-color);
}

.page-fishing-games__step-title {
    font-size: 1.4em;
    color: var(--trum88-gold-color);
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.page-fishing-games__step-description {
    font-size: 1em;
    color: var(--trum88-text-secondary);
    text-align: center;
}

.page-fishing-games__image-wrapper {
    margin: 50px auto 0 auto;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--trum88-border-color);
}

.page-fishing-games__content-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Promotions Section */
.page-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

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

.page-fishing-games__promo-title {
    font-size: 1.4em;
    color: var(--trum88-gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

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

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

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

.page-fishing-games__feature-title {
    font-size: 1.4em;
    color: var(--trum88-gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

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

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

.page-fishing-games__faq-item {
    background-color: var(--trum88-bg-card);
    border: 1px solid var(--trum88-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: var(--trum88-text-main);
    cursor: pointer;
    background-color: var(--trum88-deep-green);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: var(--trum88-primary-color);
}

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

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    content: "−";
}

.page-fishing-games__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1em;
    color: var(--trum88-text-secondary);
    line-height: 1.7;
    background-color: var(--trum88-bg-card);
    border-top: 1px solid var(--trum88-divider-color);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Conclusion Section */
.page-fishing-games__cta-final {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 2.2em;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2em, 4.5vw, 3em);
    }
    .page-fishing-games__hero-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-fishing-games__hero-section {
        min-height: 400px;
        padding-top: 10px !important;
    }
    .page-fishing-games__hero-content {
        padding: 30px 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        margin-bottom: 15px;
    }
    .page-fishing-games__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games a[class*="button"],
    .page-fishing-games a[class*="btn"] {
        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,
    .page-fishing-games__button-group,
    .page-fishing-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

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

    .page-fishing-games__game-cards,
    .page-fishing-games__steps,
    .page-fishing-games__promo-list,
    .page-fishing-games__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__card,
    .page-fishing-games__step-item,
    .page-fishing-games__promo-item,
    .page-fishing-games__feature-item {
        padding: 20px;
    }

    .page-fishing-games__card-image {
        height: 180px;
    }

    .page-fishing-games__card-title,
    .page-fishing-games__step-title,
    .page-fishing-games__promo-title,
    .page-fishing-games__feature-title {
        font-size: 1.2em;
    }

    .page-fishing-games__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-answer {
        padding: 10px 20px 15px 20px;
    }

    /* Images and Videos Responsive */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Content area images must be >= 200px */
    .page-fishing-games__content-image,
    .page-fishing-games__card-image {
      min-width: 200px;
      min-height: 200px;
    }

    /* Video responsiveness - if any */
    .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;
    }
    .page-fishing-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}