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

/* Global styles for this page to ensure text color contrasts with body background */
/* Assuming body background is --background-color (#08160F) which is dark */
.page-blog-how-to-find-club888-latest-link {
    color: var(--text-main); /* Light text for dark background */
    background-color: var(--background-color); /* Ensure consistency if main is not enough */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-how-to-find-club888-latest-link__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-find-club888-latest-link__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Ensure image is above content for DOM order */
    align-items: center;
    text-align: center;
    padding-bottom: 60px; /* Space below content, not using padding-top for header offset */
    overflow: hidden; /* Prevent content overflow */
}

.page-blog-how-to-find-club888-latest-link__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
}

.page-blog-how-to-find-club888-latest-link__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-how-to-find-club888-latest-link__hero-content {
    position: relative; /* Relative to hero section, not absolute over image */
    z-index: 10;
    max-width: 900px;
    margin-top: 40px; /* Space between image and content */
    padding: 0 20px;
}

.page-blog-how-to-find-club888-latest-link__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    color: var(--gold-color); /* Gold color for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-blog-how-to-find-club888-latest-link__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-blog-how-to-find-club888-latest-link__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-blog-how-to-find-club888-latest-link__cta-buttons--center {
    justify-content: center;
}

.page-blog-how-to-find-club888-latest-link__btn-primary,
.page-blog-how-to-find-club888-latest-link__btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
    box-sizing: border-box; /* Include padding in width calculation */
    max-width: 100%; /* Ensure button doesn't overflow */
}

.page-blog-how-to-find-club888-latest-link__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main); /* White text for dark button */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-find-club888-latest-link__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-how-to-find-club888-latest-link__btn-secondary {
    background: transparent;
    color: var(--primary-color); /* Primary color text for transparent button */
    border: 2px solid var(--primary-color);
}

.page-blog-how-to-find-club888-latest-link__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-main);
}

/* Content Sections */
.page-blog-how-to-find-club888-latest-link__content-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

.page-blog-how-to-find-club888-latest-link__dark-bg {
    background-color: var(--card-bg); /* Use card background for contrast sections */
    color: var(--text-main);
}

.page-blog-how-to-find-club888-latest-link__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-blog-how-to-find-club888-latest-link__section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-find-club888-latest-link__image-wrapper {
    margin: 40px auto;
    max-width: 1000px; /* Max width for content images */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-find-club888-latest-link__content-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-how-to-find-club888-latest-link__article-block {
    margin-top: 30px;
}

.page-blog-how-to-find-club888-latest-link__article-subtitle {
    font-size: 1.6rem;
    color: var(--gold-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-how-to-find-club888-latest-link__content-section p,
.page-blog-how-to-find-club888-latest-link__content-section li {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.page-blog-how-to-find-club888-latest-link__numbered-list,
.page-blog-how-to-find-club888-latest-link__benefits-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.page-blog-how-to-find-club888-latest-link__list-item,
.page-blog-how-to-find-club888-latest-link__benefits-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: var(--text-secondary);
}

.page-blog-how-to-find-club888-latest-link__list-item:last-child,
.page-blog-how-to-find-club888-latest-link__benefits-item:last-child {
    margin-bottom: 0;
}

.page-blog-how-to-find-club888-latest-link__list-item .page-blog-how-to-find-club888-latest-link__article-subtitle,
.page-blog-how-to-find-club888-latest-link__benefits-item .page-blog-how-to-find-club888-latest-link__article-subtitle {
    color: var(--gold-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-blog-how-to-find-club888-latest-link__inline-code {
    background-color: rgba(var(--gold-color), 0.1);
    color: var(--gold-color);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
}

/* FAQ Section */
.page-blog-how-to-find-club888-latest-link__faq-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

.page-blog-how-to-find-club888-latest-link__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-blog-how-to-find-club888-latest-link__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-blog-how-to-find-club888-latest-link__faq-item summary {
    list-style: none; /* Hide default triangle */
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--text-main);
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.page-blog-how-to-find-club888-latest-link__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-how-to-find-club888-latest-link__faq-item summary:hover {
    background-color: rgba(var(--primary-color), 0.1);
}

.page-blog-how-to-find-club888-latest-link__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
    color: var(--primary-color);
}

.page-blog-how-to-find-club888-latest-link__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--gold-color);
}

.page-blog-how-to-find-club888-latest-link__faq-answer {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.page-blog-how-to-find-club888-latest-link__faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-blog-how-to-find-club888-latest-link__conclusion-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--deep-green-color); /* Different background for conclusion */
    color: var(--text-main);
}

.page-blog-how-to-find-club888-latest-link__conclusion-section .page-blog-how-to-find-club888-latest-link__section-title {
    color: var(--gold-color);
}

.page-blog-how-to-find-club888-latest-link__conclusion-section .page-blog-how-to-find-club888-latest-link__section-description {
    color: var(--text-secondary);
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-how-to-find-club888-latest-link__hero-content {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-find-club888-latest-link__hero-section {
        padding-bottom: 40px;
    }

    .page-blog-how-to-find-club888-latest-link__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-top: 20px;
    }

    .page-blog-how-to-find-club888-latest-link__description {
        font-size: 1rem;
    }

    .page-blog-how-to-find-club888-latest-link__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-how-to-find-club888-latest-link__btn-primary,
    .page-blog-how-to-find-club888-latest-link__btn-secondary {
        width: 100% !important; /* Force full width on mobile */
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-blog-how-to-find-club888-latest-link__content-section,
    .page-blog-how-to-find-club888-latest-link__faq-section,
    .page-blog-how-to-find-club888-latest-link__conclusion-section {
        padding: 40px 0;
    }

    .page-blog-how-to-find-club888-latest-link__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 20px;
    }

    .page-blog-how-to-find-club888-latest-link__section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .page-blog-how-to-find-club888-latest-link__article-subtitle {
        font-size: 1.4rem;
        margin-top: 20px;
    }

    /* Mobile image responsive rules */
    .page-blog-how-to-find-club888-latest-link img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-how-to-find-club888-latest-link__hero-image-wrapper,
    .page-blog-how-to-find-club888-latest-link__image-wrapper,
    .page-blog-how-to-find-club888-latest-link__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important;
    }

    /* FAQ mobile adjustments */
    .page-blog-how-to-find-club888-latest-link__faq-item summary {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-how-to-find-club888-latest-link__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-blog-how-to-find-club888-latest-link__main-title {
        font-size: clamp(1.8rem, 10vw, 2.2rem);
    }
    .page-blog-how-to-find-club888-latest-link__section-title {
        font-size: clamp(1.6rem, 8vw, 2rem);
    }
    .page-blog-how-to-find-club888-latest-link__article-subtitle {
        font-size: 1.2rem;
    }
}