.page-live {
    color: #333333; /* Dark text for default white body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-live__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-live__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.1));
    padding-bottom: 80px;
}

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

.page-live__hero-title {
    font-size: 3.2em;
    color: #8B0000;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

.page-live__hero-image-container {
    width: 100%;
    max-width: 1000px;
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.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, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__button--primary {
    background-color: #FFD700;
    color: #8B0000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-live__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-live__button--secondary {
    background-color: #8B0000;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page-live__button--secondary:hover {
    background-color: #6a0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

.page-live__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-live__section-title {
    font-size: 2.5em;
    color: #8B0000;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.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;
    color: #666666;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-live__features-grid, .page-live__games-grid, .page-live__steps-grid, .page-live__bonuses-grid, .page-live__faq-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, .page-live__bonus-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-live__feature-card:hover, .page-live__game-card:hover, .page-live__step-card:hover, .page-live__bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-live__feature-image, .page-live__game-image, .page-live__bonus-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Ensure images are not too small */
    min-width: 200px;
    min-height: 200px;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.page-live__feature-description, .page-live__game-description, .page-live__step-description, .page-live__bonus-description, .page-live__faq-answer {
    font-size: 1em;
    color: #555555;
    flex-grow: 1;
}

.page-live__security-section {
    background-color: #f9f9f9;
}

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

.page-live__security-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-live__security-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
}

.page-live__security-item {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #444444;
}

.page-live__security-item strong {
    color: #8B0000;
}

.page-live__mobile-section {
    background-color: #ffffff;
}

.page-live__mobile-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.page-live__mobile-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-live__mobile-text {
    text-align: left;
    max-width: 500px;
}

.page-live__mobile-subtitle {
    font-size: 1.8em;
    color: #8B0000;
    margin-bottom: 15px;
}

.page-live__mobile-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

.page-live__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    text-align: left;
    transition: border-color 0.3s ease;
}

.page-live__faq-item:hover {
    border-color: #FFD700;
}

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

.page-live__faq-answer {
    font-size: 0.95em;
    color: #666666;
    display: none;
    margin-top: 10px;
}

.page-live__faq-item.active .page-live__faq-answer {
    display: block;
}

.page-live__cta-section {
    background-color: #8B0000;
    color: #ffffff;
    padding: 80px 20px;
}

.page-live__cta-section .page-live__section-title {
    color: #FFD700;
}

.page-live__cta-section .page-live__section-title::after {
    background-color: #FFD700;
}

.page-live__cta-section .page-live__section-intro {
    color: #f0f0f0;
    margin-bottom: 40px;
}

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

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

@media (max-width: 768px) {
    .page-live__hero-section {
        flex-direction: column;
        padding-top: var(--header-offset, 120px);
        padding-bottom: 60px;
    }
    .page-live__hero-title {
        font-size: 2.2em;
    }
    .page-live__hero-description {
        font-size: 1em;
    }
    .page-live__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-live__button {
        width: 100%;
        max-width: 300px;
    }
    .page-live__section {
        padding: 40px 15px;
    }
    .page-live__section-title {
        font-size: 1.8em;
    }
    .page-live__section-intro {
        font-size: 0.95em;
    }
    .page-live__security-content, .page-live__mobile-content {
        flex-direction: column;
        gap: 30px;
    }
    .page-live__security-image, .page-live__mobile-image {
        max-width: 100%;
    }
    .page-live__security-list, .page-live__mobile-text {
        max-width: 100%;
    }
    .page-live__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    /* Ensure content images do not overflow on mobile */
    .page-live img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-live__feature-image, .page-live__game-image, .page-live__bonus-image, .page-live__security-image, .page-live__mobile-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 1.8em;
    }
    .page-live__section-title {
        font-size: 1.5em;
    }
    .page-live__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-live__features-grid, .page-live__games-grid, .page-live__steps-grid, .page-live__bonuses-grid, .page-live__faq-grid {
        grid-template-columns: 1fr;
    }
}