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

    /* Section common styles */
    .page-abc88-casino__hero-section,
    .page-abc88-casino__game-categories,
    .page-abc88-casino__promotions-section,
    .page-abc88-casino__why-choose-section,
    .page-abc88-casino__faq-section,
    .page-abc88-casino__cta-section {
        padding: 40px 20px;
        margin: 0 auto;
        max-width: 1200px;
        box-sizing: border-box;
    }

    /* Fixed Navbar Spacing for the first section */
    .page-abc88-casino__hero-section {
        padding-top: 10px; /* Small decorative top padding, relies on body padding-top for header offset */
    }

    /* Section Titles */
    .page-abc88-casino__section-title {
        font-size: 2.2rem;
        color: #ffd700; /* Gold accent */
        text-align: center;
        margin-bottom: 20px;
        font-weight: bold;
        line-height: 1.2;
    }

    .page-abc88-casino__section-description {
        font-size: 1.1rem;
        color: #cccccc;
        text-align: center;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero Section */
    .page-abc88-casino__hero-section {
        position: relative;
        height: 60vh; /* Responsive height */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #ffffff;
        background-image: url('[GALLERY:hero:1920x1080:casino,luxury,gaming]');
        background-size: cover;
        background-position: center;
        margin-bottom: 40px;
    }

    .page-abc88-casino__hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
    }

    .page-abc88-casino__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        padding: 20px;
    }

    .page-abc88-casino__hero-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: #ffd700;
        font-weight: bold;
    }

    .page-abc88-casino__hero-description {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .page-abc88-casino__hero-cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    }

    .page-abc88-casino__btn-primary,
    .page-abc88-casino__btn-secondary,
    .page-abc88-casino__cta-button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1rem;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-sizing: border-box;
        text-align: center;
    }

    .page-abc88-casino__btn-primary,
    .page-abc88-casino__cta-button {
        background-color: #ff6f00; /* Orange accent */
        color: #ffffff;
        border: 2px solid #ff6f00;
    }

    .page-abc88-casino__btn-primary:hover,
    .page-abc88-casino__cta-button:hover {
        background-color: #e66300;
        transform: translateY(-2px);
    }

    .page-abc88-casino__btn-secondary {
        background-color: transparent;
        color: #ffd700;
        border: 2px solid #ffd700;
    }

    .page-abc88-casino__btn-secondary:hover {
        background-color: rgba(255, 215, 0, 0.1);
        transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-abc88-casino__floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        background-color: rgba(0, 0, 0, 0.9);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        box-sizing: border-box;
    }

    .page-abc88-casino__floating-btn {
        flex: 1;
        text-align: center;
        padding: 12px 0;
        margin: 0 5px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1rem;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-abc88-casino__floating-btn--register {
        background-color: #ff6f00;
        color: #ffffff;
    }

    .page-abc88-casino__floating-btn--register:hover {
        background-color: #e66300;
    }

    .page-abc88-casino__floating-btn--login {
        background-color: #ffd700;
        color: #1a1a1a;
    }

    .page-abc88-casino__floating-btn--login:hover {
        background-color: #e0c200;
    }

    /* Game Categories */
    .page-abc88-casino__game-categories {
        background-color: #222222;
        padding-bottom: 60px;
    }

    .page-abc88-casino__categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-abc88-casino__category-card {
        background-color: #2c2c2c;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-abc88-casino__category-card:hover {
        transform: translateY(-5px);
    }

    .page-abc88-casino__category-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-abc88-casino__category-title {
        font-size: 1.5rem;
        color: #ffd700;
        margin: 20px 15px 10px;
    }

    .page-abc88-casino__category-text {
        font-size: 0.95rem;
        color: #cccccc;
        padding: 0 15px 20px;
    }

    /* Promotions Section */
    .page-abc88-casino__promotions-section {
        background-color: #1a1a1a;
    }

    .page-abc88-casino__promo-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .page-abc88-casino__promo-item {
        background-color: #2c2c2c;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

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

    .page-abc88-casino__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-abc88-casino__promo-title {
        font-size: 1.4rem;
        color: #ffd700;
        margin: 20px 15px 10px;
    }

    .page-abc88-casino__promo-text {
        font-size: 0.95rem;
        color: #cccccc;
        padding: 0 15px 20px;
    }

    /* Why Choose Section */
    .page-abc88-casino__why-choose-section {
        background-color: #222222;
        padding-bottom: 60px;
    }

    .page-abc88-casino__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .page-abc88-casino__feature-item {
        background-color: #2c2c2c;
        border-radius: 10px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

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

    .page-abc88-casino__feature-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-abc88-casino__feature-title {
        font-size: 1.3rem;
        color: #ff6f00;
        margin-bottom: 10px;
    }

    .page-abc88-casino__feature-description {
        font-size: 0.9rem;
        color: #cccccc;
    }

    /* FAQ Section */
    .page-abc88-casino__faq-section {
        background-color: #1a1a1a;
        padding-bottom: 80px; /* More space for floating buttons */
    }

    .page-abc88-casino__faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-abc88-casino__faq-item {
        background-color: #2c2c2c;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-abc88-casino__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        cursor: pointer;
        user-select: none;
        background-color: #3a3a3a;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-abc88-casino__faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-abc88-casino__faq-q-text {
        font-size: 1.1rem;
        color: #ffd700;
        margin: 0;
        pointer-events: none; /* Prevents text from interfering with click event on parent */
    }

    .page-abc88-casino__faq-toggle {
        font-size: 1.5rem;
        color: #ffd700;
        font-weight: bold;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevents icon from interfering with click event on parent */
    }

    .page-abc88-casino__faq-item.active .page-abc88-casino__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-abc88-casino__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #cccccc;
        box-sizing: border-box;
    }

    .page-abc88-casino__faq-item.active .page-abc88-casino__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px !important;
        opacity: 1;
    }

    .page-abc88-casino__faq-answer p {
        margin: 0;
        font-size: 1rem;
        word-wrap: break-word; /* Ensure long text wraps */
        overflow-wrap: break-word;
    }

    /* Call to Action Section */
    .page-abc88-casino__cta-section {
        text-align: center;
        background-color: #222222;
        padding-bottom: 80px; /* More space for floating buttons */
    }

    .page-abc88-casino__cta-button {
        margin-top: 30px;
        padding: 18px 40px;
        font-size: 1.2rem;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-abc88-casino__hero-section {
            height: 50vh;
        }
        .page-abc88-casino__hero-title {
            font-size: 2.2rem;
        }
        .page-abc88-casino__hero-description {
            font-size: 1.1rem;
        }
        .page-abc88-casino__hero-cta-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-abc88-casino__btn-primary,
        .page-abc88-casino__btn-secondary {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }
        .page-abc88-casino__section-title {
            font-size: 1.8rem;
        }
        .page-abc88-casino__section-description {
            font-size: 1rem;
            margin-bottom: 30px;
        }
        .page-abc88-casino__floating-buttons {
            padding: 8px 0;
        }
        .page-abc88-casino__floating-btn {
            font-size: 0.9rem;
            padding: 10px 0;
        }

        /* List item responsiveness for categories, promotions, features */
        .page-abc88-casino__categories-grid,
        .page-abc88-casino__promo-list,
        .page-abc88-casino__features-grid {
            grid-template-columns: 1fr; /* Stack items vertically */
            gap: 20px;
        }

        .page-abc88-casino__category-card,
        .page-abc88-casino__promo-item,
        .page-abc88-casino__feature-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important; /* Adjust padding for smaller screens */
        }

        .page-abc88-casino__category-image,
        .page-abc88-casino__promo-image,
        .page-abc88-casino__feature-icon {
            max-width: 100% !important;
            height: auto !important; /* Allow height to adjust */
            box-sizing: border-box !important;
        }
        .page-abc88-casino__category-image {
            height: 180px; /* Slightly smaller height for category images */
        }
        .page-abc88-casino__promo-image {
            height: 200px; /* Slightly smaller height for promo images */
        }
        .page-abc88-casino__feature-icon {
            width: 80px;
            height: 80px;
        }

        /* FAQ specific mobile styles */
        .page-abc88-casino__faq-question {
            padding: 15px;
        }
        .page-abc88-casino__faq-q-text {
            font-size: 1rem;
        }
        .page-abc88-casino__faq-answer {
            padding: 0 15px;
        }
        .page-abc88-casino__faq-item.active .page-abc88-casino__faq-answer {
            padding: 15px !important;
        }
        .page-abc88-casino__faq-answer p {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .page-abc88-casino__hero-title {
            font-size: 1.8rem;
        }
        .page-abc88-casino__hero-description {
            font-size: 1rem;
        }
        .page-abc88-casino__btn-primary,
        .page-abc88-casino__btn-secondary {
            padding: 12px 25px;
            font-size: 1rem;
        }
        .page-abc88-casino__section-title {
            font-size: 1.6rem;
        }
        .page-abc88-casino__section-description {
            font-size: 0.95rem;
        }
        .page-abc88-casino__floating-btn {
            font-size: 0.85rem;
            padding: 8px 0;
        }
        .page-abc88-casino__category-title,
        .page-abc88-casino__promo-title {
            font-size: 1.3rem;
        }
        .page-abc88-casino__category-text,
        .page-abc88-casino__promo-text,
        .page-abc88-casino__feature-description {
            font-size: 0.9rem;
        }
        .page-abc88-casino__faq-q-text {
            font-size: 0.95rem;
        }
        .page-abc88-casino__faq-answer p {
            font-size: 0.9rem;
        }
    }
  