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

/* Assume body background is dark from shared.css, so text color will be light */
.page-blog-how-to-choose-best-888bet-game {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Light text for dark background */
    background-color: var(--background); /* Dark background */
    line-height: 1.6;
    padding-top: 0; /* body handles padding-top: var(--header-offset) */
}

.page-blog-how-to-choose-best-888bet-game__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    background-color: var(--background);
    overflow: hidden;
}

.page-blog-how-to-choose-best-888bet-game__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.page-blog-how-to-choose-best-888bet-game__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-how-to-choose-best-888bet-game__hero-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding: 30px 20px;
    margin-top: -80px; /* Overlap slightly for visual effect, but not covering the image with text */
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.page-blog-how-to-choose-best-888bet-game__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gold-color);
    margin-bottom: 20px;
    max-width: 100%;
}

.page-blog-how-to-choose-best-888bet-game__hero-description {
    font-size: 1.15em;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-blog-how-to-choose-best-888bet-game__section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-blog-how-to-choose-best-888bet-game__content-area {
    background-color: var(--background);
    color: var(--text-main);
}

.page-blog-how-to-choose-best-888bet-game__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-blog-how-to-choose-best-888bet-game__sub-title {
    font-size: 1.8em;
    color: var(--gold-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-how-to-choose-best-888bet-game__section-description {
    font-size: 1.1em;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
}

.page-blog-how-to-choose-best-888bet-game__dark-section {
    background-color: var(--card-bg); /* Darker background for contrast */
    color: var(--text-main);
}

.page-blog-how-to-choose-best-888bet-game__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-choose-best-888bet-game__card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-choose-best-888bet-game__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-best-888bet-game__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 100%;
    display: block;
}

.page-blog-how-to-choose-best-888bet-game__card-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-how-to-choose-best-888bet-game__card-text {
    color: var(--text-secondary);
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-how-to-choose-best-888bet-game__btn-primary {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-blog-how-to-choose-best-888bet-game__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
}

.page-blog-how-to-choose-best-888bet-game__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    cursor: pointer;
}

.page-blog-how-to-choose-best-888bet-game__btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-blog-how-to-choose-best-888bet-game__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-choose-best-888bet-game__light-bg {
    background-color: #1a362a; /* Slightly lighter dark green for contrast */
    color: var(--text-main);
    border: 1px solid var(--divider-color);
}

.page-blog-how-to-choose-best-888bet-game__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-blog-how-to-choose-best-888bet-game__faq-section {
    background-color: var(--background);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-how-to-choose-best-888bet-game__faq-list {
    max-width: 900px;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-blog-how-to-choose-best-888bet-game__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-how-to-choose-best-888bet-game__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    color: var(--text-main);
    font-weight: bold;
    font-size: 1.1em;
    background-color: var(--card-bg);
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-blog-how-to-choose-best-888bet-game__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-choose-best-888bet-game__faq-question:hover {
    background-color: rgba(var(--primary-color), 0.1);
}

.page-blog-how-to-choose-best-888bet-game__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--primary-color);
    margin-left: 15px;
}

.page-blog-how-to-choose-best-888bet-game__faq-answer {
    padding: 0 20px 20px 20px;
    color: var(--text-secondary);
    font-size: 1em;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-how-to-choose-best-888bet-game__faq-item[open] .page-blog-how-to-choose-best-888bet-game__faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 0 20px 20px 20px;
}

.page-blog-how-to-choose-best-888bet-game__faq-item[open] .page-blog-how-to-choose-best-888bet-game__faq-question .page-blog-how-to-choose-best-888bet-game__faq-toggle {
    content: '−';
}

.page-blog-how-to-choose-best-888bet-game__faq-answer p {
    margin-bottom: 15px;
}

.page-blog-how-to-choose-best-888bet-game__faq-btn {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-blog-how-to-choose-best-888bet-game__faq-btn:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-how-to-choose-best-888bet-game__faq-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-top: 30px;
}

.page-blog-how-to-choose-best-888bet-game__conclusion-section {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--deep-green);
    color: var(--text-main);
}

.page-blog-how-to-choose-best-888bet-game__conclusion-text {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-how-to-choose-best-888bet-game__hero-content {
        margin-top: -60px;
    }
    .page-blog-how-to-choose-best-888bet-game__section-title {
        font-size: 2em;
    }
    .page-blog-how-to-choose-best-888bet-game__sub-title {
        font-size: 1.6em;
    }
    .page-blog-how-to-choose-best-888bet-game__card-title {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-choose-best-888bet-game__hero-content {
        margin-top: -40px;
        padding: 20px;
    }
    .page-blog-how-to-choose-best-888bet-game__main-title {
        font-size: clamp(2rem, 5vw, 2.5rem); /* Using clamp for responsive H1 */
        line-height: 1.3;
    }
    .page-blog-how-to-choose-best-888bet-game__hero-description {
        font-size: 1em;
    }
    .page-blog-how-to-choose-best-888bet-game__section-wrapper,
    .page-blog-how-to-choose-best-888bet-game__faq-section,
    .page-blog-how-to-choose-best-888bet-game__conclusion-section {
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-how-to-choose-best-888bet-game__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-blog-how-to-choose-best-888bet-game__sub-title {
        font-size: 1.4em;
    }
    .page-blog-how-to-choose-best-888bet-game__game-categories,
    .page-blog-how-to-choose-best-888bet-game__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-how-to-choose-best-888bet-game__card-image,
    .page-blog-how-to-choose-best-888bet-game__faq-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-how-to-choose-best-888bet-game__btn-primary,
    .page-blog-how-to-choose-best-888bet-game__btn-secondary,
    .page-blog-how-to-choose-best-888bet-game__faq-btn {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-how-to-choose-best-888bet-game__hero-section {
        padding-top: 10px !important; /* body handles --header-offset */
    }
    .page-blog-how-to-choose-best-888bet-game__faq-list {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-blog-how-to-choose-best-888bet-game__hero-content {
        margin-top: -20px;
    }
    .page-blog-how-to-choose-best-888bet-game__main-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    .page-blog-how-to-choose-best-888bet-game__hero-description {
        font-size: 0.9em;
    }
    .page-blog-how-to-choose-best-888bet-game__section-title {
        font-size: 1.5em;
    }
    .page-blog-how-to-choose-best-888bet-game__sub-title {
        font-size: 1.2em;
    }
}