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

.page-blog-tai-hello88-fishing-game-guide {
    color: var(--text-main); /* Body background is dark, so text should be light */
    background-color: var(--background-color-page);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-blog-tai-hello88-fishing-game-guide__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-blog-tai-hello88-fishing-game-guide__hero-image-wrapper {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-tai-hello88-fishing-game-guide__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-blog-tai-hello88-fishing-game-guide__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    padding: 30px 20px;
    margin-top: -150px; /* Pull content up over the image slightly for visual flow */
    background: rgba(8, 22, 15, 0.9); /* Semi-transparent background for readability */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-left: 20px;
    margin-right: 20px;
}

.page-blog-tai-hello88-fishing-game-guide__main-title {
    color: var(--gold-color);
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-blog-tai-hello88-fishing-game-guide__description {
    color: var(--text-main);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-blog-tai-hello88-fishing-game-guide__section {
    padding: 60px 0;
    background-color: var(--background-color-page);
}

.page-blog-tai-hello88-fishing-game-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-tai-hello88-fishing-game-guide__section-title {
    color: var(--gold-color);
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.page-blog-tai-hello88-fishing-game-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--button-gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-blog-tai-hello88-fishing-game-guide__text-block {
    font-size: 1.05em;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-tai-hello88-fishing-game-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-tai-hello88-fishing-game-guide__cta-buttons--center {
    margin-top: 40px;
}

.page-blog-tai-hello88-fishing-game-guide__btn-primary,
.page-blog-tai-hello88-fishing-game-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-blog-tai-hello88-fishing-game-guide__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-tai-hello88-fishing-game-guide__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-tai-hello88-fishing-game-guide__btn-secondary {
    background: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-tai-hello88-fishing-game-guide__btn-secondary:hover {
    background: var(--gold-color);
    color: var(--background-color-page);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-tai-hello88-fishing-game-guide__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-tai-hello88-fishing-game-guide__card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-blog-tai-hello88-fishing-game-guide__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-tai-hello88-fishing-game-guide__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-tai-hello88-fishing-game-guide__card-title {
    color: var(--gold-color);
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-tai-hello88-fishing-game-guide__card-text {
    color: var(--text-secondary);
    font-size: 1em;
    text-align: justify;
}

.page-blog-tai-hello88-fishing-game-guide__strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-blog-tai-hello88-fishing-game-guide__list-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-blog-tai-hello88-fishing-game-guide__list-title {
    color: var(--gold-color);
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-tai-hello88-fishing-game-guide__list-text {
    color: var(--text-secondary);
    font-size: 1em;
    text-align: justify;
}

.page-blog-tai-hello88-fishing-game-guide__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-tai-hello88-fishing-game-guide__feature-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-blog-tai-hello88-fishing-game-guide__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-tai-hello88-fishing-game-guide__feature-title {
    color: var(--gold-color);
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-tai-hello88-fishing-game-guide__feature-text {
    color: var(--text-secondary);
    font-size: 0.95em;
}

.page-blog-tai-hello88-fishing-game-guide__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-tai-hello88-fishing-game-guide__tip-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-blog-tai-hello88-fishing-game-guide__tip-title {
    color: var(--gold-color);
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.page-blog-tai-hello88-fishing-game-guide__tip-text {
    color: var(--text-secondary);
    font-size: 1em;
    text-align: justify;
}

.page-blog-tai-hello88-fishing-game-guide__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-blog-tai-hello88-fishing-game-guide__faq-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    color: var(--text-main);
}

.page-blog-tai-hello88-fishing-game-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-main);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-blog-tai-hello88-fishing-game-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-tai-hello88-fishing-game-guide__faq-question:hover {
    background-color: var(--deep-green);
}

.page-blog-tai-hello88-fishing-game-guide__faq-qtext {
    flex-grow: 1;
    color: var(--gold-color);
}

.page-blog-tai-hello88-fishing-game-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 20px;
    color: var(--gold-color);
}

.page-blog-tai-hello88-fishing-game-guide__faq-answer {
    padding: 0 30px 20px;
    color: var(--text-secondary);
    font-size: 1em;
    text-align: justify;
}

/* Details element specific styling */
.page-blog-tai-hello88-fishing-game-guide__faq-item[open] > .page-blog-tai-hello88-fishing-game-guide__faq-question {
    background-color: var(--deep-green);
}

.page-blog-tai-hello88-fishing-game-guide__conclusion-section {
    text-align: center;
}

.page-blog-tai-hello88-fishing-game-guide__conclusion-section .page-blog-tai-hello88-fishing-game-guide__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-tai-hello88-fishing-game-guide__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-blog-tai-hello88-fishing-game-guide__section-title {
        font-size: 2em;
    }
    .page-blog-tai-hello88-fishing-game-guide__hero-content {
        margin-top: -100px;
    }
}

@media (max-width: 768px) {
    .page-blog-tai-hello88-fishing-game-guide {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-tai-hello88-fishing-game-guide__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-tai-hello88-fishing-game-guide__hero-content {
        margin-top: -80px;
        padding: 20px;
    }
    .page-blog-tai-hello88-fishing-game-guide__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-blog-tai-hello88-fishing-game-guide__description {
        font-size: 1em;
    }
    .page-blog-tai-hello88-fishing-game-guide__section {
        padding: 40px 0;
    }
    .page-blog-tai-hello88-fishing-game-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-blog-tai-hello88-fishing-game-guide__content-grid,
    .page-blog-tai-hello88-fishing-game-guide__features-grid,
    .page-blog-tai-hello88-fishing-game-guide__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-tai-hello88-fishing-game-guide__card,
    .page-blog-tai-hello88-fishing-game-guide__list-item,
    .page-blog-tai-hello88-fishing-game-guide__feature-item,
    .page-blog-tai-hello88-fishing-game-guide__tip-card {
        padding: 20px;
    }
    .page-blog-tai-hello88-fishing-game-guide__card-title,
    .page-blog-tai-hello88-fishing-game-guide__list-title,
    .page-blog-tai-hello88-fishing-game-guide__feature-title,
    .page-blog-tai-hello88-fishing-game-guide__tip-title {
        font-size: 1.3em;
    }
    .page-blog-tai-hello88-fishing-game-guide__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-blog-tai-hello88-fishing-game-guide__faq-answer {
        padding: 0 20px 15px;
    }
    .page-blog-tai-hello88-fishing-game-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-tai-hello88-fishing-game-guide__btn-primary,
    .page-blog-tai-hello88-fishing-game-guide__btn-secondary {
        padding: 12px 20px;
        width: 100%; /* Ensure buttons take full width */
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-tai-hello88-fishing-game-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-tai-hello88-fishing-game-guide__section,
    .page-blog-tai-hello88-fishing-game-guide__card,
    .page-blog-tai-hello88-fishing-game-guide__container,
    .page-blog-tai-hello88-fishing-game-guide__hero-section,
    .page-blog-tai-hello88-fishing-game-guide__hero-image-wrapper,
    .page-blog-tai-hello88-fishing-game-guide__hero-content,
    .page-blog-tai-hello88-fishing-game-guide__cta-buttons,
    .page-blog-tai-hello88-fishing-game-guide__content-grid,
    .page-blog-tai-hello88-fishing-game-guide__strategy-list,
    .page-blog-tai-hello88-fishing-game-guide__features-grid,
    .page-blog-tai-hello88-fishing-game-guide__tips-grid,
    .page-blog-tai-hello88-fishing-game-guide__faq-list,
    .page-blog-tai-hello88-fishing-game-guide__faq-item,
    .page-blog-tai-hello88-fishing-game-guide__tip-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-tai-hello88-fishing-game-guide__hero-section {
        padding-top: 10px !important; /* body handles --header-offset */
    }
}