
    /* CSS for page-1bet */
    :root {
        --page-1bet-primary-color: #FFD700; /* Gold */
        --page-1bet-secondary-color: #00BFFF; /* Deep Sky Blue */
        --page-1bet-dark-bg: #1A1A2E; /* Dark Blue */
        --page-1bet-light-text: #E0E0E0;
        --page-1bet-gray-text: #B0B0B0;
        --page-1bet-card-bg: #2E2E4A;
        --page-1bet-border-color: #4A4A6A;
    }

    .page-1bet {
        font-family: 'Arial', sans-serif;
        background-color: var(--page-1bet-dark-bg);
        color: var(--page-1bet-light-text);
        line-height: 1.6;
        overflow-x: hidden;
    }

    .page-1bet__section-title {
        font-size: 2.5em;
        text-align: center;
        margin-bottom: 40px;
        color: var(--page-1bet-primary-color);
        padding: 0 15px;
    }

    .page-1bet__section-title strong {
        color: var(--page-1bet-secondary-color);
    }

    .page-1bet__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        cursor: pointer;
        text-align: center;
        box-sizing: border-box;
    }

    .page-1bet__button--primary {
        background-color: var(--page-1bet-primary-color);
        color: var(--page-1bet-dark-bg);
        border: none;
    }

    .page-1bet__button--primary:hover {
        background-color: #FFC700;
        transform: translateY(-2px);
    }

    .page-1bet__button--secondary {
        background-color: transparent;
        color: var(--page-1bet-primary-color);
        border: 2px solid var(--page-1bet-primary-color);
    }

    .page-1bet__button--secondary:hover {
        background-color: var(--page-1bet-primary-color);
        color: var(--page-1bet-dark-bg);
        transform: translateY(-2px);
    }

    .page-1bet__button--small {
        padding: 8px 15px;
        font-size: 0.9em;
        background-color: var(--page-1bet-secondary-color);
        color: var(--page-1bet-dark-bg);
        border: none;
        margin-top: 15px;
    }

    .page-1bet__button--small:hover {
        background-color: #009ACD;
        transform: translateY(-1px);
    }

    /* Hero Section */
    .page-1bet__hero-section {
        position: relative;
        padding: 10px 0 60px; /* Small padding-top, assuming body has header offset */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        min-height: 500px;
        background-color: #1A1A2E; /* Ensure dark background for hero */
    }

    .page-1bet__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3; /* Subtle background image */
        z-index: 1;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-1bet__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding: 20px;
    }

    .page-1bet__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        line-height: 1.2;
        color: var(--page-1bet-light-text);
    }

    .page-1bet__hero-title strong {
        color: var(--page-1bet-primary-color);
    }

    .page-1bet__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: var(--page-1bet-gray-text);
    }

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

    /* Promotions Section */
    .page-1bet__promotions-section {
        padding: 60px 20px;
        background-color: #22223B;
    }

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

    .page-1bet__promotion-card {
        background-color: var(--page-1bet-card-bg);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        text-align: center;
        padding-bottom: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid var(--page-1bet-border-color);
    }

    .page-1bet__promotion-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        margin-bottom: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-1bet__promotion-title {
        font-size: 1.5em;
        color: var(--page-1bet-primary-color);
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-1bet__promotion-description {
        color: var(--page-1bet-gray-text);
        font-size: 0.95em;
        padding: 0 20px;
        flex-grow: 1;
    }

    /* Products Section */
    .page-1bet__products-section {
        padding: 60px 20px;
        background-color: var(--page-1bet-dark-bg);
    }

    .page-1bet__products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-1bet__product-card {
        background-color: var(--page-1bet-card-bg);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
        text-align: center;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid var(--page-1bet-border-color);
    }

    .page-1bet__product-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        margin-bottom: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-1bet__product-title {
        font-size: 1.4em;
        color: var(--page-1bet-secondary-color);
        margin-bottom: 8px;
        padding: 0 15px;
    }

    .page-1bet__product-description {
        color: var(--page-1bet-gray-text);
        font-size: 0.9em;
        padding: 0 15px;
        flex-grow: 1;
    }

    /* Features Section */
    .page-1bet__features-section {
        padding: 60px 20px;
        background-color: #22223B;
    }

    .page-1bet__features-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        list-style: none;
        padding: 0;
    }

    .page-1bet__feature-item {
        background-color: var(--page-1bet-card-bg);
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        border: 1px solid var(--page-1bet-border-color);
        box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-1bet__feature-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-1bet__feature-title {
        font-size: 1.6em;
        color: var(--page-1bet-primary-color);
        margin-bottom: 10px;
    }

    .page-1bet__feature-description {
        color: var(--page-1bet-gray-text);
        font-size: 0.9em;
    }

    /* FAQ Section */
    .page-1bet__faq-section {
        padding: 60px 20px;
        background-color: var(--page-1bet-dark-bg);
    }

    .page-1bet__faq-container {
        max-width: 900px;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
    }

    .page-1bet__faq-item {
        background-color: var(--page-1bet-card-bg);
        margin-bottom: 15px;
        border-radius: 8px;
        border: 1px solid var(--page-1bet-border-color);
    }

    .page-1bet__faq-item:last-child {
        margin-bottom: 0;
    }

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

    .page-1bet__faq-question:hover {
        background-color: #4A4A6A;
    }

    .page-1bet__faq-title {
        font-size: 1.2em;
        color: var(--page-1bet-light-text);
        margin: 0;
        pointer-events: none; /* Prevent text selection interference */
    }

    .page-1bet__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--page-1bet-primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent icon from blocking click */
    }

    .page-1bet__faq-item.active .page-1bet__faq-toggle {
        transform: rotate(45deg); /* Plus to X (minus) */
        color: var(--page-1bet-secondary-color);
    }

    .page-1bet__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding */
        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-1bet-gray-text);
        font-size: 0.95em;
        background-color: var(--page-1bet-card-bg);
        border-radius: 0 0 8px 8px;
    }

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

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

    .page-1bet__floating-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 50px;
        border-radius: 25px;
        font-weight: bold;
        font-size: 1.1em;
        text-decoration: none;
        color: var(--page-1bet-dark-bg);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-1bet__floating-button--register {
        background-color: var(--page-1bet-primary-color);
    }

    .page-1bet__floating-button--register:hover {
        background-color: #FFC700;
        transform: translateY(-3px);
    }

    .page-1bet__floating-button--login {
        background-color: var(--page-1bet-secondary-color);
    }

    .page-1bet__floating-button--login:hover {
        background-color: #009ACD;
        transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-1bet__section-title {
            font-size: 2em;
            margin-bottom: 30px;
        }

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

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

        .page-1bet__hero-actions {
            flex-direction: column;
            gap: 15px;
        }

        .page-1bet__button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-1bet__promotions-section,
        .page-1bet__products-section,
        .page-1bet__features-section,
        .page-1bet__faq-section {
            padding: 40px 15px;
        }

        .page-1bet__promotions-grid,
        .page-1bet__products-grid,
        .page-1bet__features-list {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-1bet__promotion-card,
        .page-1bet__product-card,
        .page-1bet__feature-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px; /* Adjust padding for smaller screens */
        }

        .page-1bet__feature-description,
        .page-1bet__promotion-description,
        .page-1bet__product-description,
        .page-1bet__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-1bet__feature-icon {
            width: 80px;
            height: 80px;
        }

        .page-1bet__faq-question {
            padding: 15px 20px;
        }

        .page-1bet__faq-title {
            font-size: 1.1em;
        }

        .page-1bet__faq-answer {
            padding: 0 20px; /* Initial padding */
        }
        .page-1bet__faq-item.active .page-1bet__faq-answer {
            padding: 15px 20px !important; /* Final padding */
        }

        .page-1bet__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 10px;
        }

        .page-1bet__floating-button {
            width: 100px;
            height: 45px;
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .page-1bet__hero-title {
            font-size: 2em;
        }
        .page-1bet__section-title {
            font-size: 1.8em;
        }
    }
  