.page-live {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

.page-live__hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    padding: 0;
}

.page-live__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.6); /* Slightly dim the background image for text readability, not changing color */
}

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

.page-live__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Main color for emphasis */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

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

.page-live__hero-actions {
    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, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    min-width: 180px;
}

.page-live__button--primary {
    background-color: #FFD700; /* Main color */
    color: #333333; /* Dark text for light button */
    border: 2px solid #FFD700;
}

.page-live__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-live__button--secondary {
    background-color: #8B0000; /* Auxiliary color */
    color: #ffffff; /* Light text for dark button */
    border: 2px solid #8B0000;
}

.page-live__button--secondary:hover {
    background-color: #6a0000;
    transform: translateY(-2px);
}

.page-live__button--small {
    padding: 10px 20px;
    font-size: 0.95em;
    min-width: 120px;
    background-color: #FFD700;
    color: #333333;
    border: none;
}

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

.page-live__introduction-section,
.page-live__games-section,
.page-live__experience-section,
.page-live__bonuses-section,
.page-live__getting-started-section,
.page-live__faq-section {
    padding: 60px 0;
    background-color: #333;
}

.page-live__dark-background {
    background-color: #222;
}

.page-live__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-live__section-text {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-live__text-center {
    text-align: center;
}

.page-live__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-live__link:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Game Grid */
.page-live__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live__game-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-live__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency, min 200px */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: brightness(0.9);
}

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

.page-live__card-description {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: center;
}

/* Feature Grid */
.page-live__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live__feature-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-live__feature-image {
    width: 100%;
    height: 200px; /* Min 200px */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-live__feature-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-live__feature-text {
    font-size: 1em;
    color: #e0e0e0;
}

/* Security List */
.page-live__security-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-live__security-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-live__list-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-live__list-description {
    font-size: 1em;
    color: #e0e0e0;
}

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

.page-live__bonus-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-live__bonus-image {
    width: 100%;
    height: 180px; /* Adjusted to maintain aspect ratio while remaining large, min 200px is preferred */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: brightness(0.9);
}

/* Mobile Section */
.page-live__mobile-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
}

.page-live__mobile-content {
    flex: 1;
}

.page-live__mobile-image-container {
    flex: 1;
    text-align: center;
}

.page-live__mobile-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    min-height: 200px;
}

.page-live__mobile-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    color: #f0f0f0;
}

.page-live__mobile-feature-item {
    margin-bottom: 10px;
    font-size: 1.1em;
    position: relative;
    padding-left: 25px;
}

.page-live__mobile-feature-item::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Getting Started Steps */
.page-live__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live__step-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.page-live__advantages-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-live__advantage-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-live__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-live__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-live__faq-answer {
    font-size: 1em;
    color: #e0e0e0;
    display: block;
    margin-top: 10px;
}

/* CTA Section */
.page-live__cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-live__cta-content {
    max-width: 800px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-live__hero-title {
        font-size: 2.8em;
    }
    .page-live__section-title {
        font-size: 2em;
    }
    .page-live__hero-content {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-live {
        padding-top: var(--header-offset, 120px);
    }

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

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

    .page-live__hero-actions {
        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-text {
        font-size: 1em;
    }

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

    .page-live__mobile-layout {
        flex-direction: column;
        text-align: center;
    }

    .page-live__mobile-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

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

    .page-live img {
        max-width: 100%;
        height: auto;
    }
    .page-live__game-image,
    .page-live__feature-image,
    .page-live__bonus-image,
    .page-live__mobile-image {
        width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 1.8em;
    }
    .page-live__hero-description {
        font-size: 0.9em;
    }
    .page-live__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-live__section-title {
        font-size: 1.5em;
    }
    .page-live__card-title, .page-live__feature-title, .page-live__list-title, .page-live__faq-question {
        font-size: 1.2em;
    }
    .page-live__game-image,
    .page-live__feature-image,
    .page-live__bonus-image,
    .page-live__mobile-image {
        min-width: 200px;
        min-height: 200px;
    }
}

/* Ensure no content area image has width/height less than 200px */
.page-live img:not(.shared-header img):not(.shared-footer img) {
    min-width: 200px;
    min-height: 200px;
}

.page-live__game-image,
.page-live__feature-image,
.page-live__bonus-image,
.page-live__mobile-image {
    min-width: 200px;
    min-height: 200px;
}

/* Ensure no filter is used to change image color */
.page-live img {
    filter: none;
}
.page-live__hero-image {
    filter: brightness(0.6);
}