
    .page-f88vip__wrapper {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.page-f88vip__hero-section {
    position: relative;
    padding: 10px 20px 60px; /* Adjusted padding-top as per instruction */
    text-align: center;
    background: linear-gradient(135deg, #333, #1a1a1a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    color: #fff;
}

.page-f88vip__hero-content {
    max-width: 900px;
    margin-bottom: 30px;
}

.page-f88vip__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #ffcc00; /* Gold/Yellow for branding */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-f88vip__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-f88vip__text-highlight {
    color: #ffcc00;
    font-weight: bold;
}

.page-f88vip__hero-button,
.page-f88vip__cta-button {
    display: inline-block;
    background-color: #ffcc00;
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-f88vip__hero-button:hover,
.page-f88vip__cta-button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-f88vip__hero-image-container {
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

.page-f88vip__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-f88vip__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-f88vip__floating-button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.page-f88vip__floating-button--register {
    background-color: #ffcc00;
    color: #1a1a1a;
}

.page-f88vip__floating-button--login {
    background-color: #007bff;
    color: white;
}

.page-f88vip__floating-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-f88vip__section-title {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 20px;
    color: #ffcc00;
    padding-top: 40px;
}

.page-f88vip__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-f88vip__about-section,
.page-f88vip__games-section,
.page-f88vip__promotions-section,
.page-f88vip__providers-section,
.page-f88vip__payment-section,
.page-f88vip__faq-section,
.page-f88vip__cta-section {
    padding: 60px 20px;
    background-color: #222;
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-f88vip__about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-f88vip__feature-item {
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    box-sizing: border-box; /* Required for list-like items */
}

.page-f88vip__feature-item:hover {
    transform: translateY(-5px);
}

.page-f88vip__feature-icon {
    width: 200px; /* Minimum size */
    height: auto;
    margin-bottom: 15px;
    max-width: 100%;
    border-radius: 5px;
}

.page-f88vip__feature-title {
    font-size: 1.5em;
    color: #ffcc00;
    margin-bottom: 10px;
}

.page-f88vip__feature-text {
    font-size: 1em;
    color: #ccc;
}

.page-f88vip__game-categories,
.page-f88vip__promotion-list,
.page-f88vip__provider-list,
.page-f88vip__payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-f88vip__game-card,
.page-f88vip__promotion-item,
.page-f88vip__provider-item,
.page-f88vip__payment-item {
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    box-sizing: border-box; /* Required for list-like items */
}

.page-f88vip__game-card:hover,
.page-f88vip__promotion-item:hover,
.page-f88vip__provider-item:hover,
.page-f88vip__payment-item:hover {
    transform: translateY(-5px);
}

.page-f88vip__game-image,
.page-f88vip__promotion-image,
.page-f88vip__provider-logo,
.page-f88vip__payment-logo {
    width: 100%;
    height: 200px; /* Consistent height for visual appeal */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #444;
}

.page-f88vip__provider-logo,
.page-f88vip__payment-logo {
    height: 100px; /* Smaller height for logos */
    object-fit: contain; /* Contain for logos */
    padding: 10px 0;
}

.page-f88vip__game-title,
.page-f88vip__promotion-title {
    font-size: 1.4em;
    color: #ffcc00;
    margin: 15px 10px 10px;
}

.page-f88vip__game-text,
.page-f88vip__promotion-text {
    font-size: 0.95em;
    color: #ccc;
    padding: 0 15px 15px;
}

.page-f88vip__provider-name,
.page-f88vip__payment-name {
    font-size: 1.1em;
    color: #e0e0e0;
    padding: 10px;
    background-color: #444;
    border-top: 1px solid #555;
}

/* FAQ Section */
.page-f88vip__faq-container {
    max-width: 800px;
    margin: 40px auto;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    padding: 0 20px;
}

.page-f88vip__faq-item {
    border-bottom: 1px solid #444;
}

.page-f88vip__faq-item:last-child {
    border-bottom: none;
}

.page-f88vip__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-f88vip__faq-question:hover {
    background-color: #444;
}

.page-f88vip__faq-question-text {
    font-size: 1.2em;
    color: #ffcc00;
    margin: 0;
    pointer-events: none; /* Crucial for click event on parent */
}

.page-f88vip__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffcc00;
    transition: transform 0.3s ease;
    pointer-events: none; /* Crucial for click event on parent */
}

.page-f88vip__faq-item.active .page-f88vip__faq-toggle {
    transform: rotate(45deg);
}

.page-f88vip__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    color: #ccc;
}

.page-f88vip__faq-item.active .page-f88vip__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 15px !important;
    opacity: 1;
}

.page-f88vip__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
}

/* Call to Action Section */
.page-f88vip__cta-section {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #333);
    padding: 80px 20px;
    border-radius: 0; /* No border-radius for full width */
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-f88vip__hero-title {
        font-size: 2.4em;
    }
    .page-f88vip__section-title {
        font-size: 1.8em;
    }
    .page-f88vip__hero-image-container {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .page-f88vip__hero-section {
        padding: 10px 15px 40px;
    }
    .page-f88vip__hero-title {
        font-size: 2em;
    }
    .page-f88vip__hero-description {
        font-size: 1.1em;
    }
    .page-f88vip__section-title {
        font-size: 1.6em;
    }
    .page-f88vip__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-f88vip__about-section,
    .page-f88vip__games-section,
    .page-f88vip__promotions-section,
    .page-f88vip__providers-section,
    .page-f88vip__payment-section,
    .page-f88vip__faq-section,
    .page-f88vip__cta-section {
        padding: 40px 15px;
    }

    .page-f88vip__about-features,
    .page-f88vip__game-categories,
    .page-f88vip__promotion-list,
    .page-f88vip__provider-list,
    .page-f88vip__payment-methods {
        grid-template-columns: 1fr; /* Single column for lists */
        gap: 20px;
        margin-top: 30px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .page-f88vip__feature-item,
    .page-f88vip__game-card,
    .page-f88vip__promotion-item,
    .page-f88vip__provider-item,
    .page-f88vip__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .page-f88vip__game-image,
    .page-f88vip__promotion-image,
    .page-f88vip__provider-logo,
    .page-f88vip__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-f88vip__faq-container {
        padding: 0 10px;
    }
    .page-f88vip__faq-question {
        padding: 15px 10px;
    }
    .page-f88vip__faq-question-text {
        font-size: 1.1em;
    }
    .page-f88vip__faq-answer {
        padding: 15px 10px;
    }

    .page-f88vip__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        justify-content: space-around;
    }
    .page-f88vip__floating-button {
        flex: 1;
        margin: 0 5px;
    }
}

@media (max-width: 480px) {
    .page-f88vip__hero-title {
        font-size: 1.8em;
    }
    .page-f88vip__hero-description {
        font-size: 1em;
    }
    .page-f88vip__hero-button,
    .page-f88vip__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-f88vip__section-title {
        font-size: 1.4em;
    }
    .page-f88vip__floating-buttons {
        bottom: 15px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
    }
    .page-f88vip__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}
  