/* style/resources-hi88-vip-guide.css */
.page-resources-hi88-vip-guide {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for readability on dark background */
    background-color: #1A202C; /* Dark background */
}

.page-resources-hi88-vip-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-hi88-vip-guide__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a414e 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-hi88-vip-guide__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric_pattern,dark,gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-hi88-vip-guide__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-resources-hi88-vip-guide__hero-title .highlight {
    color: #FFD700;
}

.page-resources-hi88-vip-guide__hero-description {
    font-size: 1.2em;
    color: #B0B0B0;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.page-resources-hi88-vip-guide__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-resources-hi88-vip-guide__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-resources-hi88-vip-guide__button.primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C;
}

.page-resources-hi88-vip-guide__button.primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-hi88-vip-guide__button.secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-hi88-vip-guide__button.secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-hi88-vip-guide__button.large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-resources-hi88-vip-guide__button.small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-resources-hi88-vip-guide__content-section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-resources-hi88-vip-guide__article-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.page-resources-hi88-vip-guide__table-of-contents {
    flex: 0 0 280px;
    background-color: #2A303C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 30px; /* Adjust based on header height */
}

.page-resources-hi88-vip-guide__toc-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-resources-hi88-vip-guide__table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-resources-hi88-vip-guide__table-of-contents li {
    margin-bottom: 15px;
}

.page-resources-hi88-vip-guide__table-of-contents a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.page-resources-hi88-vip-guide__table-of-contents a:hover,
.page-resources-hi88-vip-guide__table-of-contents a.active {
    color: #FFD700;
    text-decoration: underline;
}

.page-resources-hi88-vip-guide__article-content {
    flex: 1;
    max-width: 800px; /* Optimal reading width */
    line-height: 1.8;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-resources-hi88-vip-guide__article-content h2 {
    font-size: 2.2em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-resources-hi88-vip-guide__article-content h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-hi88-vip-guide__article-content p {
    margin-bottom: 20px;
}

.page-resources-hi88-vip-guide__article-content ul,
.page-resources-hi88-vip-guide__article-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-resources-hi88-vip-guide__article-content li {
    margin-bottom: 10px;
    color: #C0C0C0;
}

.page-resources-hi88-vip-guide__article-content strong {
    color: #FFD700;
}

.page-resources-hi88-vip-guide__link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-hi88-vip-guide__link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-resources-hi88-vip-guide__image.article-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-hi88-vip-guide__note {
    background-color: #2A303C;
    border-left: 5px solid #FFD700;
    padding: 15px 20px;
    margin: 30px 0;
    border-radius: 5px;
    color: #E0E0E0;
}

.page-resources-hi88-vip-guide__cta-block {
    background-color: #2A303C;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-hi88-vip-guide__cta-block p {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-hi88-vip-guide__cta-block.final-cta {
    margin-top: 60px;
    padding: 50px;
}

.page-resources-hi88-vip-guide__faq-item {
    background-color: #2A303C;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-hi88-vip-guide__faq-question {
    color: #FFD700;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-hi88-vip-guide__faq-answer {
    color: #C0C0C0;
}

.page-resources-hi88-vip-guide__related-resources {
    background-color: #2A303C;
    padding: 60px 0;
    text-align: center;
}

.page-resources-hi88-vip-guide__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-resources-hi88-vip-guide__resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-resources-hi88-vip-guide__resource-card {
    background-color: #1A202C;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-resources-hi88-vip-guide__resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
}

.page-resources-hi88-vip-guide__resource-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-hi88-vip-guide__card-title {
    font-size: 1.4em;
    color: #FFD700;
    padding: 15px 20px 10px;
    margin: 0;
}

.page-resources-hi88-vip-guide__card-title a {
    color: inherit;
    text-decoration: none;
}

.page-resources-hi88-vip-guide__card-title a:hover {
    text-decoration: underline;
}

.page-resources-hi88-vip-guide__card-description {
    color: #B0B0B0;
    padding: 0 20px 15px;
    font-size: 0.95em;
    flex-grow: 1;
}

.page-resources-hi88-vip-guide__resource-card .page-resources-hi88-vip-guide__button {
    margin: 0 20px 20px;
    align-self: flex-start;
}

.page-resources-hi88-vip-guide__return-link {
    margin-top: 50px;
    font-size: 1.1em;
}

.page-resources-hi88-vip-guide__return-link a {
    color: #FFD700;
    text-decoration: none;
}

.page-resources-hi88-vip-guide__return-link a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-hi88-vip-guide__article-wrapper {
        flex-direction: column;
    }

    .page-resources-hi88-vip-guide__table-of-contents {
        position: static;
        width: 100%;
        margin-bottom: 40px;
    }

    .page-resources-hi88-vip-guide__article-content {
        max-width: 100%;
    }

    .page-resources-hi88-vip-guide__hero-title {
        font-size: 2.8em;
    }

    .page-resources-hi88-vip-guide__hero-description {
        font-size: 1.1em;
    }

    .page-resources-hi88-vip-guide__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-hi88-vip-guide__hero {
        padding: 80px 0;
    }

    .page-resources-hi88-vip-guide__hero-title {
        font-size: 2.2em;
    }

    .page-resources-hi88-vip-guide__hero-description {
        font-size: 1em;
    }

    .page-resources-hi88-vip-guide__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-hi88-vip-guide__button {
        width: 80%;
        margin: 0 auto;
    }

    .page-resources-hi88-vip-guide__article-content h2 {
        font-size: 1.8em;
    }

    .page-resources-hi88-vip-guide__article-content h3 {
        font-size: 1.4em;
    }

    .page-resources-hi88-vip-guide__article-content {
        font-size: 1em;
    }

    .page-resources-hi88-vip-guide__section-title {
        font-size: 1.8em;
    }

    .page-resources-hi88-vip-guide__resource-grid {
        grid-template-columns: 1fr;
    }
}