
    :root {
        --page-12-be-primary-color: #e44d26; /* Orange-red for action/highlights */
        --page-12-be-secondary-color: #333; /* Dark gray for text */
        --page-12-be-background-color: #f5f5f5; /* Light gray background */
        --page-12-be-card-background: #ffffff; /* White card background */
        --page-12-be-text-color: #333; /* Dark text */
        --page-12-be-light-text-color: #666; /* Lighter text */
        --page-12-be-button-hover-color: #ff6f42; /* Lighter orange-red */
        --page-12-be-border-color: #eee;
        --page-12-be-border-radius: 8px;
        --page-12-be-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .page-12-be {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--page-12-be-text-color);
        line-height: 1.6;
        background-color: var(--page-12-be-background-color);
        padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-12-be__section-title {
        font-size: 2.5em;
        color: var(--page-12-be-primary-color);
        text-align: center;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .page-12-be__section-description {
        font-size: 1.1em;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px auto;
        color: var(--page-12-be-light-text-color);
    }

    .page-12-be__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: 600;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        text-decoration: none;
        color: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-12-be__button--primary {
        background-color: var(--page-12-be-primary-color);
    }

    .page-12-be__button--primary:hover {
        background-color: var(--page-12-be-button-hover-color);
        transform: translateY(-2px);
    }

    .page-12-be__button--secondary {
        background-color: #6c757d;
    }

    .page-12-be__button--secondary:hover {
        background-color: #5a6268;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-12-be__hero-section {
        position: relative;
        padding: 10px 20px 60px 20px; /* Small padding-top, relying on body for header offset */
        background-color: #2a2a2a;
        color: #fff;
        text-align: center;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 500px;
    }

    .page-12-be__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
        z-index: 1;
    }

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

    .page-12-be__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        font-weight: 800;
        color: var(--page-12-be-primary-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-12-be__hero-description {
        font-size: 1.4em;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-12-be__hero-cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    /* Floating Buttons */
    .page-12-be__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
    }

    .page-12-be__floating-button {
        padding: 10px 20px;
        font-size: 1em;
        border-radius: 30px;
        min-width: 120px;
    }

    .page-12-be__floating-button--register {
        background-color: var(--page-12-be-primary-color);
    }

    .page-12-be__floating-button--register:hover {
        background-color: var(--page-12-be-button-hover-color);
    }

    .page-12-be__floating-button--login {
        background-color: #007bff; /* Blue for login */
    }

    .page-12-be__floating-button--login:hover {
        background-color: #0056b3;
    }

    /* Games Section */
    .page-12-be__games-section,
    .page-12-be__promo-section,
    .page-12-be__about-section,
    .page-12-be__faq-section,
    .page-12-be__cta-bottom-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-12-be__games-grid,
    .page-12-be__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
        align-items: stretch;
    }

    .page-12-be__game-card,
    .page-12-be__promo-card {
        background-color: var(--page-12-be-card-background);
        border-radius: var(--page-12-be-border-radius);
        box-shadow: var(--page-12-be-shadow);
        overflow: hidden;
        text-align: center;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
    }

    .page-12-be__game-card:hover,
    .page-12-be__promo-card:hover {
        transform: translateY(-5px);
    }

    .page-12-be__game-image,
    .page-12-be__promo-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        margin-bottom: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-12-be__game-title,
    .page-12-be__promo-title {
        font-size: 1.5em;
        color: var(--page-12-be-primary-color);
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-12-be__game-text,
    .page-12-be__promo-text {
        font-size: 1em;
        color: var(--page-12-be-light-text-color);
        padding: 0 15px;
        flex-grow: 1;
    }

    .page-12-be__promo-cta {
        text-align: center;
        margin-top: 40px;
    }

    /* About Section */
    .page-12-be__about-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 30px;
    }

    .page-12-be__about-image {
        flex: 1 1 400px;
        max-width: 100%;
        height: auto;
        border-radius: var(--page-12-be-border-radius);
        box-shadow: var(--page-12-be-shadow);
        object-fit: cover;
    }

    .page-12-be__about-text {
        flex: 1 1 400px;
        font-size: 1.1em;
        color: var(--page-12-be-text-color);
    }

    .page-12-be__about-text p {
        margin-bottom: 15px;
    }

    /* FAQ Section */
    .page-12-be__faq-list {
        margin-top: 30px;
    }

    .page-12-be__faq-item {
        background-color: var(--page-12-be-card-background);
        border: 1px solid var(--page-12-be-border-color);
        border-radius: var(--page-12-be-border-radius);
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-12-be__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        cursor: pointer;
        user-select: none;
        background-color: #fcfcfc;
        border-bottom: 1px solid var(--page-12-be-border-color);
        transition: background-color 0.3s ease;
    }

    .page-12-be__faq-question:hover {
        background-color: #f0f0f0;
    }

    .page-12-be__faq-item.active .page-12-be__faq-question {
        background-color: var(--page-12-be-primary-color);
        color: #fff;
        border-bottom-color: var(--page-12-be-primary-color);
    }

    .page-12-be__faq-title {
        font-size: 1.2em;
        margin: 0;
        color: inherit;
        pointer-events: none; /* Prevent h3 from blocking click event */
        font-weight: 600;
    }

    .page-12-be__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: inherit;
        pointer-events: none; /* Prevent span from blocking click event */
        transition: transform 0.3s ease;
    }

    .page-12-be__faq-item.active .page-12-be__faq-toggle {
        transform: rotate(45deg);
    }

    .page-12-be__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        background-color: var(--page-12-be-card-background);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        color: var(--page-12-be-light-text-color);
    }

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

    .page-12-be__faq-answer p {
        margin: 0 0 10px 0;
    }

    .page-12-be__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* CTA Bottom Section */
    .page-12-be__cta-bottom-section {
        text-align: center;
        padding-top: 40px;
        padding-bottom: 100px; /* Ensure space for floating buttons */
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .page-12-be__hero-title {
            font-size: 3em;
        }
        .page-12-be__hero-description {
            font-size: 1.2em;
        }
        .page-12-be__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-12-be__hero-title {
            font-size: 2.2em;
        }
        .page-12-be__hero-description {
            font-size: 1em;
        }
        .page-12-be__hero-cta-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-12-be__button {
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
        }
        .page-12-be__floating-buttons {
            width: calc(100% - 40px);
            left: 20px;
            transform: translateX(0);
            justify-content: center;
        }
        .page-12-be__floating-button {
            flex: 1;
            min-width: unset;
            font-size: 0.9em;
        }

        .page-12-be__games-section, .page-12-be__promo-section, .page-12-be__about-section, .page-12-be__faq-section, .page-12-be__cta-bottom-section {
            padding: 40px 15px;
        }
        .page-12-be__section-title {
            font-size: 1.8em;
            margin-bottom: 15px;
        }
        .page-12-be__section-description {
            font-size: 0.95em;
            margin-bottom: 30px;
        }

        /* List item responsive requirements */
        .page-12-be__games-grid, .page-12-be__promo-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-12-be__game-card, .page-12-be__promo-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 0 15px 0 !important; /* Adjust padding for mobile */
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-12-be__game-image, .page-12-be__promo-image {
            height: 200px;
            max-width: 100% !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-12-be__game-title, .page-12-be__promo-title {
            font-size: 1.3em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-12-be__game-text, .page-12-be__promo-text {
            font-size: 0.9em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-12-be__about-content {
            flex-direction: column;
        }
        .page-12-be__about-image,
        .page-12-be__about-text {
            flex: 1 1 100%;
        }
        .page-12-be__faq-question {
            padding: 15px;
        }
        .page-12-be__faq-title {
            font-size: 1.1em;
        }
        .page-12-be__faq-toggle {
            font-size: 1.3em;
        }
        .page-12-be__faq-answer {
            padding: 0 15px;
        }
        .page-12-be__faq-item.active .page-12-be__faq-answer {
            padding: 15px !important;
        }
    }

    @media (max-width: 480px) {
        .page-12-be__hero-title {
            font-size: 1.8em;
        }
        .page-12-be__hero-description {
            font-size: 0.9em;
        }
        .page-12-be__button {
            padding: 10px 20px;
            font-size: 1em;
        }
        .page-12-be__floating-buttons {
            gap: 10px;
        }
        .page-12-be__floating-button {
            padding: 8px 15px;
            font-size: 0.85em;
        }
        .page-12-be__game-image, .page-12-be__promo-image {
            height: 180px;
        }
    }
  