.page-live {
    color: #333333; /* Dark text for default light body background */
}

.page-live__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    padding-bottom: 60px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.page-live__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-live__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-live__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-live__button--primary {
    background-color: #FFD700;
    color: #8B0000;
    border: 2px solid #FFD700;
}

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

.page-live__button--secondary {
    background-color: #8B0000;
    color: #FFD700;
    border: 2px solid #FFD700;
}

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

.page-live__section-title {
    font-size: 2.8em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-live__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.page-live__why-choose-section,
.page-live__popular-games-section,
.page-live__how-to-start-section,
.page-live__bonuses-section,
.page-live__support-section,
.page-live__faq-section,
.page-live__final-cta-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.page-live__feature-card,
.page-live__game-card,
.page-live__step-card {
    background-color: #fdfdfd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-live__feature-card:hover,
.page-live__game-card:hover,
.page-live__step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-live__feature-icon,
.page-live__game-image,
.page-live__step-icon {
    width: 100%;
    max-width: 400px; /* Ensures images are not too wide */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-live__feature-title,
.page-live__game-title,
.page-live__step-title {
    font-size: 1.6em;
    color: #8B0000;
    margin-bottom: 15px;
}

.page-live__feature-description,
.page-live__game-description,
.page-live__step-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-live__game-card .page-live__button,
.page-live__step-card .page-live__button {
    margin-top: auto;
}

.page-live__bonuses-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-live__bonus-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.page-live__bonus-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-live__bonus-text p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555555;
}

.page-live__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
}

.page-live__faq-question {
    font-size: 1.4em;
    color: #8B0000;
    margin-bottom: 10px;
}

.page-live__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
}

.page-live__final-cta-section {
    text-align: center;
    background-color: #FFD700;
    color: #8B0000;
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-live__final-cta-section .page-live__section-title {
    color: #8B0000;
}

.page-live__final-cta-section .page-live__section-title::after {
    background-color: #8B0000;
}

.page-live__final-cta-section .page-live__section-intro {
    color: #6a0000;
}

.page-live__final-cta-section .page-live__button--primary {
    background-color: #8B0000;
    color: #FFD700;
    border-color: #8B0000;
}

.page-live__final-cta-section .page-live__button--primary:hover {
    background-color: #6a0000;
    border-color: #6a0000;
}

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

@media (max-width: 768px) {
    .page-live__hero-title {
        font-size: 2.5em;
    }
    .page-live__hero-description {
        font-size: 1em;
    }
    .page-live__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-live__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-live__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-live__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-live__features-grid,
    .page-live__games-grid,
    .page-live__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-live__bonus-content {
        flex-direction: column;
    }
    /* Mobile image overflow prevention */
    .page-live img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-live__hero-section {
        padding-bottom: 40px;
    }
    .page-live__why-choose-section,
    .page-live__popular-games-section,
    .page-live__how-to-start-section,
    .page-live__bonuses-section,
    .page-live__support-section,
    .page-live__faq-section,
    .page-live__final-cta-section {
        margin: 40px auto;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 2em;
    }
    .page-live__hero-description {
        font-size: 0.9em;
    }
    .page-live__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-live__section-title {
        font-size: 1.6em;
    }
    .page-live__feature-title,
    .page-live__game-title,
    .page-live__step-title {
        font-size: 1.4em;
    }
    .page-live__faq-question {
        font-size: 1.2em;
    }
}