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

.page-live__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: #000080; /* Dark blue background for hero section */
    color: #ffffff;
    text-align: center;
}

.page-live__hero-container {
    position: relative;
    max-width: 1400px; /* Constrain hero content width */
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-live__hero-image {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-live__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

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

.page-live__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    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: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.page-live__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text */
    border: 2px solid #FFD700;
}

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

.page-live__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-live__button--secondary:hover {
    background-color: #FFD700;
    color: #000080;
    transform: translateY(-3px);
}

.page-live__button--light {
    background-color: #FFD700;
    color: #000080;
    border: 2px solid #FFD700;
}

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

.page-live__button--small {
    padding: 10px 20px;
    font-size: 1em;
}

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

.page-live__section-title {
    font-size: 2.8em;
    color: #000080; /* Dark blue title */
    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; /* Gold underline */
    border-radius: 2px;
}

.page-live__section-title--light {
    color: #FFD700; /* Gold title for dark backgrounds */
}

.page-live__section-title--light::after {
    background-color: #ffffff;
}

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

.page-live__section-intro--light {
    color: #f0f0f0;
}

.page-live__dark-background {
    background-color: #000080; /* Dark blue background */
    color: #ffffff;
}

.page-live__features-grid, .page-live__games-grid, .page-live__bonuses-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__bonus-card, .page-live__step-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 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__game-card, .page-live__bonus-card, .page-live__step-card {
    background-color: #fefefe; /* Slightly off-white for cards on light background */
}

.page-live__dark-background .page-live__game-card {
    background-color: rgba(255, 255, 255, 0.08); /* Transparent white on dark background */
    color: #ffffff;
}

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

.page-live__feature-icon, .page-live__game-image, .page-live__bonus-image, .page-live__app-image {
    width: 100%;
    height: 200px; /* Minimum height for images */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
}

.page-live__feature-icon {
    max-width: 250px;
    height: 180px;
    margin-left: auto;
    margin-right: auto;
}

.page-live__game-image, .page-live__bonus-image {
    height: 250px;
}

.page-live__feature-title, .page-live__game-title, .page-live__bonus-title, .page-live__step-number {
    font-size: 1.6em;
    color: #000080; /* Dark blue for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-live__dark-background .page-live__game-title, .page-live__dark-background .page-live__step-number {
    color: #FFD700; /* Gold for titles on dark cards */
}

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

.page-live__dark-background .page-live__game-text, .page-live__dark-background .page-live__step-text {
    color: #f0f0f0;
}

.page-live__app-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-live__app-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    min-width: 250px; /* Ensure app image is not too small */
}

.page-live__app-text {
    flex: 1;
    font-size: 1.1em;
    color: #333333;
}

.page-live__app-text p {
    margin-bottom: 30px;
}

.page-live__responsible-gaming-section {
    text-align: center;
}

.page-live__faq-container {
    margin-top: 40px;
}

.page-live__faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
    font-size: 1.4em;
    color: #000080;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-live__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* .page-live__faq-question.active::after { transform: rotate(45deg); } */

.page-live__faq-answer {
    font-size: 1em;
    color: #555555;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 15px;
    display: block; /* For initial display, JS can toggle */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-live__hero-title {
        font-size: 2.8em;
    }
    .page-live__section-title {
        font-size: 2.2em;
    }
    .page-live__section-intro {
        font-size: 1.1em;
    }
    .page-live__hero-image {
        height: 500px;
    }
    .page-live__app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-live__app-image {
        max-width: 80%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-live__hero-title {
        font-size: 2.2em;
    }
    .page-live__hero-description {
        font-size: 1.1em;
    }
    .page-live__section-title {
        font-size: 1.8em;
    }
    .page-live__section-intro {
        font-size: 1em;
    }
    .page-live__section-padding {
        padding: 60px 15px;
    }
    .page-live__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-live__button {
        width: 100%;
        max-width: 300px;
    }
    /* Mobile content area images must not overflow */
    .page-live img {
        max-width: 100%;
        height: auto;
    }
    .page-live__app-image {
        max-width: 90%;
    }
    /* Ensure content area does not cause horizontal scroll */
    .page-live {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 1.8em;
    }
    .page-live__hero-image {
        height: 300px;
    }
    .page-live__section-title {
        font-size: 1.5em;
    }
    .page-live__feature-card, .page-live__game-card, .page-live__bonus-card, .page-live__step-card {
        padding: 20px;
    }
    .page-live__feature-title, .page-live__game-title, .page-live__bonus-title, .page-live__step-number {
        font-size: 1.4em;
    }
    .page-live__faq-question {
        font-size: 1.2em;
    }
}