
    /* General styles for page-8us-wed */
    .page-8us-wed {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        padding-top: 10px; /* Small top padding for hero, body padding handles header offset */
    }

    .page-8us-wed__section-title {
        font-size: 2.5em;
        color: #1a1a1a;
        text-align: center;
        margin-bottom: 20px;
        font-weight: bold;
        line-height: 1.2;
    }

    .page-8us-wed__section-description {
        font-size: 1.1em;
        color: #555;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px auto;
        padding: 0 15px;
    }

    /* Hero Section */
    .page-8us-wed__hero-section {
        position: relative;
        width: 100%;
        height: 600px; /* Adjust height for visual impact */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        margin-bottom: 50px;
    }

    .page-8us-wed__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    .page-8us-wed__hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
        z-index: 0;
    }

    .page-8us-wed__hero-content {
        position: relative;
        z-index: 1;
        color: #fff;
        max-width: 900px;
        padding: 20px;
    }

    .page-8us-wed__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        font-weight: bold;
        line-height: 1.2;
        color: #ffcc00; /* Bright color for brand/promotion */
    }

    .page-8us-wed__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 40px;
        line-height: 1.4;
    }

    .page-8us-wed__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .page-8us-wed__hero-button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-8us-wed__hero-button--primary {
        background-color: #ffcc00; /* Primary brand color */
        color: #333;
        border: 2px solid #ffcc00;
    }

    .page-8us-wed__hero-button--primary:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    .page-8us-wed__hero-button--secondary {
        background-color: transparent;
        color: #ffcc00;
        border: 2px solid #ffcc00;
    }

    .page-8us-wed__hero-button--secondary:hover {
        background-color: rgba(255, 204, 0, 0.2);
        transform: translateY(-2px);
    }

    /* Game Categories Section */
    .page-8us-wed__game-categories {
        padding: 60px 20px;
        background-color: #f9f9f9;
    }

    .page-8us-wed__category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8us-wed__category-item {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding-bottom: 20px;
    }

    .page-8us-wed__category-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-8us-wed__category-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .page-8us-wed__category-title {
        font-size: 1.8em;
        color: #0056b3; /* A strong color for titles */
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-8us-wed__category-text {
        font-size: 1em;
        color: #666;
        padding: 0 15px;
    }

    /* Promotions Section */
    .page-8us-wed__promotions-section {
        padding: 60px 20px;
        background-color: #fff;
    }

    .page-8us-wed__promotion-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8us-wed__promotion-card {
        background-color: #fefefe;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8us-wed__promotion-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .page-8us-wed__promotion-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .page-8us-wed__promotion-content {
        padding: 25px;
    }

    .page-8us-wed__promotion-title {
        font-size: 1.8em;
        color: #1a1a1a;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page-8us-wed__promotion-text {
        font-size: 1em;
        color: #666;
        margin-bottom: 25px;
    }

    .page-8us-wed__promotion-button-wrapper {
        text-align: center;
    }

    .page-8us-wed__promotion-button {
        display: inline-block;
        padding: 12px 25px;
        background-color: #007bff; /* Action color */
        color: #fff;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-8us-wed__promotion-button:hover {
        background-color: #0056b3;
    }

    /* Features Section */
    .page-8us-wed__features-section {
        padding: 60px 20px;
        background-color: #f0f2f5;
    }

    .page-8us-wed__feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8us-wed__feature-item {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
        padding: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8us-wed__feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .page-8us-wed__feature-image {
        width: 150px; /* Adjust size */
        height: 150px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .page-8us-wed__feature-title {
        font-size: 1.8em;
        color: #1a1a1a;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-8us-wed__feature-text {
        font-size: 1em;
        color: #666;
    }

    /* Payment & Providers Section */
    .page-8us-wed__payment-providers-section {
        padding: 60px 20px;
        background-color: #fff;
        display: grid;
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8us-wed__payment-methods,
    .page-8us-wed__game-providers {
        text-align: center;
    }

    .page-8us-wed__payment-grid,
    .page-8us-wed__provider-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        margin-top: 30px;
        justify-content: center;
    }

    .page-8us-wed__payment-item,
    .page-8us-wed__provider-item {
        background-color: #fefefe;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8us-wed__payment-item:hover,
    .page-8us-wed__provider-item:hover {
        transform: translateY(-3px);
    }

    .page-8us-wed__payment-image,
    .page-8us-wed__provider-image {
        width: 80px; /* Smaller for logos */
        height: 80px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .page-8us-wed__payment-name,
    .page-8us-wed__provider-name {
        font-size: 0.9em;
        color: #333;
        font-weight: bold;
    }

    /* FAQ Section */
    .page-8us-wed__faq-section {
        padding: 60px 20px;
        background-color: #f9f9f9;
    }

    .page-8us-wed__faq-container {
        max-width: 900px;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .page-8us-wed__faq-item {
        background-color: #fff;
        border-bottom: 1px solid #eee;
    }

    .page-8us-wed__faq-item:last-child {
        border-bottom: none;
    }

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

    .page-8us-wed__faq-question:hover {
        background-color: #f0f0f0;
    }

    .page-8us-wed__faq-question-title {
        font-size: 1.2em;
        color: #1a1a1a;
        margin: 0;
        font-weight: bold;
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8us-wed__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #007bff;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click on parent */
    }

    .page-8us-wed__faq-item.active .page-8us-wed__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
        /* content: "−"; This will be handled by JS */
    }

    .page-8us-wed__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;
        font-size: 1em;
    }

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

    .page-8us-wed__faq-answer p {
        margin: 0;
    }

    /* Call to Action Section */
    .page-8us-wed__cta-section {
        padding: 80px 20px;
        background-color: #007bff; /* Primary action color */
        text-align: center;
        color: #fff;
    }

    .page-8us-wed__cta-title {
        font-size: 2.8em;
        margin-bottom: 20px;
        font-weight: bold;
        color: #fff;
    }

    .page-8us-wed__cta-description {
        font-size: 1.2em;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8us-wed__cta-button {
        display: inline-block;
        padding: 15px 35px;
        background-color: #ffcc00; /* Highlight color */
        color: #333;
        text-decoration: none;
        border-radius: 8px;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-8us-wed__cta-button:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-8us-wed__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
        padding: 10px 20px;
        border-radius: 50px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .page-8us-wed__floating-button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-8us-wed__floating-button--register {
        background-color: #ffcc00;
        color: #333;
    }

    .page-8us-wed__floating-button--register:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    .page-8us-wed__floating-button--login {
        background-color: #007bff;
        color: #fff;
    }

    .page-8us-wed__floating-button--login:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-8us-wed__hero-title {
            font-size: 3em;
        }
        .page-8us-wed__hero-subtitle {
            font-size: 1.3em;
        }
        .page-8us-wed__section-title {
            font-size: 2em;
        }
        .page-8us-wed__cta-title {
            font-size: 2.2em;
        }
    }

    @media (max-width: 768px) {
        .page-8us-wed__hero-section {
            height: 500px;
        }
        .page-8us-wed__hero-title {
            font-size: 2.5em;
        }
        .page-8us-wed__hero-subtitle {
            font-size: 1.1em;
        }
        .page-8us-wed__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-8us-wed__hero-button {
            width: 80%;
            margin: 0 auto;
        }

        .page-8us-wed__section-title {
            font-size: 1.8em;
            padding: 0 15px;
        }
        .page-8us-wed__section-description {
            font-size: 1em;
            margin-bottom: 30px;
        }

        /* Game Categories */
        .page-8us-wed__category-grid {
            grid-template-columns: 1fr;
            padding: 0 15px;
        }
        .page-8us-wed__category-item {
            margin: 0 auto;
            width: 100%;
            max-width: 400px;
            box-sizing: border-box !important;
        }
        .page-8us-wed__category-text {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-8us-wed__game-categories {
            padding: 40px 0;
        }

        /* Promotions */
        .page-8us-wed__promotion-grid {
            grid-template-columns: 1fr;
            padding: 0 15px;
        }
        .page-8us-wed__promotion-card {
            margin: 0 auto;
            width: 100%;
            max-width: 450px;
            box-sizing: border-box !important;
        }
        .page-8us-wed__promotion-text {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-8us-wed__promotions-section {
            padding: 40px 0;
        }

        /* Features */
        .page-8us-wed__feature-grid {
            grid-template-columns: 1fr;
            padding: 0 15px;
        }
        .page-8us-wed__feature-item {
            margin: 0 auto;
            width: 100%;
            max-width: 400px;
            box-sizing: border-box !important;
        }
        .page-8us-wed__feature-text {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-8us-wed__features-section {
            padding: 40px 0;
        }

        /* Payment & Providers */
        .page-8us-wed__payment-providers-section {
            padding: 40px 15px;
            gap: 40px;
        }
        .page-8us-wed__payment-grid,
        .page-8us-wed__provider-grid {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            padding: 0 10px;
        }
        .page-8us-wed__payment-item,
        .page-8us-wed__provider-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 10px;
        }
        .page-8us-wed__payment-name,
        .page-8us-wed__provider-name {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
            font-size: 0.8em;
        }
        .page-8us-wed__payment-image,
        .page-8us-wed__provider-image {
            width: 60px;
            height: 60px;
        }


        /* FAQ */
        .page-8us-wed__faq-section {
            padding: 40px 0;
        }
        .page-8us-wed__faq-container {
            border-radius: 0;
            box-shadow: none;
            max-width: 100%;
        }
        .page-8us-wed__faq-question {
            padding: 15px 20px;
        }
        .page-8us-wed__faq-question-title {
            font-size: 1.1em;
        }
        .page-8us-wed__faq-answer {
            padding: 0 20px;
        }
        .page-8us-wed__faq-item.active .page-8us-wed__faq-answer {
            padding: 15px 20px !important;
        }
        .page-8us-wed__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        /* CTA */
        .page-8us-wed__cta-section {
            padding: 50px 20px;
        }
        .page-8us-wed__cta-title {
            font-size: 2em;
        }
        .page-8us-wed__cta-description {
            font-size: 1em;
        }
        .page-8us-wed__cta-button {
            width: 90%;
            max-width: 300px;
            font-size: 1.1em;
        }

        /* Floating Buttons */
        .page-8us-wed__floating-buttons {
            bottom: 15px;
            gap: 10px;
            padding: 8px 15px;
        }
        .page-8us-wed__floating-button {
            padding: 8px 15px;
            font-size: 0.9em;
        }
    }

    @media (max-width: 480px) {
        .page-8us-wed__hero-title {
            font-size: 2em;
        }
        .page-8us-wed__hero-subtitle {
            font-size: 1em;
        }
        .page-8us-wed__section-title {
            font-size: 1.5em;
        }
        .page-8us-wed__cta-title {
            font-size: 1.8em;
        }
    }
  