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

.page-live__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    background-color: #000000; /* Dark background for hero content */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Minimum height for hero section */
}

.page-live__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 1;
}

.page-live__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for text readability */
    border-radius: 10px;
}

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

.page-live__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #F0F0F0;
}

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

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

.page-live__btn--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-live__btn--register:hover {
    background-color: #F0F0F0;
    color: #333333;
}

.page-live__btn--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-live__btn--login:hover {
    background-color: #E0A83F;
    color: #000000;
}

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

.page-live__section-title {
    font-size: 2.8em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    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: #FCBC45;
    border-radius: 2px;
}

.page-live__section-intro {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555555;
}

/* Advantages Section */
.page-live__advantages-section {
    background-color: #F8F8F8;
}

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

.page-live__advantage-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-live__advantage-icon {
    width: 100%; /* Ensure images are not tiny */
    max-width: 400px; /* Ensure images are not tiny */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

.page-live__advantage-description {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
}

/* Games Section */
.page-live__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-live__game-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-live__game-card .page-live__game-title {
    font-size: 1.8em;
    color: #000000;
    padding: 20px 20px 10px 20px;
}

.page-live__game-card .page-live__game-description {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
    padding: 0 20px 20px 20px;
}

.page-live__btn--play {
    background-color: #FCBC45;
    color: #000000;
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    text-align: center;
    font-size: 1.1em;
}

.page-live__btn--play:hover {
    background-color: #E0A83F;
}

/* How to Start Section */
.page-live__how-to-start-section {
    background-color: #F8F8F8;
}

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

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

.page-live__step-icon {
    width: 100%; /* Ensure images are not tiny */
    max-width: 300px; /* Ensure images are not tiny */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

.page-live__step-description {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
}

.page-live__btn--register-small, .page-live__btn--deposit-small, .page-live__btn--play-small {
    background-color: #000000;
    color: #FFFFFF;
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-live__btn--register-small:hover, .page-live__btn--deposit-small:hover, .page-live__btn--play-small:hover {
    background-color: #333333;
}

/* Bonuses Section */
.page-live__bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

.page-live__bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-live__bonus-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-live__bonus-title {
    font-size: 1.6em;
    color: #000000;
    padding: 20px 20px 10px 20px;
}

.page-live__bonus-description {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
    padding: 0 20px 20px 20px;
}

.page-live__btn--bonus {
    background-color: #FCBC45;
    color: #000000;
    padding: 10px 20px;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-live__btn--bonus:hover {
    background-color: #E0A83F;
}

.page-live__bonuses-cta {
    text-align: center;
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 30px;
}

.page-live__btn--primary {
    background-color: #000000;
    color: #FFFFFF;
}

.page-live__btn--primary:hover {
    background-color: #333333;
}

.page-live__btn--full-width {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 15px 40px;
    font-size: 1.2em;
}

/* Responsible Gaming Section */
.page-live__responsible-gaming-section {
    background-color: #000000;
    color: #FFFFFF;
}

.page-live__responsible-gaming-section .page-live__section-title {
    color: #FFFFFF;
}

.page-live__responsible-gaming-section .page-live__section-title::after {
    background-color: #FCBC45;
}

.page-live__responsible-gaming-section .page-live__section-intro,
.page-live__responsible-gaming-section .page-live__responsible-gaming-text {
    color: #F0F0F0;
}

.page-live__btn--secondary {
    background-color: transparent;
    border: 2px solid #FCBC45;
    color: #FCBC45;
    padding: 10px 25px;
    margin-top: 30px;
}

.page-live__btn--secondary:hover {
    background-color: #FCBC45;
    color: #000000;
}

/* FAQ Section */
.page-live__faq-section {
    background-color: #FFFFFF;
}

.page-live__faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #EEEEEE;
    padding-bottom: 20px;
}

.page-live__faq-question {
    font-size: 1.4em;
    color: #000000;
    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: #FCBC45;
    margin-left: 10px;
}

.page-live__faq-question.active::after {
    content: '-';
}

.page-live__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-live__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
}

/* CTA Section */
.page-live__cta-section {
    background-color: #FCBC45;
    text-align: center;
    padding: 80px 20px;
}

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

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

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

.page-live__btn--register-large {
    background-color: #000000;
    color: #FFFFFF;
    padding: 18px 45px;
    font-size: 1.3em;
    border-radius: 8px;
}

.page-live__btn--register-large:hover {
    background-color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-live__hero-title {
        font-size: 3em;
    }
    .page-live__section-title {
        font-size: 2.2em;
    }
    .page-live__advantage-title, .page-live__game-title, .page-live__step-title, .page-live__bonus-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-live__hero-section {
        min-height: 450px;
    }
    .page-live__hero-content {
        padding: 30px 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__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-live__content-area {
        padding: 40px 15px;
    }
    .page-live__section-title {
        font-size: 2em;
    }
    .page-live__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-live__advantage-card, .page-live__game-card, .page-live__step-card, .page-live__bonus-card {
        padding: 20px;
    }
    .page-live__game-image, .page-live__bonus-image, .page-live__advantage-icon, .page-live__step-icon {
        max-width: 100%;
        height: auto; /* Important for preventing overflow */
    }
    .page-live img {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-live__btn--full-width {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-live__btn--register-large {
        padding: 15px 35px;
        font-size: 1.2em;
    }
    .page-live__faq-question {
        font-size: 1.2em;
    }
    .page-live__faq-answer {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 2em;
    }
    .page-live__section-title {
        font-size: 1.8em;
    }
    .page-live__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-live__btn--register-large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}