
    :root {
        --primary-color: #e0b000; /* Gold/Yellow for luxury */
        --secondary-color: #2c3e50; /* Dark blue/grey for contrast */
        --accent-color: #f39c12; /* Orange for highlights */
        --text-light: #ecf0f1; /* Light grey text */
        --text-dark: #34495e; /* Dark blue text */
        --background-dark: #1a1a1a; /* Dark background */
        --background-light: #f5f5f5; /* Light background */
        --border-color: #333;
    }

    /* General styling for the page */
    .page-33-king {
        font-family: 'Arial', sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        background-color: var(--background-light);
        padding-top: 10px; /* Small top padding, main offset is on body */
    }

    .page-33-king__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-33-king__section {
        padding: 60px 0;
        text-align: center;
        position: relative;
    }

    .page-33-king__section--dark {
        background-color: var(--background-dark);
        color: var(--text-light);
    }

    .page-33-king__section-title {
        font-size: 2.8em;
        margin-bottom: 30px;
        color: var(--secondary-color);
        position: relative;
        padding-bottom: 15px;
    }

    .page-33-king__section-title--light {
        color: var(--primary-color);
    }

    .page-33-king__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

    /* Hero Section */
    .page-33-king__hero-section {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('[GALLERY:hero:1920x1080:online_casino,vietnam_betting,mobile_gaming]') center center / cover no-repeat;
        color: var(--text-light);
        padding: 100px 0;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
    }

    .page-33-king__hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-33-king__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        color: var(--primary-color);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-33-king__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        color: var(--text-light);
        opacity: 0.9;
    }

    .page-33-king__promo-text {
        font-size: 1.2em;
        color: var(--accent-color);
        font-weight: bold;
        margin-top: 20px;
    }

    /* Floating Buttons */
    .page-33-king__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        width: 90%;
        max-width: 350px;
        justify-content: center;
    }

    .page-33-king__floating-button {
        background-color: var(--primary-color);
        color: var(--background-dark);
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: bold;
        font-size: 1.1em;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
        display: inline-block;
        width: 100%;
        text-align: center;
        cursor: pointer; /* Indicate it's clickable, even without a link */
        border: none;
    }

    .page-33-king__floating-button:hover {
        background-color: var(--accent-color);
        transform: translateY(-2px);
    }

    /* Product Display */
    .page-33-king__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
        text-align: center;
    }

    .page-33-king__product-card {
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .page-33-king__product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .page-33-king__product-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        position: relative;
    }

    .page-33-king__product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .page-33-king__product-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-33-king__product-title {
        font-size: 1.5em;
        margin-bottom: 15px;
        color: var(--secondary-color);
    }

    .page-33-king__product-description {
        font-size: 0.95em;
        color: var(--text-dark);
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .page-33-king__product-button {
        background-color: var(--primary-color);
        color: var(--background-dark);
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease;
        display: inline-block;
        border: none;
        cursor: pointer;
    }

    .page-33-king__product-button:hover {
        background-color: var(--accent-color);
    }

    /* Promotions Section */
    .page-33-king__promotion-card {
        background-color: var(--primary-color);
        color: var(--background-dark);
        padding: 40px;
        border-radius: 15px;
        margin: 40px auto;
        max-width: 800px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-33-king__promotion-title {
        font-size: 2.2em;
        margin-bottom: 15px;
        color: var(--background-dark);
    }

    .page-33-king__promotion-description {
        font-size: 1.2em;
        margin-bottom: 25px;
        line-height: 1.5;
        color: var(--background-dark);
    }

    .page-33-king__promotion-cta {
        background-color: var(--background-dark);
        color: var(--primary-color);
        padding: 15px 30px;
        border-radius: 30px;
        font-weight: bold;
        font-size: 1.1em;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .page-33-king__promotion-cta:hover {
        background-color: #333;
        color: var(--accent-color);
    }

    /* About Section */
    .page-33-king__about-content {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: center;
        text-align: left;
        margin-top: 40px;
    }

    .page-33-king__about-text {
        flex: 1;
        min-width: 300px;
    }

    .page-33-king__about-text h3 {
        font-size: 1.8em;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .page-33-king__about-text p {
        margin-bottom: 15px;
        color: var(--text-light);
    }

    .page-33-king__about-image-wrapper {
        flex: 1;
        min-width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-33-king__about-image {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        display: block;
    }

    /* Why Choose Us Section */
    .page-33-king__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-33-king__feature-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
    }

    .page-33-king__feature-icon {
        width: 200px; /* Min size 200x200px */
        height: 200px;
        margin-bottom: 20px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }

    .page-33-king__feature-title {
        font-size: 1.4em;
        color: var(--secondary-color);
        margin-bottom: 15px;
    }

    .page-33-king__feature-description {
        font-size: 0.95em;
        color: var(--text-dark);
    }

    /* FAQ Section */
    .page-33-king__faq-section {
        background-color: var(--background-dark);
        color: var(--text-light);
    }

    .page-33-king__faq-list {
        margin-top: 40px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-33-king__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 15px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        border: 1px solid var(--border-color);
    }

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

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

    .page-33-king__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--primary-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-33-king__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-33-king__faq-item.active .page-33-king__faq-toggle {
        transform: rotate(45deg); /* Plus sign rotates to form an X */
    }

    .page-33-king__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: var(--text-light);
        text-align: left;
    }

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

    .page-33-king__faq-answer p {
        margin: 0;
    }

    /* Call to Action Section */
    .page-33-king__cta-section {
        background-color: var(--primary-color);
        color: var(--background-dark);
        padding: 80px 0;
    }

    .page-33-king__cta-title {
        font-size: 2.5em;
        margin-bottom: 20px;
    }

    .page-33-king__cta-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-33-king__cta-button {
        background-color: var(--background-dark);
        color: var(--primary-color);
        padding: 15px 35px;
        border-radius: 30px;
        font-weight: bold;
        font-size: 1.2em;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
        cursor: pointer;
        border: none;
        display: inline-block;
    }

    .page-33-king__cta-button:hover {
        background-color: #333;
        color: var(--accent-color);
    }

    /* Game Providers & Payment Methods Section */
    .page-33-king__partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
        justify-items: center;
        align-items: center;
    }

    .page-33-king__partner-logo-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        height: 100px; /* Fixed height for logos */
        width: 100%;
        max-width: 200px;
        box-sizing: border-box;
    }

    .page-33-king__partner-logo {
        max-width: 100%;
        max-height: 70px;
        object-fit: contain;
        display: block;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .page-33-king__hero-title {
            font-size: 3em;
        }
        .page-33-king__hero-subtitle {
            font-size: 1.3em;
        }
        .page-33-king__section-title {
            font-size: 2.2em;
        }
        .page-33-king__product-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .page-33-king__hero-section {
            padding: 80px 0;
            min-height: 400px;
        }
        .page-33-king__hero-title {
            font-size: 2.5em;
        }
        .page-33-king__hero-subtitle {
            font-size: 1.1em;
        }
        .page-33-king__section {
            padding: 40px 0;
        }
        .page-33-king__section-title {
            font-size: 1.8em;
        }
        .page-33-king__product-grid,
        .page-33-king__features-grid,
        .page-33-king__partners-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .page-33-king__product-card,
        .page-33-king__feature-card,
        .page-33-king__partner-logo-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-33-king__product-content,
        .page-33-king__feature-description,
        .page-33-king__faq-answer {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-33-king__about-content {
            flex-direction: column;
            gap: 20px;
        }
        .page-33-king__about-text,
        .page-33-king__about-image-wrapper {
            min-width: unset;
            width: 100%;
        }

        .page-33-king__promotion-card {
            padding: 30px 20px;
        }
        .page-33-king__promotion-title {
            font-size: 1.8em;
        }
        .page-33-king__promotion-description {
            font-size: 1em;
        }

        .page-33-king__cta-title {
            font-size: 2em;
        }
        .page-33-king__cta-description {
            font-size: 1em;
        }

        .page-33-king__floating-buttons {
            width: calc(100% - 30px); /* Account for padding */
            max-width: unset;
        }
        .page-33-king__floating-button {
            padding: 10px 15px;
            font-size: 1em;
        }

        /* Ensure all images are responsive on mobile */
        .page-33-king__product-image,
        .page-33-king__about-image,
        .page-33-king__feature-icon,
        .page-33-king__partner-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-33-king__product-image-wrapper {
            height: 180px;
        }
        .page-33-king__partner-logo-wrapper {
            height: 80px;
        }

        /* List item responsive adjustments */
        .page-33-king__faq-list {
            padding: 0 10px !important;
        }
        .page-33-king__faq-item {
            box-sizing: border-box !important;
            width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-33-king__faq-question {
            padding: 15px 20px;
        }
        .page-33-king__faq-question h3 {
            font-size: 1.1em;
        }
        .page-33-king__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-33-king__hero-title {
            font-size: 2em;
        }
        .page-33-king__hero-subtitle {
            font-size: 0.9em;
        }
        .page-33-king__floating-buttons {
            flex-direction: column;
            gap: 10px;
        }
        .page-33-king__floating-button {
            width: 100%;
        }
    }
  