
    :root {
        --primary-color: #e44d26; /* A vibrant color, e.g., orange/red */
        --secondary-color: #f7931e; /* A complementary color */
        --dark-bg: #1a1a1a;
        --light-text: #ffffff;
        --gray-text: #cccccc;
        --border-color: #333333;
        --accent-color: #ffcc00; /* Gold for highlights */
    }

    /* Base styles for the page, ensuring good contrast */
    .page-thabet188 {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--light-text);
        background-color: var(--dark-bg);
        line-height: 1.6;
        padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-thabet188__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-thabet188__section--dark {
        background-color: #222222;
    }

    .page-thabet188__section-title {
        font-size: 2.5em;
        color: var(--primary-color);
        margin-bottom: 20px;
        text-transform: uppercase;
        font-weight: bold;
    }

    .page-thabet188__section-subtitle {
        font-size: 1.2em;
        color: var(--gray-text);
        margin-bottom: 40px;
    }

    /* Hero Section */
    .page-thabet188__hero-section {
        position: relative;
        overflow: hidden;
        padding: 10px 0 80px 0; /* Small padding-top, body handles main offset */
        background-color: #0d0d0d;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 450px; /* Ensure visibility */
    }

    .page-thabet188__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0; /* Background image is behind overlay and content */
    }

    .page-thabet188__hero-overlay { /* New style for overlay */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay for text readability */
        z-index: 1;
    }

    .page-thabet188__hero-content {
        position: relative;
        z-index: 2; /* Content is above the overlay */
        text-align: center;
        max-width: 900px;
        padding: 20px;
    }

    .page-thabet188__hero-title {
        font-size: 3.5em;
        color: var(--accent-color);
        margin-bottom: 15px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    .page-thabet188__cta-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--light-text);
        padding: 15px 30px;
        border-radius: 5px;
        font-size: 1.2em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-thabet188__cta-button:hover {
        background-color: var(--secondary-color);
        transform: translateY(-2px);
    }

    /* About Section */
    .page-thabet188__about-text {
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto 30px auto;
        color: var(--gray-text);
    }

    /* Game Categories */
    .page-thabet188__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

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

    .page-thabet188__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-thabet188__game-card-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for images */
        overflow: hidden;
        margin-bottom: 15px;
    }

    .page-thabet188__game-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .page-thabet188__game-card:hover .page-thabet188__game-card-image {
        transform: scale(1.05);
    }

    .page-thabet188__game-card-title {
        font-size: 1.6em;
        color: var(--primary-color);
        margin-bottom: 10px;
        padding: 0 15px;
        word-break: break-word; /* Ensure long titles break */
    }

    .page-thabet188__game-card-description {
        font-size: 0.95em;
        color: var(--gray-text);
        padding: 0 15px;
        margin-bottom: 20px;
    }

    /* Promotions Section */
    .page-thabet188__promotion-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-thabet188__promotion-card {
        background-color: #282828;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        padding: 25px;
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 5px solid var(--primary-color);
    }

    .page-thabet188__promotion-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-thabet188__promotion-title {
        font-size: 1.8em;
        color: var(--accent-color);
        margin-bottom: 15px;
    }

    .page-thabet188__promotion-description {
        color: var(--gray-text);
        font-size: 1em;
        margin-bottom: 15px;
    }

    .page-thabet188__promotion-button {
        display: inline-block;
        background-color: var(--secondary-color);
        color: var(--light-text);
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 1em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-thabet188__promotion-button:hover {
        background-color: var(--primary-color);
    }

    /* Payment and Providers */
    .page-thabet188__payment-providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .page-thabet188__logo-item {
        background-color: #282828;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 80px;
    }

    .page-thabet188__logo-image {
        max-width: 100%;
        max-height: 60px;
        object-fit: contain;
    }

    /* FAQ Section */
    .page-thabet188__faq-container {
        max-width: 800px;
        margin: 40px auto 0 auto;
        text-align: left;
    }

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

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

    .page-thabet188__faq-question:hover {
        background-color: #444444;
    }

    .page-thabet188__faq-question h3 {
        margin: 0;
        color: var(--light-text);
        pointer-events: none; /* Prevent h3 from blocking click */
        flex-grow: 1;
    }

    .page-thabet188__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        margin-left: 15px;
        color: var(--primary-color);
        pointer-events: none; /* Prevent toggle from blocking click */
        transition: transform 0.3s ease;
    }

    .page-thabet188__faq-item.active .page-thabet188__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
        color: var(--accent-color);
    }

    .page-thabet188__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding */
        color: var(--gray-text);
        background-color: #222222;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

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

    /* Sticky Floating Buttons */
    .page-thabet188__sticky-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        padding: 10px 0;
        display: flex;
        justify-content: center;
        gap: 15px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .page-thabet188__sticky-button {
        flex: 1;
        max-width: 150px;
        padding: 12px 10px;
        border-radius: 5px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

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

    .page-thabet188__sticky-button--register:hover {
        background-color: var(--secondary-color);
        transform: translateY(-2px);
    }

    .page-thabet188__sticky-button--login {
        background-color: var(--accent-color);
        color: #333333;
    }

    .page-thabet188__sticky-button--login:hover {
        background-color: #ffd700;
        transform: translateY(-2px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .page-thabet188__section {
            padding: 30px 15px;
        }

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

        .page-thabet188__hero-title {
            font-size: 2.5em;
        }

        .page-thabet188__hero-subtitle {
            font-size: 1.2em;
        }

        .page-thabet188__cta-button {
            padding: 12px 25px;
            font-size: 1.1em;
        }

        .page-thabet188__game-categories {
            grid-template-columns: 1fr; /* Stack cards on mobile */
        }

        .page-thabet188__game-card {
            margin: 0 auto;
            max-width: 350px; /* Constrain width for better look */
        }

        .page-thabet188__game-card-image-wrapper {
            height: 180px;
        }

        .page-thabet188__promotion-grid {
            grid-template-columns: 1fr; /* Stack promotions */
        }

        .page-thabet188__payment-providers-grid {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        }

        /* List item responsiveness */
        .page-thabet188__faq-container {
            padding: 0 15px; /* Adjust container padding for mobile */
        }
        .page-thabet188__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-thabet188__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }
        .page-thabet188__faq-answer {
            padding: 0 15px; /* Initial padding on mobile */
        }
        .page-thabet188__faq-item.active .page-thabet188__faq-answer {
            padding: 15px 15px !important; /* Expanded padding on mobile */
        }

        /* Image responsiveness */
        .page-thabet188__game-card-image,
        .page-thabet188__hero-background,
        .page-thabet188__logo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-thabet188__game-card-image-wrapper,
        .page-thabet188__logo-item {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }

        .page-thabet188__sticky-buttons {
            gap: 10px;
            padding: 8px 0;
        }

        .page-thabet188__sticky-button {
            font-size: 1em;
            padding: 10px 8px;
            max-width: 120px;
        }
    }

    @media (max-width: 480px) {
        .page-thabet188__hero-title {
            font-size: 2em;
        }
        .page-thabet188__hero-subtitle {
            font-size: 1em;
        }
        .page-thabet188__sticky-buttons {
            flex-wrap: wrap; /* Allow buttons to wrap if too many */
            padding: 5px;
        }
        .page-thabet188__sticky-button {
            flex: none; /* Disable flex-grow */
            width: 45%; /* Two buttons per row */
            max-width: none;
        }
    }
  