.page-live {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF; /* Explicitly setting the page background */
    padding-top: var(--header-offset, 120px); /* Required for fixed header offset */
}

.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: 20px;
    font-weight: bold;
}

.page-live__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555555;
}

/* Hero Section */
.page-live__hero-section {
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF; /* Light text for dark background */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden; /* To contain the image if it overflows slightly */
}

.page-live__hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-live__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 1.2;
}

.page-live__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #F0F0F0;
    line-height: 1.5;
}

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

.page-live__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-live__button--register {
    background-color: #FFFFFF; /* Custom color for Register */
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-live__button--register:hover {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-live__button--login {
    background-color: #FCBC45; /* Custom color for Login */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-live__button--login:hover {
    background-color: transparent;
    color: #FCBC45;
    border-color: #FCBC45;
}

.page-live__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3; /* Subtle background image */
}

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

/* About Section */
.page-live__about-section {
    padding: 80px 0;
    background-color: #F8F8F8;
}

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

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

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

.page-live__feature-description {
    color: #666666;
    font-size: 0.95em;
}

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

.page-live__game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.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; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

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

.page-live__game-description {
    color: #666666;
    padding: 0 20px 20px;
    flex-grow: 1; /* Make description take available space */
}

.page-live__button--play {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    margin: 0 20px 20px;
    padding: 12px 25px;
}

.page-live__button--play:hover {
    background-color: #FCBC45;
    border-color: #FCBC45;
    color: #000000;
}

/* Get Started Section */
.page-live__get-started-section {
    padding: 80px 0;
    background-color: #F0F0F0;
}

.page-live__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-live__step-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    counter-increment: step-counter;
    position: relative;
    padding-top: 60px;
}

.page-live__step-item::before {
    content: counter(step-counter);
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FCBC45;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-live__step-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-live__step-description {
    color: #666666;
    font-size: 0.95em;
}

.page-live__cta-wrapper {
    text-align: center;
    margin-top: 60px;
}

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

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

/* Bonus Section */
.page-live__bonus-section {
    padding: 80px 0;
}

.page-live__bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-live__bonus-card {
    background-color: #000000; /* Dark background for bonus cards */
    color: #FFFFFF; /* Light text for dark background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-live__bonus-image {
    width: 100%;
    height: auto;
    max-height: 250px; /* Constrain image height */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-live__bonus-title {
    font-size: 1.8em;
    color: #FCBC45; /* Accent color for titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-live__bonus-description {
    color: #E0E0E0;
    margin-bottom: 25px;
    font-size: 0.95em;
    flex-grow: 1;
}

.page-live__button--claim,
.page-live__button--details {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    margin-top: auto; /* Push button to bottom */
}

.page-live__button--claim:hover,
.page-live__button--details:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #000000;
}

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

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

.page-live__security-text {
    flex: 1;
}

.page-live__security-subtitle {
    font-size: 1.6em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-live__security-description {
    color: #666666;
    margin-bottom: 20px;
}

.page-live__button--secondary {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 12px 25px;
}

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

.page-live__security-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-live__security-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-live__faq-section {
    padding: 80px 0;
}

.page-live__faq-accordion {
    margin-top: 50px;
}

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

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

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

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

.page-live__accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #666666;
}

.page-live__accordion-content.active {
    max-height: 200px; /* Adjust based on expected content height */
    padding: 20px;
}

.page-live__accordion-content p {
    margin-bottom: 0;
}

.page-live__button--support {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 12px 25px;
}

.page-live__button--support:hover {
    background-color: #000000;
    color: #FFFFFF;
}

/* Call to Action Section */
.page-live__call-to-action-section {
    background-color: #000000; /* Dark background for CTA */
    color: #FFFFFF; /* Light text for dark background */
    padding: 80px 20px;
    text-align: center;
}

.page-live__call-to-action-section .page-live__section-title {
    color: #FFFFFF;
}

.page-live__call-to-action-section .page-live__section-intro {
    color: #E0E0E0;
}

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

.page-live__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    min-width: 220px;
}

/* 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;
    }
    .page-live__security-content {
        flex-direction: column;
        text-align: center;
    }
    .page-live__security-image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    /* Required for mobile overflow prevention */
    .page-live img {
        max-width: 100%;
        height: auto;
    }

    .page-live__hero-section {
        padding: 60px 20px;
    }
    .page-live__hero-title {
        font-size: 2.5em;
    }
    .page-live__hero-description {
        font-size: 1em;
    }
    .page-live__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-live__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .page-live__features-grid,
    .page-live__game-cards,
    .page-live__steps-list,
    .page-live__bonus-cards {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 2em;
    }
    .page-live__section-title {
        font-size: 1.5em;
    }
    .page-live__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

/* Ensure content area images are not small */
/* This rule applies to any img within .page-live and ensures it's not smaller than 200px */
.page-live img {
    min-width: 200px;
    min-height: 200px;
    /* max-width: 100%; height: auto; are handled by responsive media query */
}

/* Explicitly override potential smaller sizes for content images if any */
.page-live__game-image,
.page-live__bonus-image,
.page-live__security-image {
    min-width: 200px;
    min-height: 200px;
}