
    /* CSS cho trang nổ hũ là gì */
    .page-what-is-a-slot-machine {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;
    }

    .page-what-is-a-slot-machine__hero-section {
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: #fff;
        padding: 80px 20px; /* Base padding */
        padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 400px;
        position: relative;
        overflow: hidden;
    }

    .page-what-is-a-slot-machine__hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('[GALLERY:hero:1920x1080:slot-machine,jackpot,background,nổ hũ]');
        background-size: cover;
        background-position: center;
        opacity: 0.3;
        z-index: 0;
    }

    .page-what-is-a-slot-machine__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-what-is-a-slot-machine__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-what-is-a-slot-machine__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-what-is-a-slot-machine__anchor-link {
        color: #ffc107; /* Highlight anchor link */
        text-decoration: underline;
        font-weight: bold;
    }
    .page-what-is-a-slot-machine__anchor-link:hover {
        color: #e0a800;
    }

    .page-what-is-a-slot-machine__button {
        display: inline-block;
        background-color: #ffc107;
        color: #333;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-what-is-a-slot-machine__button:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
    }

    .page-what-is-a-slot-machine__section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #fff;
        border-bottom: 1px solid #eee;
    }

    .page-what-is-a-slot-machine__section:last-of-type {
        border-bottom: none;
    }

    .page-what-is-a-slot-machine__section-title {
        font-size: 2.5em;
        color: #007bff;
        text-align: center;
        margin-bottom: 40px;
        font-weight: 600;
    }

    .page-what-is-a-slot-machine__content-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }

    .page-what-is-a-slot-machine__text-content {
        flex: 1;
        min-width: 300px;
    }

    .page-what-is-a-slot-machine__image-container {
        flex: 1;
        min-width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%; /* Ensure container fills space */
        max-width: 100%; /* Ensure container fills space */
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-what-is-a-slot-machine__image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        display: block; /* Remove extra space below image */
    }

    .page-what-is-a-slot-machine__list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        width: 100%; /* For responsive list container */
        max-width: 100%; /* For responsive list container */
        box-sizing: border-box;
    }

    .page-what-is-a-slot-machine__list-item {
        background-color: #e9f5ff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        flex: 1;
        min-width: 280px;
        max-width: calc(33% - 20px);
        box-sizing: border-box;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-what-is-a-slot-machine__list-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .page-what-is-a-slot-machine__list-item-title {
        color: #0056b3;
        font-size: 1.3em;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .page-what-is-a-slot-machine__cta-section {
        text-align: center;
        background-color: #007bff;
        color: #fff;
        padding: 60px 20px;
    }

    .page-what-is-a-slot-machine__cta-title {
        font-size: 2.5em;
        margin-bottom: 20px;
    }

    .page-what-is-a-slot-machine__cta-description {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    /* FAQ Section Styles */
    .page-what-is-a-slot-machine__faq-section {
        background-color: #f0f8ff;
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-what-is-a-slot-machine__faq-item {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .page-what-is-a-slot-machine__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #e9f5ff;
        color: #007bff;
        font-size: 1.2em;
        font-weight: 600;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-what-is-a-slot-machine__faq-question:hover {
        background-color: #d6ebff;
    }

    .page-what-is-a-slot-machine__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #007bff;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-what-is-a-slot-machine__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        line-height: 1;
        pointer-events: none; /* Prevent toggle from blocking click */
        transition: transform 0.3s ease;
    }

    .page-what-is-a-slot-machine__faq-item.active .page-what-is-a-slot-machine__faq-toggle {
        transform: rotate(45deg);
    }

    .page-what-is-a-slot-machine__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        background-color: #fff;
        color: #555;
    }

    .page-what-is-a-slot-machine__faq-item.active .page-what-is-a-slot-machine__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important; /* Expanded padding */
        opacity: 1;
    }

    /* General paragraphs */
    .page-what-is-a-slot-machine p {
        margin-bottom: 15px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .page-what-is-a-slot-machine__hero-title {
            font-size: 3em;
        }
        .page-what-is-a-slot-machine__hero-description {
            font-size: 1.1em;
        }
        .page-what-is-a-slot-machine__section-title {
            font-size: 2em;
        }
        .page-what-is-a-slot-machine__list-item {
            max-width: calc(50% - 15px);
        }
    }

    @media (max-width: 768px) {
        .page-what-is-a-slot-machine__hero-section {
            padding: 60px 15px;
            padding-top: var(--header-offset, 200px); /* Mobile header offset */
            min-height: 350px;
        }
        .page-what-is-a-slot-machine__hero-title {
            font-size: 2.5em;
        }
        .page-what-is-a-slot-machine__hero-description {
            font-size: 1em;
        }
        .page-what-is-a-slot-machine__button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-what-is-a-slot-machine__section {
            padding: 40px 15px;
        }
        .page-what-is-a-slot-machine__section-title {
            font-size: 1.8em;
        }
        .page-what-is-a-slot-machine__content-wrapper {
            flex-direction: column;
            gap: 20px;
        }
        .page-what-is-a-slot-machine__image-container,
        .page-what-is-a-slot-machine__text-content {
            min-width: unset;
            width: 100%;
        }
        .page-what-is-a-slot-machine__image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-what-is-a-slot-machine__image-container {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
        .page-what-is-a-slot-machine__list {
            flex-direction: column; /* Stack list items vertically */
            gap: 15px;
            padding: 0 !important; /* Ensure no extra padding on ul/ol */
            margin-left: 0 !important;
            margin-right: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
        .page-what-is-a-slot-machine__list-item {
            max-width: 100% !important; /* Ensure list item takes full width */
            width: 100% !important;
            box-sizing: border-box !important;
            padding: 15px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important; /* Ensure long words break */
            overflow-wrap: break-word !important;
        }
        .page-what-is-a-slot-machine__list-item-title {
            font-size: 1.1em;
        }
        .page-what-is-a-slot-machine__faq-question,
        .page-what-is-a-slot-machine__faq-answer {
            padding: 15px 20px;
        }
        .page-what-is-a-slot-machine__faq-question h3 {
            font-size: 1.1em;
        }
        .page-what-is-a-slot-machine__faq-item.active .page-what-is-a-slot-machine__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-what-is-a-slot-machine__hero-title {
            font-size: 2em;
        }
        .page-what-is-a-slot-machine__section-title {
            font-size: 1.6em;
        }
    }
  