
    .page-acbwin {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a1a; /* Dark background */
        line-height: 1.6;
        padding-top: 10px; /* Small padding for hero/first section, assuming body padding is handled by shared CSS */
    }

    .page-acbwin__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Floating Buttons */
    .page-acbwin__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-acbwin__register-btn,
    .page-acbwin__login-btn {
        display: block;
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        color: #1a1a1a; /* Dark text for bright buttons */
        background-color: #ffcc00; /* Gold accent */
    }

    .page-acbwin__login-btn {
        background-color: #00cc66; /* Green accent */
    }

    .page-acbwin__register-btn:hover,
    .page-acbwin__login-btn:hover {
        transform: translateY(-3px);
        opacity: 0.9;
    }

    /* Hero Section */
    .page-acbwin__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: 40px;
        color: #ffffff;
    }

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

    .page-acbwin__hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
        z-index: 2;
    }

    .page-acbwin__hero-content {
        position: relative;
        z-index: 3;
        max-width: 900px;
        padding: 20px;
    }

    .page-acbwin__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #ffcc00; /* Gold accent for title */
    }

    .page-acbwin__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    .page-acbwin__hero-actions {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

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

    .page-acbwin__btn--primary {
        background-color: #ffcc00; /* Gold accent */
        color: #1a1a1a; /* Dark text */
    }

    .page-acbwin__btn--primary:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    .page-acbwin__btn--secondary {
        background-color: transparent;
        color: #ffcc00; /* Gold accent border */
        border: 2px solid #ffcc00;
    }

    .page-acbwin__btn--secondary:hover {
        background-color: #ffcc00;
        color: #1a1a1a;
        transform: translateY(-2px);
    }

    .page-acbwin__btn--small {
        padding: 10px 20px;
        font-size: 0.9em;
        border-radius: 3px;
        background-color: #00cc66; /* Green accent */
        color: #1a1a1a;
    }

    .page-acbwin__btn--small:hover {
        background-color: #00b359;
    }

    .page-acbwin__btn--large {
        padding: 18px 35px;
        font-size: 1.2em;
        border-radius: 8px;
        background-color: #ffcc00; /* Gold accent */
        color: #1a1a1a;
    }

    .page-acbwin__btn--large:hover {
        background-color: #e6b800;
        transform: translateY(-3px);
    }

    /* General Section Styling */
    .page-acbwin__section-title {
        font-size: 2.5em;
        text-align: center;
        margin-bottom: 20px;
        color: #ffcc00; /* Gold accent */
        padding-top: 40px;
    }

    .page-acbwin__section-description {
        font-size: 1.1em;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px auto;
        color: #c0c0c0;
    }

    /* Promo Banner */
    .page-acbwin__promo-banner {
        background-color: #222222;
        padding: 60px 0;
        margin-bottom: 40px;
    }

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

    .page-acbwin__promo-card {
        background-color: #2e2e2e;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        padding-bottom: 20px;
    }

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

    .page-acbwin__promo-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin-bottom: 15px;
        max-width: 100%;
    }

    .page-acbwin__promo-card-title {
        font-size: 1.5em;
        color: #ffcc00;
        margin: 0 15px 10px 15px;
    }

    .page-acbwin__promo-card-description {
        font-size: 1em;
        color: #c0c0c0;
        margin: 0 15px 20px 15px;
        flex-grow: 1;
    }

    /* Game Categories */
    .page-acbwin__game-categories {
        padding: 60px 0;
        margin-bottom: 40px;
    }

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

    .page-acbwin__category-card {
        background-color: #2e2e2e;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
    }

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

    .page-acbwin__category-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin-bottom: 15px;
        max-width: 100%;
    }

    .page-acbwin__category-title {
        font-size: 1.6em;
        color: #ffcc00;
        margin: 0 15px 10px 15px;
    }

    .page-acbwin__category-text {
        font-size: 0.95em;
        color: #c0c0c0;
        padding: 0 15px 20px 15px;
    }

    /* Features Section */
    .page-acbwin__features-section {
        background-color: #222222;
        padding: 60px 0;
        margin-bottom: 40px;
    }

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

    .page-acbwin__feature-card {
        background-color: #2e2e2e;
        border-radius: 10px;
        text-align: center;
        padding: 30px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
    }

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

    .page-acbwin__feature-icon {
        width: 80px; /* Min size 200x200, but icon image can be scaled down */
        height: 80px;
        object-fit: contain;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .page-acbwin__feature-title {
        font-size: 1.4em;
        color: #00cc66; /* Green accent */
        margin-bottom: 10px;
    }

    .page-acbwin__feature-description {
        font-size: 0.95em;
        color: #c0c0c0;
    }

    /* Payment and Providers */
    .page-acbwin__payment-providers {
        padding: 60px 0;
        margin-bottom: 40px;
    }

    .page-acbwin__subsection {
        margin-bottom: 50px;
    }

    .page-acbwin__subsection-title {
        font-size: 2em;
        text-align: center;
        margin-bottom: 30px;
        color: #ffcc00;
    }

    .page-acbwin__logo-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .page-acbwin__logo-item {
        background-color: #2e2e2e;
        border-radius: 8px;
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100px; /* Fixed height for consistency */
        flex-basis: 150px; /* Minimum width */
        max-width: 200px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-acbwin__logo-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }

    .page-acbwin__logo-image {
        max-width: 100%;
        max-height: 70px; /* Ensure image fits within item */
        object-fit: contain;
        height: auto;
    }

    /* FAQ Section */
    .page-acbwin__faq-section {
        background-color: #222222;
        padding: 60px 0;
        margin-bottom: 40px;
    }

    .page-acbwin__faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-acbwin__faq-item {
        background-color: #2e2e2e;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

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

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

    .page-acbwin__faq-question-title {
        margin: 0;
        font-size: 1.2em;
        color: #ffcc00; /* Gold accent */
        pointer-events: none; /* Crucial for click event on parent */
    }

    .page-acbwin__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #00cc66; /* Green accent */
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click event on parent */
    }

    .page-acbwin__faq-item.active .page-acbwin__faq-toggle {
        transform: rotate(45deg);
        color: #e6b800; /* Gold accent when active */
    }

    .page-acbwin__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;
        background-color: #2e2e2e;
    }

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

    .page-acbwin__faq-answer p {
        margin: 0;
        color: #c0c0c0;
        line-height: 1.8;
    }

    /* Call to Action Section */
    .page-acbwin__cta-section {
        background: linear-gradient(to right, #1a1a1a, #333333);
        padding: 80px 20px;
        text-align: center;
        margin-bottom: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .page-acbwin__cta-title {
        font-size: 2.8em;
        color: #ffcc00; /* Gold accent */
        margin-bottom: 20px;
    }

    .page-acbwin__cta-description {
        font-size: 1.2em;
        max-width: 700px;
        margin: 0 auto 40px auto;
        color: #e0e0e0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-acbwin__hero-title {
            font-size: 2.8em;
        }
        .page-acbwin__hero-description {
            font-size: 1.1em;
        }
        .page-acbwin__section-title {
            font-size: 2em;
        }
        .page-acbwin__subsection-title {
            font-size: 1.8em;
        }
        .page-acbwin__cta-title {
            font-size: 2.2em;
        }
    }

    @media (max-width: 768px) {
        .page-acbwin__hero-section {
            height: 500px;
        }
        .page-acbwin__hero-title {
            font-size: 2.2em;
        }
        .page-acbwin__hero-description {
            font-size: 1em;
        }
        .page-acbwin__hero-actions {
            flex-direction: column;
            gap: 15px;
        }
        .page-acbwin__btn {
            width: 80%;
            margin: 0 auto;
        }

        .page-acbwin__section-title {
            font-size: 1.8em;
            padding-top: 20px;
        }
        .page-acbwin__section-description {
            font-size: 0.95em;
            margin-bottom: 30px;
        }

        .page-acbwin__promo-grid,
        .page-acbwin__category-grid,
        .page-acbwin__features-grid {
            grid-template-columns: 1fr;
        }

        .page-acbwin__promo-card,
        .page-acbwin__category-card,
        .page-acbwin__feature-card {
            margin: 0 10px; /* Add horizontal margin for cards */
        }

        /* List item specific responsive styles */
        .page-acbwin__faq-list {
            padding: 0 10px; /* Adjust padding for list container */
        }
        .page-acbwin__faq-item {
            box-sizing: border-box !important;
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-acbwin__faq-question {
            padding: 15px 20px;
        }
        .page-acbwin__faq-question-title {
            font-size: 1.1em;
        }
        .page-acbwin__faq-toggle {
            font-size: 1.5em;
        }
        .page-acbwin__faq-answer {
            padding: 0 20px;
        }
        .page-acbwin__faq-item.active .page-acbwin__faq-answer {
            padding: 15px 20px !important;
        }
        .page-acbwin__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-acbwin__logo-grid {
            gap: 15px;
        }
        .page-acbwin__logo-item {
            flex-basis: 120px;
            height: 80px;
            padding: 10px;
            box-sizing: border-box;
        }
        .page-acbwin__logo-image {
            max-height: 60px;
        }

        .page-acbwin__cta-title {
            font-size: 1.8em;
        }
        .page-acbwin__cta-description {
            font-size: 1em;
        }
        .page-acbwin__btn--large {
            padding: 15px 25px;
            font-size: 1.1em;
        }

        .page-acbwin__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }
        .page-acbwin__register-btn,
        .page-acbwin__login-btn {
            padding: 10px 20px;
            font-size: 0.9em;
        }

        /* Image responsive optimization */
        .page-acbwin img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-acbwin__hero-image {
            max-width: 100% !important;
            height: 100% !important; /* Keep height for hero */
            object-fit: cover !important;
            box-sizing: border-box !important;
        }
        .page-acbwin__promo-image,
        .page-acbwin__category-image,
        .page-acbwin__feature-icon,
        .page-acbwin__logo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-acbwin__hero-section {
            height: 400px;
        }
        .page-acbwin__hero-title {
            font-size: 1.8em;
        }
        .page-acbwin__hero-description {
            font-size: 0.9em;
        }
        .page-acbwin__btn {
            width: 90%;
        }
        .page-acbwin__section-title {
            font-size: 1.5em;
        }
        .page-acbwin__cta-title {
            font-size: 1.5em;
        }
        .page-acbwin__logo-item {
            flex-basis: 100px;
            height: 70px;
        }
        .page-acbwin__logo-image {
            max-height: 50px;
        }
    }
  