/* style/live.css */
.page-live {
    color: #333333; /* Dark text for light body background */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-live__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    padding: 80px 20px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.page-live__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-live__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-live__hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    max-width: 800px;
}

.page-live__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FCBC45; /* Login color for emphasis */
}

.page-live__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #FFFFFF;
}

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

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

.page-live__button--primary {
    background-color: #FCBC45; /* Login color */
    color: #000000; /* Main color */
    border: 2px solid #FCBC45;
}

.page-live__button--primary:hover {
    background-color: #e0a53b;
    color: #FFFFFF;
}

.page-live__button--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-live__button--secondary:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.page-live__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin: 60px 0 40px;
}

.page-live__about-section, .page-live__features-section, .page-live__how-to-play, .page-live__faqs-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-live__games-showcase {
    padding: 60px 0;
    background-color: #f0f0f0;
}

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

.page-live__game-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.page-live__card-title {
    font-size: 1.5em;
    color: #000000;
    margin: 20px 15px 10px;
}

.page-live__card-title a {
    text-decoration: none;
    color: inherit;
}

.page-live__card-title a:hover {
    color: #FCBC45;
}

.page-live__card-description {
    font-size: 0.95em;
    color: #555555;
    padding: 0 15px;
    flex-grow: 1;
}

.page-live__button--small {
    background-color: #000000;
    color: #FFFFFF;
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 20px 0;
    border: none;
}

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

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

.page-live__feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-live__feature-heading {
    font-size: 1.3em;
    color: #FCBC45;
    margin-bottom: 10px;
}

.page-live__feature-description {
    color: #555555;
    font-size: 1em;
}

.page-live__security-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-live__steps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    counter-reset: step-counter;
}

.page-live__step-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 70px;
}

.page-live__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 30px;
    background-color: #FCBC45;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-live__step-heading {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
}

.page-live__step-description {
    color: #555555;
    font-size: 1em;
}

.page-live__step-description a {
    color: #FCBC45;
    text-decoration: none;
}

.page-live__step-description a:hover {
    text-decoration: underline;
}

.page-live__button--play-now {
    display: block;
    width: fit-content;
    margin: 50px auto 0;
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-live__button--play-now:hover {
    background-color: #e0a53b;
}

.page-live__faqs-section {
    background-color: #f0f0f0;
}

.page-live__faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
    font-size: 1.2em;
    color: #000000;
    margin-bottom: 10px;
}

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

.page-live__cta-banner {
    position: relative;
    background-color: #000000;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.page-live__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    z-index: 1;
}

.page-live__cta-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    max-width: 800px;
}

.page-live__cta-title {
    font-size: 2.8em;
    color: #FCBC45;
    margin-bottom: 20px;
}

.page-live__cta-description {
    font-size: 1.2em;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.page-live__button--cta {
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-live__button--cta:hover {
    background-color: #e0a53b;
}

/* 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: 2em;
    }
    .page-live__game-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-live {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-live__hero-section {
        min-height: 500px;
        padding: 60px 15px;
    }
    .page-live__hero-title {
        font-size: 2.5em;
    }
    .page-live__hero-description {
        font-size: 1.1em;
    }
    .page-live__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-live__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-live__section-title {
        font-size: 1.8em;
        margin: 40px 0 30px;
    }
    .page-live__container {
        padding: 0 15px;
    }
    .page-live__game-cards, .page-live__feature-list, .page-live__steps-list {
        grid-template-columns: 1fr;
    }
    .page-live__card-image, .page-live__security-image, .page-live__cta-image {
        max-width: 100%;
        height: auto;
    }
    .page-live__cta-title {
        font-size: 2em;
    }
    .page-live__cta-description {
        font-size: 1em;
    }
    .page-live__button--cta {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-live__step-item {
        padding-left: 60px;
    }
    .page-live__step-item::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
        left: 15px;
        top: 25px;
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 2em;
    }
    .page-live__hero-description {
        font-size: 1em;
    }
    .page-live__section-title {
        font-size: 1.5em;
    }
    .page-live__text-content {
        font-size: 0.95em;
    }
    .page-live__cta-title {
        font-size: 1.8em;
    }
    .page-live__cta-description {
        font-size: 0.95em;
    }
}