
    /* General styles for the page-8dayvn-co-com scope */
    .page-8dayvn-co-com {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f4f7f6;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-8dayvn-co-com__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 15px;
        box-sizing: border-box;
    }

    .page-8dayvn-co-com__section-title {
        font-size: 2.2em;
        color: #1a4a72; /* Dark blue, good contrast */
        text-align: center;
        margin-bottom: 20px;
        padding-top: 20px;
    }

    .page-8dayvn-co-com__section-description {
        font-size: 1.1em;
        text-align: center;
        margin-bottom: 40px;
        color: #555;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Buttons */
    .page-8dayvn-co-com__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        font-size: 1em;
        text-align: center;
    }

    .page-8dayvn-co-com__button--primary {
        background-color: #ff6f00; /* Orange */
        color: #ffffff;
    }

    .page-8dayvn-co-com__button--primary:hover {
        background-color: #e66200;
        transform: translateY(-2px);
    }

    .page-8dayvn-co-com__button--secondary {
        background-color: #007bff; /* Blue */
        color: #ffffff;
        margin-left: 15px;
    }

    .page-8dayvn-co-com__button--secondary:hover {
        background-color: #0069d9;
        transform: translateY(-2px);
    }

    .page-8dayvn-co-com__button--link {
        background-color: #28a745; /* Green */
        color: #ffffff;
        margin-top: 20px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8dayvn-co-com__button--link:hover {
        background-color: #218838;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-8dayvn-co-com__hero-section {
        position: relative;
        background-color: #0d1a26; /* Dark background for hero */
        color: #ffffff;
        padding: 10px 0 60px 0; /* Small top padding, assuming body handles main offset */
        text-align: center;
        overflow: hidden;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .page-8dayvn-co-com__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 1;
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-8dayvn-co-com__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-8dayvn-co-com__hero-title {
        font-size: 3em;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #ffcc00; /* Yellow for brand */
    }

    .page-8dayvn-co-com__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    .page-8dayvn-co-com__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px; /* Space between buttons */
    }

    /* About Section */
    .page-8dayvn-co-com__about-section {
        background-color: #ffffff;
        padding: 60px 0;
    }

    .page-8dayvn-co-com__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-8dayvn-co-com__feature-item {
        text-align: center;
        padding: 25px;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .page-8dayvn-co-com__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-8dayvn-co-com__feature-icon {
        width: 200px; /* Minimum size */
        height: 200px; /* Minimum size */
        object-fit: contain;
        margin-bottom: 20px;
        max-width: 100%; /* Responsive */
        height: auto; /* Maintain aspect ratio */
    }

    .page-8dayvn-co-com__feature-title {
        font-size: 1.5em;
        color: #1a4a72;
        margin-bottom: 10px;
    }

    .page-8dayvn-co-com__feature-text {
        color: #666;
    }

    /* Games Section */
    .page-8dayvn-co-com__games-section {
        background-color: #f4f7f6;
        padding: 60px 0;
    }

    .page-8dayvn-co-com__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-8dayvn-co-com__game-card {
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-8dayvn-co-com__game-card:hover {
        transform: translateY(-5px);
    }

    .page-8dayvn-co-com__game-image {
        width: 100%;
        height: 250px; /* Fixed height for consistency */
        object-fit: cover;
        max-width: 100%; /* Responsive */
        height: auto; /* Maintain aspect ratio */
    }

    .page-8dayvn-co-com__game-title {
        font-size: 1.6em;
        color: #1a4a72;
        margin: 20px 0 10px;
    }

    .page-8dayvn-co-com__game-text {
        padding: 0 20px 20px;
        color: #666;
    }

    /* Promotions Section */
    .page-8dayvn-co-com__promotions-section {
        background-color: #0d1a26; /* Dark background for contrast */
        color: #ffffff;
        padding: 60px 0;
    }

    .page-8dayvn-co-com__promotions-section .page-8dayvn-co-com__section-title {
        color: #ffcc00;
    }

    .page-8dayvn-co-com__promotions-section .page-8dayvn-co-com__section-description {
        color: #e0e0e0;
    }

    .page-8dayvn-co-com__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-8dayvn-co-com__promo-card {
        background-color: #1a2a3a;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-8dayvn-co-com__promo-card:hover {
        transform: translateY(-5px);
    }

    .page-8dayvn-co-com__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        max-width: 100%; /* Responsive */
        height: auto; /* Maintain aspect ratio */
    }

    .page-8dayvn-co-com__promo-title {
        font-size: 1.5em;
        color: #ffcc00;
        margin: 20px 0 10px;
    }

    .page-8dayvn-co-com__promo-text {
        padding: 0 20px 20px;
        color: #cccccc;
    }

    .page-8dayvn-co-com__promo-cta {
        text-align: center;
        margin-top: 40px;
    }

    /* Providers Section & Payments Section */
    .page-8dayvn-co-com__providers-section,
    .page-8dayvn-co-com__payments-section {
        padding: 60px 0;
        background-color: #ffffff;
    }

    .page-8dayvn-co-com__provider-logos,
    .page-8dayvn-co-com__payment-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
    }

    .page-8dayvn-co-com__provider-logo,
    .page-8dayvn-co-com__payment-logo {
        width: 200px;
        height: 100px;
        object-fit: contain;
        filter: grayscale(80%);
        opacity: 0.7;
        transition: filter 0.3s ease, opacity 0.3s ease;
        max-width: 100%; /* Responsive */
        height: auto; /* Maintain aspect ratio */
    }

    .page-8dayvn-co-com__provider-logo:hover,
    .page-8dayvn-co-com__payment-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

    /* FAQ Section */
    .page-8dayvn-co-com__faq-section {
        background-color: #f4f7f6;
        padding: 60px 0;
    }

    .page-8dayvn-co-com__faq-list {
        margin-top: 40px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8dayvn-co-com__faq-item {
        background-color: #ffffff;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .page-8dayvn-co-com__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #f0f0f0;
        border-bottom: 1px solid #e0e0e0;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-8dayvn-co-com__faq-question:hover {
        background-color: #e5e5e5;
    }

    .page-8dayvn-co-com__faq-title {
        font-size: 1.2em;
        color: #1a4a72;
        margin: 0;
        pointer-events: none; /* Crucial for FAQ click functionality */
    }

    .page-8dayvn-co-com__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ff6f00;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for FAQ click functionality */
    }

    .page-8dayvn-co-com__faq-item.active .page-8dayvn-co-com__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
        color: #007bff;
    }

    .page-8dayvn-co-com__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: #555;
    }

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

    .page-8dayvn-co-com__faq-answer p {
        margin: 0;
    }

    /* CTA Bottom Section */
    .page-8dayvn-co-com__cta-bottom {
        background-color: #1a4a72;
        color: #ffffff;
        padding: 80px 0;
        text-align: center;
    }

    .page-8dayvn-co-com__cta-bottom .page-8dayvn-co-com__section-title {
        color: #ffcc00;
    }

    .page-8dayvn-co-com__cta-bottom .page-8dayvn-co-com__section-description {
        color: #e0e0e0;
        margin-bottom: 30px;
    }

    /* Floating Register/Login Buttons */
    .page-8dayvn-co-com__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-8dayvn-co-com__floating-button {
        padding: 12px 20px;
        border-radius: 30px;
        font-weight: bold;
        cursor: pointer;
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease, background-color 0.3s ease;
        font-size: 1em;
    }

    .page-8dayvn-co-com__floating-button--register {
        background-color: #ff6f00; /* Orange */
        color: #ffffff;
    }

    .page-8dayvn-co-com__floating-button--register:hover {
        background-color: #e66200;
        transform: translateY(-3px);
    }

    .page-8dayvn-co-com__floating-button--login {
        background-color: #007bff; /* Blue */
        color: #ffffff;
    }

    .page-8dayvn-co-com__floating-button--login:hover {
        background-color: #0069d9;
        transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-8dayvn-co-com__hero-title {
            font-size: 2.2em;
        }

        .page-8dayvn-co-com__hero-description {
            font-size: 1em;
        }

        .page-8dayvn-co-com__hero-buttons {
            flex-direction: column;
            gap: 10px;
        }

        .page-8dayvn-co-com__button {
            width: 80%;
            margin-left: auto;
            margin-right: auto;
        }
        
        .page-8dayvn-co-com__button--secondary {
            margin-left: auto; /* Override margin-left for column layout */
        }

        .page-8dayvn-co-com__section-title {
            font-size: 1.8em;
        }

        .page-8dayvn-co-com__section-description {
            font-size: 1em;
        }

        /* List item responsive requirements */
        .page-8dayvn-co-com__features-grid,
        .page-8dayvn-co-com__game-categories,
        .page-8dayvn-co-com__promo-grid {
            grid-template-columns: 1fr; /* Single column layout */
            padding: 0 10px !important; /* Adjust padding for container */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-8dayvn-co-com__feature-item,
        .page-8dayvn-co-com__game-card,
        .page-8dayvn-co-com__promo-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8dayvn-co-com__game-image,
        .page-8dayvn-co-com__promo-image,
        .page-8dayvn-co-com__feature-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }

        .page-8dayvn-co-com__provider-logos,
        .page-8dayvn-co-com__payment-logos {
            gap: 15px;
            padding: 0 10px;
        }

        .page-8dayvn-co-com__provider-logo,
        .page-8dayvn-co-com__payment-logo {
            width: 150px;
            height: 75px;
        }

        .page-8dayvn-co-com__faq-question {
            padding: 15px 20px;
        }

        .page-8dayvn-co-com__faq-title {
            font-size: 1.1em;
        }

        .page-8dayvn-co-com__faq-answer {
            padding: 0 20px;
        }

        .page-8dayvn-co-com__faq-item.active .page-8dayvn-co-com__faq-answer {
            padding: 15px 20px !important;
        }

        .page-8dayvn-co-com__floating-buttons {
            bottom: 15px;
            right: 15px;
        }

        .page-8dayvn-co-com__floating-button {
            padding: 10px 18px;
            font-size: 0.9em;
        }
    }
  