
    :root {
    --page-89het-primary-color: #e02f2f; /* Darker red for main actions */
    --page-89het-secondary-color: #ffc107; /* Gold/Yellow for highlights */
    --page-89het-background-dark: #1a1a1a;
    --page-89het-background-light: #2c2c2c;
    --page-89het-text-color-light: #f0f0f0;
    --page-89het-text-color-dark: #cccccc;
    --page-89het-border-color: #444;
    --page-89het-spacing-unit: 20px;
}

.page-89het {
    font-family: 'Arial', sans-serif;
    color: var(--page-89het-text-color-light);
    background-color: var(--page-89het-background-dark);
    line-height: 1.6;
    padding-top: 10px; /* Small decorative padding, assuming body padding handles header offset */
}

.page-89het__section {
    padding: var(--page-89het-spacing-unit) 15px;
    margin-bottom: var(--page-89het-spacing-unit);
    background-color: var(--page-89het-background-light);
    border-radius: 8px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-89het__section-title {
    color: var(--page-89het-primary-color);
    text-align: center;
    margin-bottom: var(--page-89het-spacing-unit);
    font-size: 2.2em;
    font-weight: bold;
    line-height: 1.2;
    padding: 0 10px;
}

.page-89het__section-description {
    text-align: center;
    color: var(--page-89het-text-color-dark);
    margin-bottom: calc(var(--page-89het-spacing-unit) * 1.5);
    font-size: 1.1em;
    padding: 0 10px;
}

/* Hero Section */
.page-89het__hero-section {
    position: relative;
    width: 100%;
    height: 60vh; /* Responsive height */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: var(--page-89het-spacing-unit);
    border-radius: 8px;
}

.page-89het__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    max-width: 100%; /* Important for responsiveness */
}

.page-89het__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    z-index: 2;
}

.page-89het__hero-content {
    position: relative;
    z-index: 3;
    color: var(--page-89het-text-color-light);
    max-width: 800px;
    padding: var(--page-89het-spacing-unit);
}

.page-89het__hero-title {
    font-size: 3em;
    margin-bottom: 15px;
    color: var(--page-89het-secondary-color);
    line-height: 1.2;
}

.page-89het__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--page-89het-text-color-light);
}

.page-89het__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.page-89het__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
}

.page-89het__cta-button--primary {
    background-color: var(--page-89het-primary-color);
    color: var(--page-89het-text-color-light);
    border: 2px solid var(--page-89het-primary-color);
}

.page-89het__cta-button--primary:hover {
    background-color: #c72929;
    transform: translateY(-2px);
}

.page-89het__cta-button--secondary {
    background-color: transparent;
    color: var(--page-89het-secondary-color);
    border: 2px solid var(--page-89het-secondary-color);
}

.page-89het__cta-button--secondary:hover {
    background-color: var(--page-89het-secondary-color);
    color: var(--page-89het-background-dark);
    transform: translateY(-2px);
}

/* Sticky Buttons */
.page-89het__sticky-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
    width: 100%;
    justify-content: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-89het__sticky-button {
    flex: 1;
    max-width: 150px;
    padding: 12px 0;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-89het__sticky-button--register {
    background-color: var(--page-89het-primary-color);
    color: var(--page-89het-text-color-light);
}

.page-89het__sticky-button--register:hover {
    background-color: #c72929;
    transform: translateY(-2px);
}

.page-89het__sticky-button--login {
    background-color: var(--page-89het-secondary-color);
    color: var(--page-89het-background-dark);
}

.page-89het__sticky-button--login:hover {
    background-color: #e6b000;
    transform: translateY(-2px);
}


/* Game Categories / Promotions / Benefits / Payments / Providers Grid */
.page-89het__game-grid,
.page-89het__promo-grid,
.page-89het__benefits-grid,
.page-89het__payment-grid,
.page-89het__provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--page-89het-spacing-unit);
    padding: 0 var(--page-89het-spacing-unit);
    justify-content: center;
}

.page-89het__game-item,
.page-89het__promo-item,
.page-89het__benefit-item,
.page-89het__payment-item,
.page-89het__provider-item {
    background-color: var(--page-89het-background-dark);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* Crucial for responsive lists */
}

.page-89het__game-item:hover,
.page-89het__promo-item:hover,
.page-89het__benefit-item:hover,
.page-89het__payment-item:hover,
.page-89het__provider-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-89het__game-image,
.page-89het__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    max-width: 100%; /* Ensure responsiveness */
}

