
    /* General styles for the page-1gom-xs scope */
    .page-1gom-xs {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-top: 10px; /* Small top padding for hero/first section, body padding-top handles header offset */
    }

    .page-1gom-xs__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 15px;
        box-sizing: border-box;
    }

    .page-1gom-xs__section-title {
        color: #e94560; /* Accent color */
        text-align: center;
        font-size: 2.5em;
        margin-bottom: 20px;
        font-weight: bold;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-1gom-xs__sub-title {
        color: #00bcd4; /* Another accent color */
        font-size: 1.8em;
        margin-bottom: 15px;
        text-align: center;
    }

    .page-1gom-xs__section-description {
        text-align: center;
        font-size: 1.1em;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #cccccc;
    }

    .page-1gom-xs__cta-button {
        display: inline-block;
        background-color: #e94560; /* Primary CTA color */
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
        text-align: center;
    }

    .page-1gom-xs__cta-button:hover {
        background-color: #ff6b81;
        transform: translateY(-3px);
    }

    .page-1gom-xs__cta-button--large {
        padding: 20px 40px;
        font-size: 1.5em;
        border-radius: 10px;
    }

    .page-1gom-xs__cta-button-wrapper {
        text-align: center;
        margin-top: 40px;
    }

    /* Hero Section */
    .page-1gom-xs__hero-section {
        position: relative;
        width: 100%;
        height: 600px; /* Adjust height as needed */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        margin-bottom: 40px;
    }

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

    .page-1gom-xs__hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 2;
    }

    .page-1gom-xs__hero-content {
        position: relative;
        z-index: 3;
        color: #ffffff;
        max-width: 900px;
        padding: 20px;
    }

    .page-1gom-xs__hero-title {
        font-size: 3.5em;
        margin-bottom: 15px;
        line-height: 1.2;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }

    .page-1gom-xs__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-1gom-xs__hero-cta {
        background-color: #00bcd4; /* Secondary CTA color */
        color: #ffffff;
        padding: 18px 35px;
        border-radius: 10px;
        text-decoration: none;
        font-size: 1.3em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        display: inline-block;
    }

    .page-1gom-xs__hero-cta:hover {
        background-color: #00e5ff;
        transform: translateY(-3px);
    }

    /* About Section */
    .page-1gom-xs__about-section {
        padding: 60px 0;
        background-color: #1a1a2e;
    }

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

    .page-1gom-xs__feature-item {
        background-color: #272740;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        border: 1px solid #3a3a5a;
    }

    .page-1gom-xs__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-1gom-xs__feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .page-1gom-xs__feature-title {
        color: #e94560;
        font-size: 1.6em;
        margin-bottom: 15px;
    }

    .page-1gom-xs__feature-text {
        color: #cccccc;
        font-size: 1em;
    }

    /* Games Section */
    .page-1gom-xs__games-section {
        padding: 60px 0;
        background-color: #1f1f3a;
    }

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

    .page-1gom-xs__game-card {
        background-color: #272740;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        border: 1px solid #3a3a5a;
    }

    .page-1gom-xs__game-card:hover {
        transform: translateY(-5px);
    }

    .page-1gom-xs__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .page-1gom-xs__game-title {
        color: #00bcd4;
        font-size: 1.5em;
        padding: 15px 20px 5px;
        margin: 0;
    }

    .page-1gom-xs__game-text {
        color: #cccccc;
        font-size: 0.95em;
        padding: 0 20px 20px;
        margin: 0;
    }

    /* Promotion Section */
    .page-1gom-xs__promo-section {
        padding: 60px 0;
        background-color: #1a1a2e;
    }

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

    .page-1gom-xs__promo-card {
        background-color: #272740;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        border: 1px solid #3a3a5a;
    }

    .page-1gom-xs__promo-card:hover {
        transform: translateY(-5px);
    }

    .page-1gom-xs__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .page-1gom-xs__promo-title {
        color: #e94560;
        font-size: 1.5em;
        padding: 15px 20px 5px;
        margin: 0;
    }

    .page-1gom-xs__promo-text {
        color: #cccccc;
        font-size: 0.95em;
        padding: 0 20px 20px;
        margin: 0;
    }

    /* Payments & Providers Section */
    .page-1gom-xs__payments-providers-section {
        padding: 60px 0;
        background-color: #1f1f3a;
    }

    .page-1gom-xs__flex-group {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        margin-top: 40px;
        justify-content: center;
    }

    .page-1gom-xs__payment-methods,
    .page-1gom-xs__game-providers {
        flex: 1;
        min-width: 300px;
        background-color: #272740;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        border: 1px solid #3a3a5a;
    }

    .page-1gom-xs__list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .page-1gom-xs__list-item {
        display: flex;
        align-items: center;
        background-color: #3a3a5a;
        padding: 10px 15px;
        border-radius: 5px;
        color: #ffffff;
        font-size: 1.1em;
        box-sizing: border-box; /* Crucial for mobile responsiveness */
        word-wrap: break-word; /* Ensure long text wraps */
        overflow-wrap: break-word;
        max-width: 100%; /* Ensure it doesn't overflow */
    }

    .page-1gom-xs__payment-icon,
    .page-1gom-xs__provider-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }

    /* FAQ Section */
    .page-1gom-xs__faq-section {
        padding: 60px 0;
        background-color: #1a1a2e;
    }

    .page-1gom-xs__faq-list {
        margin-top: 40px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-1gom-xs__faq-item {
        background-color: #272740;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        border: 1px solid #3a3a5a;
    }

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

    .page-1gom-xs__faq-question:hover {
        background-color: #4a4a6a;
    }

    .page-1gom-xs__faq-heading {
        margin: 0;
        font-size: 1.2em;
        color: #ffffff;
        pointer-events: none; /* Prevents text from blocking click event */
    }

    .page-1gom-xs__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #e94560;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevents icon from blocking click event */
    }

    .page-1gom-xs__faq-item.active .page-1gom-xs__faq-toggle {
        /* transform: rotate(45deg); /* Changes '+' to 'x' visually, or use '-' */
        color: #00bcd4;
    }

    .page-1gom-xs__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;
        background-color: #272740;
        color: #cccccc;
    }

    .page-1gom-xs__faq-item.active .page-1gom-xs__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 20px !important; /* Expanded padding */
        opacity: 1;
    }

    .page-1gom-xs__faq-answer p {
        margin: 0;
        padding-bottom: 10px;
    }

    /* Final CTA Section */
    .page-1gom-xs__cta-final-section {
        padding: 80px 0;
        background-color: #1f1f3a;
        text-align: center;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-1gom-xs__hero-section {
            height: 400px;
        }

        .page-1gom-xs__hero-title {
            font-size: 2.2em;
        }

        .page-1gom-xs__hero-subtitle {
            font-size: 1.1em;
        }

        .page-1gom-xs__hero-cta {
            padding: 12px 25px;
            font-size: 1.1em;
        }

        .page-1gom-xs__section-title {
            font-size: 1.8em;
        }

        .page-1gom-xs__section-description {
            font-size: 0.95em;
            margin-bottom: 30px;
        }

        .page-1gom-xs__feature-item,
        .page-1gom-xs__game-card,
        .page-1gom-xs__promo-card {
            padding: 20px;
        }

        .page-1gom-xs__feature-title,
        .page-1gom-xs__game-title,
        .page-1gom-xs__promo-title {
            font-size: 1.3em;
        }

        .page-1gom-xs__flex-group {
            flex-direction: column;
            gap: 20px;
        }

        .page-1gom-xs__payment-methods,
        .page-1gom-xs__game-providers {
            min-width: unset;
            width: 100%;
            padding: 20px;
        }

        .page-1gom-xs__list {
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
        }

        .page-1gom-xs__list-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 10px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-1gom-xs__payment-icon,
        .page-1gom-xs__provider-icon {
            width: 30px;
            height: 30px;
            margin-right: 8px;
        }

        .page-1gom-xs__faq-question {
            padding: 12px 15px;
        }

        .page-1gom-xs__faq-heading {
            font-size: 1.1em;
        }

        .page-1gom-xs__faq-toggle {
            font-size: 1.5em;
        }

        .page-1gom-xs__faq-answer {
            padding: 0 15px;
        }

        .page-1gom-xs__faq-item.active .page-1gom-xs__faq-answer {
            padding: 15px 15px !important;
        }
    }

    @media (max-width: 480px) {
        .page-1gom-xs__hero-section {
            height: 350px;
        }
        .page-1gom-xs__hero-title {
            font-size: 1.8em;
        }
        .page-1gom-xs__hero-subtitle {
            font-size: 1em;
        }
        .page-1gom-xs__hero-cta {
            font-size: 1em;
            padding: 10px 20px;
        }
        .page-1gom-xs__cta-button--large {
            padding: 15px 30px;
            font-size: 1.2em;
        }
    }
  