.page-live {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-live__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-live__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    position: relative;
}

.page-live__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FCBC45;
    border-radius: 2px;
}

.page-live__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-live__button--primary {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-live__button--primary:hover {
    background-color: #e0a53b;
    color: #000000;
}

.page-live__button--secondary {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
}

.page-live__button--secondary:hover {
    background-color: #f0f0f0;
}

.page-live__button--small {
    padding: 8px 15px;
    font-size: 0.9em;
    background-color: #FCBC45;
    color: #000000;
    border: 1px solid #FCBC45;
}

.page-live__button--small:hover {
    background-color: #e0a53b;
}

/* Hero Section */
.page-live__hero-section {
    position: relative;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
    padding: 0;
}

.page-live__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-live__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
    border-radius: 10px;
}

.page-live__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login button color for title emphasis */
}

.page-live__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-live__hero-actions .page-live__button {
    margin: 0 10px;
}

/* Why Choose Section */
.page-live__why-choose-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

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

.page-live__feature-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-live__feature-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-live__feature-description {
    color: #555555;
}

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

.page-live__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-live__game-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-live__game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-live__game-title {
    font-size: 1.4em;
    color: #000000;
    margin: 20px 0 10px;
}

.page-live__game-description {
    color: #555555;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-live__game-card .page-live__button--small {
    margin-top: auto;
    margin-bottom: 20px;
}

/* How to Start Section */
.page-live__how-to-start-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-live__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-live__step-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.page-live__step-number {
    font-size: 3em;
    color: #FCBC45;
    font-weight: bold;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    border: 3px solid #FCBC45;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-live__step-title {
    font-size: 1.4em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-live__step-description {
    color: #555555;
    margin-bottom: 20px;
}

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

.page-live__promo-card {
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page-live__promo-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-live__promo-content {
    padding: 30px;
    text-align: center;
}

.page-live__promo-title {
    font-size: 2em;
    color: #FCBC45;
    margin-bottom: 15px;
}

.page-live__promo-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Security Section */
.page-live__security-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-live__security-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-live__security-image {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    min-width: 200px; /* Enforce min-size for content images */
    min-height: 200px;
}

.page-live__security-text {
    width: 50%;
    color: #555555;
}

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

/* Responsible Gaming Section */
.page-live__responsible-gaming-section {
    padding: 60px 0;
    text-align: center;
}

.page-live__responsible-gaming-text {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #555555;
}

/* FAQ Section */
.page-live__faq-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

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

.page-live__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-live__faq-question {
    font-size: 1.2em;
    color: #000000;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.page-live__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-live__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-live__faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #555555;
}

.page-live__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px;
}

/* CTA Section */
.page-live__cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: #000000;
    color: #FFFFFF;
}

.page-live__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-live__hero-title {
        font-size: 3em;
    }

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

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

@media (max-width: 768px) {
    .page-live__hero-title {
        font-size: 2.5em;
    }

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

    .page-live__hero-actions .page-live__button {
        margin: 10px 0;
        display: block;
    }

    .page-live__features-grid,
    .page-live__games-grid,
    .page-live__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-live__security-content {
        flex-direction: column;
        text-align: center;
    }

    .page-live__security-image,
    .page-live__security-text {
        width: 100%;
    }

    .page-live__promo-card {
        flex-direction: column;
    }

    .page-live__promo-image {
        height: auto;
    }

    /* Ensure content images do not overflow on mobile */
    .page-live img {
        max-width: 100%;
        height: auto;
    }

    .page-live__hero-image {
        min-width: 200px; /* Minimum size for hero image */
        min-height: 200px;
    }

    .page-live__game-image {
        min-width: 200px; /* Minimum size for game images */
        min-height: 200px;
    }

    .page-live__promo-image {
        min-width: 200px; /* Minimum size for promo images */
        min-height: 200px;
    }

    .page-live__security-image {
        min-width: 200px; /* Minimum size for security image */
        min-height: 200px;
    }

    .page-live__button--primary, .page-live__button--secondary {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}

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

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

    .page-live__promo-title {
        font-size: 1.5em;
    }
}