.page-89het__game-title,
.page-89het__promo-title {
    font-size: 1.4em;
    color: var(--page-89het-secondary-color);
    margin: 15px 10px 10px;
    line-height: 1.3;
}

.page-89het__game-description,
.page-89het__promo-description {
    font-size: 0.95em;
    color: var(--page-89het-text-color-dark);
    padding: 0 15px 15px;
}

.page-89het__benefit-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-top: 20px;
    max-width: 100%; /* Ensure responsiveness */
}

.page-89het__benefit-title {
    font-size: 1.3em;
    color: var(--page-89het-primary-color);
    margin: 15px 10px 10px;
}

.page-89het__benefit-description {
    font-size: 0.95em;
    color: var(--page-89het-text-color-dark);
    padding: 0 15px 20px;
}

.page-89het__payment-logo,
.page-89het__provider-logo {
    width: 80%; /* Adjust as needed for logo visibility */
    height: 80px; /* Fixed height for consistency */
    object-fit: contain;
    margin-top: 15px;
    max-width: 100%; /* Ensure responsiveness */
}

.page-89het__payment-name,
.page-89het__provider-name {
    font-size: 1.1em;
    color: var(--page-89het-text-color-light);
    margin: 10px 10px 15px;
    font-weight: bold;
}

.page-89het__payment-item a,
.page-89het__provider-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}


/* FAQ Section */
.page-89het__faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--page-89het-spacing-unit);
}

.page-89het__faq-item {
    background-color: var(--page-89het-background-dark);
    border: 1px solid var(--page-89het-border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    box-sizing: border-box; /* Crucial for responsive lists */
}

.page-89het__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background-color: #2a2a2a;
    color: var(--page-89het-text-color-light);
    font-weight: bold;
    font-size: 1.1em;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-89het__faq-question:hover {
    background-color: #3a3a3a;
}

.page-89het__faq-q-text {
    margin: 0;
    flex-grow: 1;
    color: var(--page-89het-secondary-color);
    pointer-events: none; /* Prevents text from blocking click event on parent div */
}

.page-89het__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: var(--page-89het-primary-color);
    pointer-events: none; /* Prevents icon from blocking click event on parent div */
}

.page-89het__faq-item.active .page-89het__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
    color: var(--page-89het-secondary-color);
}

.page-89het__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: var(--page-89het-text-color-dark);
}

.page-89het__faq-item.active .page-89het__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to show all content */
    padding: 20px !important;
    opacity: 1;
}

.page-89het__faq-answer p {
    margin: 0;
    line-height: 1.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-89het__hero-section {
        height: 70vh;
        min-height: 350px;
    }

    .page-89het__hero-title {
        font-size: 2em;
    }

    .page-89het__hero-description {
        font-size: 1em;
    }

    .page-89het__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-89het__cta-button {
        width: 80%;
        margin: 0 auto;
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-89het__sticky-buttons {
        bottom: 10px;
        gap: 10px;
        width: calc(100% - 30px); /* Adjust for padding */
    }

    .page-89het__sticky-button {
        max-width: 120px;
        padding: 10px 0;
        font-size: 1em;
    }

    .page-89het__section-title {
        font-size: 1.8em;
    }

    .page-89het__section-description {
        font-size: 0.9em;
    }

    .page-89het__game-grid,
    .page-89het__promo-grid,
    .page-89het__benefits-grid,
    .page-89het__payment-grid,
    .page-89het__provider-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        padding: 0 15px;
    }

    .page-89het__game-item,
.page-89het__promo-item,
.page-89het__benefit-item,
.page-89het__payment-item,
.page-89het__provider-item,
.page-89het__faq-item {
        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-89het__game-item p,
.page-89het__promo-item p,
.page-89het__benefit-item p,
.page-89het__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-89het__game-image,
    .page-89het__promo-image,
    .page-89het__benefit-icon,
    .page-89het__payment-logo,
    .page-89het__provider-logo {
        max-width: 100% !important;
        height: auto !important;
    }

    .page-89het__game-item .page-89het__game-image,
    .page-89het__promo-item .page-89het__promo-image {
        height: 180px; /* Adjust height for mobile */
    }

    .page-89het__faq-list {
        padding: 0 15px;
    }

    .page-89het__faq-question {
        padding: 12px 15px;
        font-size: 1em;
    }

    .page-89het__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-89het__hero-title {
        font-size: 1.8em;
    }
    .page-89het__hero-description {
        font-size: 0.9em;
    }
    .page-89het__cta-button {
        width: 90%;
    }
    .page-89het__sticky-button {
        font-size: 0.9em;
        padding: 8px 0;
    }
}
  