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

.page-live__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
    background-color: #FFFFFF;
    text-align: center;
    padding-bottom: 60px;
}

.page-live__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-live__hero-title {
    font-size: 3.2em;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

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

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

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

.page-live__button--register {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

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

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

.page-live__button--explore:hover {
    background-color: #333333;
    border-color: #333333;
}

.page-live__hero-image-wrapper {
    margin-top: 40px;
    overflow: hidden;
    border-radius: 12px;
}

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

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

.page-live__about-section,
.page-live__featured-games-section,
.page-live__why-choose-section,
.page-live__get-started-section,
.page-live__promo-section,
.page-live__responsible-gaming-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-live__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.page-live__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-live__game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-live__game-card {
    background-color: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-live__game-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-live__game-card-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
    padding: 0 20px;
    font-weight: 600;
}

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

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

.page-live__game-card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 25px;
    padding: 0 20px;
    flex-grow: 1;
}

.page-live__button--view-details {
    background-color: #FCBC45;
    color: #000000;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 6px;
    border: none;
}

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

.page-live__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

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

.page-live__feature-icon {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

.page-live__feature-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.page-live__step-item {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    text-align: center;
}

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

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

.page-live__cta-wrapper {
    text-align: center;
}

.page-live__button--join-now {
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 10px;
    font-weight: 700;
    border: 2px solid #FCBC45;
}

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

.page-live__promo-link,
.page-live__responsible-gaming-link {
    color: #000000;
    text-decoration: underline;
}

.page-live__promo-link:hover,
.page-live__responsible-gaming-link:hover {
    color: #FCBC45;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-live__hero-title {
        font-size: 2.8em;
    }

    .page-live__section-title {
        font-size: 2em;
    }

    .page-live__game-cards,
    .page-live__features-grid,
    .page-live__steps-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-live__hero-section {
        padding-bottom: 40px;
    }

    .page-live__hero-title {
        font-size: 2.2em;
    }

    .page-live__hero-description {
        font-size: 1em;
    }

    .page-live__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-live__button {
        width: 80%;
        margin: 0 auto;
    }

    .page-live__about-section,
    .page-live__featured-games-section,
    .page-live__why-choose-section,
    .page-live__get-started-section,
    .page-live__promo-section,
    .page-live__responsible-gaming-section {
        padding: 60px 0;
    }

    .page-live__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }

    .page-live__text-block {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-live__game-cards,
    .page-live__features-grid,
    .page-live__steps-list {
        grid-template-columns: 1fr;
    }

    .page-live__game-card-image,
    .page-live__feature-icon {
        min-width: 200px;
        min-height: 200px;
        width: 100%; /* Ensure images are responsive */
        height: auto; /* Maintain aspect ratio */
        max-width: 100%; /* Prevent overflow */
    }
    
    .page-live img {
        max-width: 100%;
        height: auto;
    }
}

@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 20px;
        font-size: 1em;
    }
}