
    :root {
        --page-77bed-primary-color: #e44d26; /* A vibrant red/orange, common in betting sites */
        --page-77bed-secondary-color: #333;
        --page-77bed-accent-color: #f7b731; /* Gold/yellow for highlights */
        --page-77bed-background-dark: #1a1a1a;
        --page-77bed-background-light: #2c2c2c;
        --page-77bed-text-color-light: #ffffff;
        --page-77bed-text-color-dark: #cccccc;
        --page-77bed-border-color: #444;
        --page-77bed-spacing-sm: 10px;
        --page-77bed-spacing-md: 20px;
        --page-77bed-spacing-lg: 40px;
        --page-77bed-max-width: 1200px;
    }

    .page-77bed {
        font-family: 'Arial', sans-serif;
        color: var(--page-77bed-text-color-light);
        background-color: var(--page-77bed-background-dark);
        line-height: 1.6;
        padding-top: 10px; /* Small padding for hero/first section, assuming body has header offset */
    }

    .page-77bed__container {
        max-width: var(--page-77bed-max-width);
        margin: 0 auto;
        padding: 0 var(--page-77bed-spacing-md);
        box-sizing: border-box;
    }

    .page-77bed__section-title {
        font-size: 2.5em;
        color: var(--page-77bed-accent-color);
        text-align: center;
        margin-bottom: var(--page-77bed-spacing-lg);
        font-weight: bold;
        line-height: 1.2;
    }

    .page-77bed__text-content {
        font-size: 1.1em;
        color: var(--page-77bed-text-color-dark);
        text-align: center;
        margin-bottom: var(--page-77bed-spacing-md);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-77bed__button {
        display: inline-block;
        padding: var(--page-77bed-spacing-sm) var(--page-77bed-spacing-md);
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        cursor: pointer;
        border: none;
    }

    .page-77bed__button--primary {
        background-color: var(--page-77bed-primary-color);
        color: var(--page-77bed-text-color-light);
        font-size: 1.2em;
        padding: 12px 25px;
    }

    .page-77bed__button--primary:hover {
        background-color: #c23d1a; /* Darken primary color */
        transform: translateY(-2px);
    }

    .page-77bed__button--secondary {
        background-color: var(--page-77bed-accent-color);
        color: var(--page-77bed-background-dark);
        font-size: 1em;
        padding: 10px 20px;
    }

    .page-77bed__button--secondary:hover {
        background-color: #d19a27; /* Darken accent color */
        transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-77bed__floating-buttons {
        position: fixed;
        bottom: var(--page-77bed-spacing-md);
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: var(--page-77bed-spacing-sm);
        z-index: 1000;
        width: auto;
    }

    .page-77bed__button--register,
    .page-77bed__button--login {
        flex: 1;
        white-space: nowrap;
        font-size: 1.1em;
        padding: 10px 20px;
    }

    .page-77bed__button--register {
        background-color: var(--page-77bed-primary-color);
        color: var(--page-77bed-text-color-light);
    }

    .page-77bed__button--register:hover {
        background-color: #c23d1a;
    }

    .page-77bed__button--login {
        background-color: var(--page-77bed-accent-color);
        color: var(--page-77bed-background-dark);
    }

    .page-77bed__button--login:hover {
        background-color: #d19a27;
    }

    /* Hero Section */
    .page-77bed__hero-section {
        position: relative;
        width: 100%;
        height: 60vh; /* Adjust height for mobile first */
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        margin-bottom: var(--page-77bed-spacing-lg);
        padding-top: 10px; /* Small padding, assuming body handles header offset */
    }

    .page-77bed__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .page-77bed__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.6); /* Darken image for text readability, not color change */
        display: block;
        max-width: 100% !important; /* Mobile responsive */
    }

    .page-77bed__hero-content {
        position: relative;
        z-index: 1;
        color: var(--page-77bed-text-color-light);
        max-width: 90%;
    }

    .page-77bed__hero-title {
        font-size: 2.2em;
        margin-bottom: var(--page-77bed-spacing-sm);
        font-weight: bold;
        color: var(--page-77bed-accent-color);
    }

    .page-77bed__hero-subtitle {
        font-size: 1.1em;
        margin-bottom: var(--page-77bed-spacing-md);
        color: var(--page-77bed-text-color-light);
    }

    /* About Section */
    .page-77bed__about-section {
        padding: var(--page-77bed-spacing-lg) 0;
        background-color: var(--page-77bed-background-light);
        margin-bottom: var(--page-77bed-spacing-lg);
    }

    /* Games Section */
    .page-77bed__games-section {
        padding: var(--page-77bed-spacing-lg) 0;
        background-color: var(--page-77bed-background-dark);
        margin-bottom: var(--page-77bed-spacing-lg);
    }

    .page-77bed__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--page-77bed-spacing-md);
        justify-content: center;
    }

    .page-77bed__game-item {
        background-color: var(--page-77bed-background-light);
        border-radius: 8px;
        overflow: hidden;
        text-align: center;
        padding-bottom: var(--page-77bed-spacing-md);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .page-77bed__game-item:hover {
        transform: translateY(-5px);
    }

    .page-77bed__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin-bottom: var(--page-77bed-spacing-sm);
        display: block;
        max-width: 100% !important; /* Mobile responsive */
        box-sizing: border-box;
    }

    .page-77bed__game-title {
        font-size: 1.5em;
        color: var(--page-77bed-accent-color);
        margin-bottom: var(--page-77bed-spacing-sm);
        padding: 0 var(--page-77bed-spacing-sm);
    }

    .page-77bed__game-description {
        font-size: 0.95em;
        color: var(--page-77bed-text-color-dark);
        padding: 0 var(--page-77bed-spacing-sm);
    }

    /* Promotions Section */
    .page-77bed__promotions-section {
        padding: var(--page-77bed-spacing-lg) 0;
        background-color: var(--page-77bed-primary-color);
        margin-bottom: var(--page-77bed-spacing-lg);
    }

    .page-77bed__promotions-section .page-77bed__section-title {
        color: var(--page-77bed-text-color-light);
    }

    .page-77bed__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--page-77bed-spacing-md);
        justify-content: center;
        margin-bottom: var(--page-77bed-spacing-lg);
    }

    .page-77bed__promo-item {
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        overflow: hidden;
        text-align: center;
        padding-bottom: var(--page-77bed-spacing-md);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .page-77bed__promo-item:hover {
        transform: translateY(-5px);
    }

    .page-77bed__promo-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin-bottom: var(--page-77bed-spacing-sm);
        display: block;
        max-width: 100% !important; /* Mobile responsive */
        box-sizing: border-box;
    }

    .page-77bed__promo-title {
        font-size: 1.4em;
        color: var(--page-77bed-accent-color);
        margin-bottom: var(--page-77bed-spacing-sm);
        padding: 0 var(--page-77bed-spacing-sm);
    }

    .page-77bed__promo-description {
        font-size: 0.9em;
        color: var(--page-77bed-text-color-light);
        padding: 0 var(--page-77bed-spacing-sm);
    }

    .page-77bed__button-wrapper {
        text-align: center;
        margin-top: var(--page-77bed-spacing-md);
    }

    /* Features Section (Why Choose Us) */
    .page-77bed__features-section {
        padding: var(--page-77bed-spacing-lg) 0;
        background-color: var(--page-77bed-background-light);
        margin-bottom: var(--page-77bed-spacing-lg);
    }

    .page-77bed__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--page-77bed-spacing-md);
        justify-content: center;
    }

    .page-77bed__feature-item {
        background-color: var(--page-77bed-background-dark);
        border-radius: 8px;
        padding: var(--page-77bed-spacing-md);
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .page-77bed__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-77bed__feature-icon {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin: 0 auto var(--page-77bed-spacing-sm);
        display: block;
        max-width: 100% !important; /* Mobile responsive */
        box-sizing: border-box;
    }

    .page-77bed__feature-title {
        font-size: 1.3em;
        color: var(--page-77bed-accent-color);
        margin-bottom: var(--page-77bed-spacing-sm);
    }

    .page-77bed__feature-description {
        font-size: 0.9em;
        color: var(--page-77bed-text-color-dark);
    }

    /* FAQ Section */
    .page-77bed__faq-section {
        padding: var(--page-77bed-spacing-lg) 0;
        background-color: var(--page-77bed-background-dark);
        margin-bottom: var(--page-77bed-spacing-lg);
    }

    .page-77bed__faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-77bed__faq-item {
        background-color: var(--page-77bed-background-light);
        border-radius: 8px;
        margin-bottom: var(--page-77bed-spacing-sm);
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-77bed__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--page-77bed-spacing-md);
        cursor: pointer;
        user-select: none;
        background-color: var(--page-77bed-secondary-color);
        color: var(--page-77bed-text-color-light);
        border-bottom: 1px solid var(--page-77bed-border-color);
        transition: background-color 0.3s ease;
    }

    .page-77bed__faq-question:hover {
        background-color: #444;
    }

    .page-77bed__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        font-weight: bold;
        color: var(--page-77bed-accent-color);
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-77bed__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--page-77bed-primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click on parent div */
    }

    .page-77bed__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 var(--page-77bed-spacing-md);
        background-color: var(--page-77bed-background-light);
        color: var(--page-77bed-text-color-dark);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .page-77bed__faq-item.active .page-77bed__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to show content */
        padding: var(--page-77bed-spacing-md) !important;
        opacity: 1;
    }

    .page-77bed__faq-answer p {
        margin: 0;
        padding-bottom: var(--page-77bed-spacing-sm);
        font-size: 1em;
    }

    /* Call to Action Section */
    .page-77bed__cta-section {
        padding: var(--page-77bed-spacing-lg) 0;
        background-color: var(--page-77bed-background-dark);
        text-align: center;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-77bed__section-title {
            font-size: 2em;
        }
        .page-77bed__hero-title {
            font-size: 1.8em;
        }
        .page-77bed__hero-subtitle {
            font-size: 1em;
        }
    }

    @media (max-width: 768px) {
        .page-77bed__container {
            padding: 0 var(--page-77bed-spacing-sm);
        }

        .page-77bed__floating-buttons {
            width: calc(100% - 2 * var(--page-77bed-spacing-md));
            bottom: var(--page-77bed-spacing-sm);
            gap: var(--page-77bed-spacing-sm);
        }
        .page-77bed__button--register,
        .page-77bed__button--login {
            font-size: 1em;
            padding: 8px 15px;
        }

        .page-77bed__hero-section {
            height: 50vh;
            min-height: 300px;
        }
        .page-77bed__hero-title {
            font-size: 1.6em;
        }
        .page-77bed__hero-subtitle {
            font-size: 0.9em;
        }
        .page-77bed__button--primary {
            font-size: 1em;
            padding: 10px 20px;
        }

        .page-77bed__section-title {
            font-size: 1.8em;
            margin-bottom: var(--page-77bed-spacing-md);
        }
        .page-77bed__text-content {
            font-size: 1em;
        }

        .page-77bed__game-grid,
        .page-77bed__promo-grid,
        .page-77bed__features-grid {
            grid-template-columns: 1fr; /* Stack items vertically */
        }

        .page-77bed__game-item,
        .page-77bed__promo-item,
        .page-77bed__feature-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: var(--page-77bed-spacing-sm);
            padding-right: var(--page-77bed-spacing-sm);
        }
        .page-77bed__game-image,
        .page-77bed__promo-image,
        .page-77bed__feature-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-77bed__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-77bed__faq-item.active .page-77bed__faq-answer {
          padding: var(--page-77bed-spacing-sm) !important; /* Adjust padding for mobile */
        }
        .page-77bed__faq-question {
            padding: var(--page-77bed-spacing-sm);
        }
        .page-77bed__faq-question h3 {
            font-size: 1em;
        }
        .page-77bed__faq-toggle {
            font-size: 1.5em;
        }
    }

    @media (max-width: 480px) {
        .page-77bed__hero-title {
            font-size: 1.4em;
        }
        .page-77bed__hero-subtitle {
            font-size: 0.85em;
        }
        .page-77bed__section-title {
            font-size: 1.5em;
        }
        .page-77bed__button--primary {
            padding: 8px 15px;
            font-size: 0.9em;
        }
    }
  