
    .page-888bw5y3-com-con-c {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light grey for text */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-top: 10px; /* Small padding for the first section, assuming body has main padding-top */
    }

    /* Section styling */
    .page-888bw5y3-com-con-c__hero-section,
    .page-888bw5y3-com-con-c__games-section,
    .page-888bw5y3-com-con-c__promo-section,
    .page-888bw5y3-com-con-c__features-section,
    .page-888bw5y3-com-con-c__payment-providers-section,
    .page-888bw5y3-com-con-c__faq-section,
    .page-888bw5y3-com-con-c__cta-section {
        padding: 40px 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .page-888bw5y3-com-con-c__section-title {
        font-size: 2.2em;
        color: #e0b000; /* Gold-like color */
        margin-bottom: 20px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-888bw5y3-com-con-c__section-description,
    .page-888bw5y3-com-con-c__cta-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        color: #cccccc;
    }

    /* Hero Section */
    .page-888bw5y3-com-con-c__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #1a1a2e 0%, #3a0000 100%);
        min-height: 80vh;
        overflow: hidden;
        position: relative;
        padding-top: 10px; /* As per instruction, small padding for first section */
    }

    .page-888bw5y3-com-con-c__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin-bottom: 30px;
    }

    .page-888bw5y3-com-con-c__hero-title {
        font-size: 3em;
        color: #e0b000;
        margin-bottom: 15px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-888bw5y3-com-con-c__hero-description {
        font-size: 1.2em;
        color: #f0f0f0;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-888bw5y3-com-con-c__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .page-888bw5y3-com-con-c__hero-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }

    .page-888bw5y3-com-con-c__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.2;
        filter: brightness(0.6); /* Allowed for background dimming, not color change */
        transform: scale(1.1);
    }

    /* Buttons */
    .page-888bw5y3-com-con-c__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        cursor: pointer;
        font-size: 1.1em;
    }

    .page-888bw5y3-com-con-c__button--primary {
        background-color: #e0b000; /* Gold */
        color: #1a1a2e; /* Dark text */
        border: none;
    }

    .page-888bw5y3-com-con-c__button--primary:hover {
        background-color: #ffd700; /* Brighter gold */
        transform: translateY(-2px);
    }

    .page-888bw5y3-com-con-c__button--secondary {
        background-color: transparent;
        color: #e0b000;
        border: 2px solid #e0b000;
    }

    .page-888bw5y3-com-con-c__button--secondary:hover {
        background-color: #e0b000;
        color: #1a1a2e;
        transform: translateY(-2px);
    }

    .page-888bw5y3-com-con-c__button--small {
        padding: 8px 18px;
        font-size: 0.9em;
    }

    /* Game Categories */
    .page-888bw5y3-com-con-c__games-section {
        background-color: #0d1222;
    }

    .page-888bw5y3-com-con-c__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-888bw5y3-com-con-c__game-card {
        background-color: #2a0a3b; /* Dark purple */
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        padding-bottom: 20px;
    }

    .page-888bw5y3-com-con-c__game-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-888bw5y3-com-con-c__game-card-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        margin-bottom: 15px;
    }

    .page-888bw5y3-com-con-c__game-card-title {
        font-size: 1.6em;
        color: #e0b000;
        margin-bottom: 10px;
    }

    .page-888bw5y3-com-con-c__game-card-text {
        color: #cccccc;
        padding: 0 15px;
    }

    /* Promotions Section */
    .page-888bw5y3-com-con-c__promo-section {
        background-color: #1a1a2e;
    }

    .page-888bw5y3-com-con-c__promo-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-888bw5y3-com-con-c__promo-item {
        background-color: #0f2027; /* Darker blue-grey */
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-888bw5y3-com-con-c__promo-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .page-888bw5y3-com-con-c__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .page-888bw5y3-com-con-c__promo-title {
        font-size: 1.5em;
        color: #e0b000;
        padding: 15px 20px 10px;
    }

    .page-888bw5y3-com-con-c__promo-text {
        color: #cccccc;
        padding: 0 20px 15px;
    }

    .page-888bw5y3-com-con-c__button-wrapper {
        padding: 0 20px 20px;
        text-align: right;
    }

    /* Features Section */
    .page-888bw5y3-com-con-c__features-section {
        background-color: #0d1222;
    }

    .page-888bw5y3-com-con-c__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-888bw5y3-com-con-c__feature-item {
        background-color: #2a0a3b;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-888bw5y3-com-con-c__feature-item:hover {
        transform: translateY(-8px);
        background-color: #3f1a50;
    }

    .page-888bw5y3-com-con-c__feature-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
        object-fit: contain;
        filter: drop-shadow(0 0 5px rgba(224, 176, 0, 0.5)); /* Allowed for icon glow */
    }

    .page-888bw5y3-com-con-c__feature-title {
        font-size: 1.6em;
        color: #e0b000;
        margin-bottom: 10px;
    }

    .page-888bw5y3-com-con-c__feature-description {
        color: #cccccc;
    }

    /* Payment & Providers Section */
    .page-888bw5y3-com-con-c__payment-providers-section {
        background-color: #1a1a2e;
    }

    .page-888bw5y3-com-con-c__subsection {
        margin-top: 40px;
    }

    .page-888bw5y3-com-con-c__subsection-title {
        font-size: 1.8em;
        color: #e0b000;
        margin-bottom: 25px;
        text-align: center;
    }

    .page-888bw5y3-com-con-c__logo-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-888bw5y3-com-con-c__logo-item {
        background-color: #0f2027;
        border-radius: 8px;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        width: 180px; /* Fixed width for logos */
        height: 90px; /* Fixed height for logos */
        box-sizing: border-box; /* Crucial for list items */
    }

    .page-888bw5y3-com-con-c__logo-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .page-888bw5y3-com-con-c__logo-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    /* FAQ Section */
    .page-888bw5y3-com-con-c__faq-section {
        background-color: #0d1222;
    }

    .page-888bw5y3-com-con-c__faq-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
    }

    .page-888bw5y3-com-con-c__faq-item {
        background-color: #2a0a3b;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-888bw5y3-com-con-c__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #3f1a50;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-888bw5y3-com-con-c__faq-question:hover {
        background-color: #5a2a70;
    }

    .page-888bw5y3-com-con-c__faq-title {
        font-size: 1.2em;
        color: #e0b000;
        margin: 0;
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-888bw5y3-com-con-c__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #e0b000;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-888bw5y3-com-con-c__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #cccccc;
    }

    .page-888bw5y3-com-con-c__faq-item.active .page-888bw5y3-com-con-c__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px !important;
        opacity: 1;
    }

    .page-888bw5y3-com-con-c__faq-item.active .page-888bw5y3-com-con-c__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'X' or '-' */
    }

    /* CTA Section */
    .page-888bw5y3-com-con-c__cta-section {
        background: linear-gradient(135deg, #3a0000 0%, #1a1a2e 100%);
        padding: 60px 20px;
        margin-bottom: 0; /* Last section */
    }

    .page-888bw5y3-com-con-c__cta-title {
        font-size: 2.5em;
        color: #e0b000;
        margin-bottom: 20px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-888bw5y3-com-con-c__cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap; /* Allow wrapping on small screens */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-888bw5y3-com-con-c__hero-section {
            min-height: 60vh;
        }

        .page-888bw5y3-com-con-c__hero-title {
            font-size: 2.2em;
        }

        .page-888bw5y3-com-con-c__hero-description {
            font-size: 1em;
        }

        .page-888bw5y3-com-con-c__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-888bw5y3-com-con-c__button {
            width: 80%;
            max-width: 280px;
            margin: 0 auto;
        }

        .page-888bw5y3-com-con-c__section-title {
            font-size: 1.8em;
        }

        .page-888bw5y3-com-con-c__section-description {
            font-size: 1em;
        }

        .page-888bw5y3-com-con-c__games-section,
        .page-888bw5y3-com-con-c__promo-section,
        .page-888bw5y3-com-con-c__features-section,
        .page-888bw5y3-com-con-c__payment-providers-section,
        .page-888bw5y3-com-con-c__faq-section,
        .page-888bw5y3-com-con-c__cta-section {
            padding: 30px 15px;
        }

        .page-888bw5y3-com-con-c__game-categories,
        .page-888bw5y3-com-con-c__promo-list,
        .page-888bw5y3-com-con-c__features-grid,
        .page-888bw5y3-com-con-c__logo-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            width: 100% !important; /* List container */
            max-width: 100% !important; /* List container */
            padding: 0 !important; /* List container */
            margin-left: 0 !important; /* List container */
            margin-right: 0 !important; /* List container */
            box-sizing: border-box !important; /* List container */
        }
        
        .page-888bw5y3-com-con-c__game-card,
        .page-888bw5y3-com-con-c__promo-item,
        .page-888bw5y3-com-con-c__feature-item,
        .page-888bw5y3-com-con-c__logo-item {
            width: 100% !important; /* List item */
            max-width: 100% !important; /* List item */
            box-sizing: border-box !important; /* List item */
            padding-left: 15px !important; /* Adjust padding for mobile list items */
            padding-right: 15px !important; /* Adjust padding for mobile list items */
            margin-left: 0 !important; /* List item */
            margin-right: 0 !important; /* List item */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-888bw5y3-com-con-c__game-card-image,
        .page-888bw5y3-com-con-c__promo-image,
        .page-888bw5y3-com-con-c__feature-icon,
        .page-888bw5y3-com-con-c__logo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-888bw5y3-com-con-c__logo-item {
            width: calc(50% - 10px); /* Two logos per row on mobile */
            height: auto; /* Allow height to adjust */
        }

        .page-888bw5y3-com-con-c__faq-question {
            padding: 12px 15px;
        }

        .page-888bw5y3-com-con-c__faq-title {
            font-size: 1.1em;
        }

        .page-888bw5y3-com-con-c__faq-answer {
            padding: 0 15px;
        }

        .page-888bw5y3-com-con-c__faq-item.active .page-888bw5y3-com-con-c__faq-answer {
            padding: 15px !important;
        }

        .page-888bw5y3-com-con-c__cta-title {
            font-size: 1.8em;
        }

        .page-888bw5y3-com-con-c__cta-buttons {
            flex-direction: column;
            gap: 15px;
        }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
        .page-888bw5y3-com-con-c__hero-title {
            font-size: 2.5em;
        }

        .page-888bw5y3-com-con-c__hero-description {
            font-size: 1.1em;
        }

        .page-888bw5y3-com-con-c__section-title {
            font-size: 2em;
        }

        .page-888bw5y3-com-con-c__game-categories,
        .page-888bw5y3-com-con-c__promo-list,
        .page-888bw5y3-com-con-c__features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .page-888bw5y3-com-con-c__logo-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
  