
    /* Color Palette */
    :root {
        --page-555-live-primary-bg: #1a1a2e; /* Dark background */
        --page-555-live-secondary-bg: #16213e; /* Slightly lighter dark */
        --page-555-live-accent-color: #e94560; /* Red/Pink accent */
        --page-555-live-text-color: #e0e0e0; /* Light text */
        --page-555-live-light-text-color: #ffffff; /* White text for contrast */
        --page-555-live-border-color: #0f3460; /* Darker blue for borders */
        --page-555-live-button-hover: #b82a43; /* Darker red for hover */
        --page-555-live-shadow-color: rgba(0, 0, 0, 0.5);
        --page-555-live-faq-question-bg: #2b3a55;
        --page-555-live-faq-answer-bg: #16213e;
    }

    .page-555-live {
        font-family: 'Arial', sans-serif;
        color: var(--page-555-live-text-color);
        background-color: var(--page-555-live-primary-bg);
        line-height: 1.6;
        padding-top: 10px; /* Small top padding, assuming body has header offset */
    }

    /* Ensure images are responsive */
    .page-555-live img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Responsive images for mobile */
    @media (max-width: 768px) {
        .page-555-live img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }

    .page-555-live__section-title {
        font-size: 2.5em;
        color: var(--page-555-live-light-text-color);
        text-align: center;
        margin-bottom: 40px;
        padding-top: 40px;
        position: relative;
    }

    .page-555-live__section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background-color: var(--page-555-live-accent-color);
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .page-555-live__section-description {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px;
        font-size: 1.1em;
        color: var(--page-555-live-text-color);
    }

    /* Hero Section */
    .page-555-live__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 60px 20px;
        background-color: var(--page-555-live-secondary-bg);
        border-radius: 10px;
        margin: 20px;
        box-shadow: 0 5px 15px var(--page-555-live-shadow-color);
    }

    .page-555-live__hero-content {
        max-width: 900px;
        margin-bottom: 40px;
    }

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

    .page-555-live__highlight {
        color: var(--page-555-live-accent-color);
    }

    .page-555-live__hero-description {
        font-size: 1.3em;
        color: var(--page-555-live-text-color);
        margin-bottom: 30px;
    }

    .page-555-live__action-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .page-555-live__button {
        padding: 15px 30px;
        border: none;
        border-radius: 5px;
        font-size: 1.1em;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none; /* For potential <a> tags */
        display: inline-block;
        text-align: center;
    }

    .page-555-live__button--primary {
        background-color: var(--page-555-live-accent-color);
        color: var(--page-555-live-light-text-color);
    }

    .page-555-live__button--primary:hover {
        background-color: var(--page-555-live-button-hover);
        transform: translateY(-2px);
    }

    .page-555-live__button--secondary {
        background-color: transparent;
        color: var(--page-555-live-accent-color);
        border: 2px solid var(--page-555-live-accent-color);
    }

    .page-555-live__button--secondary:hover {
        background-color: var(--page-555-live-accent-color);
        color: var(--page-555-live-light-text-color);
        transform: translateY(-2px);
    }

    .page-555-live__hero-image-wrapper {
        width: 100%;
        max-width: 900px;
        margin-top: 40px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px var(--page-555-live-shadow-color);
    }

    .page-555-live__hero-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Promotions Section */
    .page-555-live__promotions-section {
        padding: 60px 20px;
    }

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

    .page-555-live__promotion-card {
        background-color: var(--page-555-live-secondary-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px var(--page-555-live-shadow-color);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-555-live__promotion-card:hover {
        transform: translateY(-5px);
    }

    .page-555-live__promotion-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
    }

    .page-555-live__card-title {
        font-size: 1.5em;
        color: var(--page-555-live-light-text-color);
        margin: 20px 15px 10px;
    }

    .page-555-live__card-description {
        font-size: 1em;
        color: var(--page-555-live-text-color);
        padding: 0 15px 20px;
    }

    /* Games Section */
    .page-555-live__games-section {
        padding: 60px 20px;
    }

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

    .page-555-live__game-category-card {
        background-color: var(--page-555-live-secondary-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px var(--page-555-live-shadow-color);
        text-align: center;
        transition: transform 0.3s ease;
        padding-bottom: 20px;
    }

    .page-555-live__game-category-card:hover {
        transform: translateY(-5px);
    }

    .page-555-live__category-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .page-555-live__category-title {
        font-size: 1.4em;
        color: var(--page-555-live-light-text-color);
        margin: 0 15px 10px;
    }

    .page-555-live__category-text {
        font-size: 0.95em;
        color: var(--page-555-live-text-color);
        padding: 0 15px;
    }

    /* Why Choose Us Section */
    .page-555-live__why-choose-us-section {
        padding: 60px 20px;
        background-color: var(--page-555-live-primary-bg);
    }

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

    .page-555-live__feature-item {
        background-color: var(--page-555-live-secondary-bg);
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 10px var(--page-555-live-shadow-color);
        transition: transform 0.3s ease;
    }

    .page-555-live__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-555-live__feature-image {
        width: 100%; /* Ensure images are responsive within their container */
        max-width: 250px; /* Adjust max-width as needed */
        height: auto;
        object-fit: contain;
        margin: 0 auto 20px;
    }

    .page-555-live__feature-title {
        font-size: 1.6em;
        color: var(--page-555-live-light-text-color);
        margin-bottom: 15px;
    }

    .page-555-live__feature-description {
        font-size: 1em;
        color: var(--page-555-live-text-color);
    }

    /* Providers Section */
    .page-555-live__providers-section {
        padding: 60px 20px;
        text-align: center;
    }

    .page-555-live__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller minmax for logos */
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto;
        align-items: center;
        justify-items: center;
    }

    .page-555-live__provider-link {
        display: block;
        padding: 10px;
        background-color: var(--page-555-live-secondary-bg);
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 2px 8px var(--page-555-live-shadow-color);
    }

    .page-555-live__provider-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px var(--page-555-live-shadow-color);
    }

    .page-555-live__provider-logo {
        width: 100%;
        max-width: 120px; /* Ensure logos are not too large */
        height: auto;
        object-fit: contain;
    }

    /* FAQ Section */
    .page-555-live__faq-section {
        padding: 60px 20px;
        background-color: var(--page-555-live-secondary-bg);
    }

    .page-555-live__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-555-live__faq-item {
        background-color: var(--page-555-live-faq-question-bg);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px var(--page-555-live-shadow-color);
    }

    .page-555-live__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: var(--page-555-live-faq-question-bg);
        transition: background-color 0.3s ease;
    }

    .page-555-live__faq-question:hover {
        background-color: #3b4d6e; /* Slightly lighter on hover */
    }

    .page-555-live__faq-title {
        font-size: 1.2em;
        color: var(--page-555-live-light-text-color);
        margin: 0;
        pointer-events: none; /* Prevent text from blocking click event */
    }

    .page-555-live__faq-toggle {
        font-size: 1.8em;
        color: var(--page-555-live-accent-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent icon from blocking click event */
        line-height: 1; /* Ensure + and - are vertically centered */
    }

    .page-555-live__faq-item.active .page-555-live__faq-toggle {
        transform: rotate(45deg); /* Change + to X (or similar) */
        color: var(--page-555-live-light-text-color);
    }

    .page-555-live__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: var(--page-555-live-faq-answer-bg);
        color: var(--page-555-live-text-color);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .page-555-live__faq-answer p {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 1em;
    }

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

    /* CTA Section */
    .page-555-live__cta-section {
        padding: 80px 20px;
        text-align: center;
        background-color: var(--page-555-live-primary-bg);
    }

    .page-555-live__cta-description {
        font-size: 1.2em;
        max-width: 800px;
        margin: 0 auto 40px;
        color: var(--page-555-live-text-color);
    }

    .page-555-live__cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    /* Floating Buttons */
    .page-555-live__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        background-color: rgba(26, 26, 46, 0.9); /* Semi-transparent background */
        padding: 10px 20px;
        border-radius: 50px;
        box-shadow: 0 4px 15px var(--page-555-live-shadow-color);
    }

    .page-555-live__floating-button {
        padding: 12px 25px;
        border: none;
        border-radius: 30px;
        font-size: 1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-transform: uppercase;
    }

    .page-555-live__floating-button--register {
        background-color: var(--page-555-live-accent-color);
        color: var(--page-555-live-light-text-color);
    }

    .page-555-live__floating-button--register:hover {
        background-color: var(--page-555-live-button-hover);
        transform: translateY(-2px);
    }

    .page-555-live__floating-button--login {
        background-color: var(--page-555-live-secondary-bg);
        color: var(--page-555-live-accent-color);
        border: 2px solid var(--page-555-live-accent-color);
    }

    .page-555-live__floating-button--login:hover {
        background-color: var(--page-555-live-accent-color);
        color: var(--page-555-live-light-text-color);
        transform: translateY(-2px);
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .page-555-live {
            padding-top: 5px; /* Adjust for smaller screens */
        }

        .page-555-live__main-title {
            font-size: 2.2em;
        }

        .page-555-live__hero-description {
            font-size: 1.1em;
        }

        .page-555-live__action-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-555-live__button {
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
        }

        .page-555-live__section-title {
            font-size: 1.8em;
        }

        .page-555-live__section-description,
        .page-555-live__card-description,
        .page-555-live__category-text,
        .page-555-live__feature-description,
        .page-555-live__cta-description {
            font-size: 0.95em;
        }

        .page-555-live__promotion-grid,
        .page-555-live__game-categories,
        .page-555-live__features-grid,
        .page-555-live__providers-grid {
            grid-template-columns: 1fr;
        }

        .page-555-live__promotion-card,
        .page-555-live__game-category-card,
        .page-555-live__feature-item,
        .page-555-live__provider-link {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px !important; /* Ensure padding is appropriate */
            padding-right: 15px !important; /* Ensure padding is appropriate */
        }

        .page-555-live__faq-question {
            padding: 15px 20px;
        }

        .page-555-live__faq-title {
            font-size: 1.1em;
        }

        .page-555-live__faq-answer {
            padding: 15px 20px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-555-live__cta-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-555-live__floating-buttons {
            bottom: 15px;
            gap: 10px;
            padding: 8px 15px;
        }

        .page-555-live__floating-button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
    }
  