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

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

/* Hero Section */
.page-live__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    position: relative;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

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

.page-live__hero-content {
    position: relative;
    z-index: 1;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    max-width: 900px;
}

.page-live__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #DAA520;
    line-height: 1.2;
}

.page-live__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #f0f0f0;
}

.page-live__hero-button {
    display: inline-block;
    background-color: #DAA520;
    color: #1A1A1A;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
}

.page-live__hero-button:hover {
    background-color: #e5c063;
    transform: translateY(-3px);
}

.page-live__hero-button--secondary {
    background-color: #1A1A1A;
    color: #DAA520;
    border: 2px solid #DAA520;
}

.page-live__hero-button--secondary:hover {
    background-color: #333333;
    color: #e5c063;
}

/* General Sections */
.page-live__introduction-section,
.page-live__featured-games-section,
.page-live__getting-started-section,
.page-live__mobile-section,
.page-live__support-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-live__background--dark {
    background-color: #1A1A1A;
    color: #ffffff;
}

.page-live__background--gold {
    background-color: #DAA520;
    color: #1A1A1A;
}

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

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

.page-live__section-title--dark {
    color: #1A1A1A;
}

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

.page-live__section-title--dark::after {
    background-color: #1A1A1A;
}

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

.page-live__text-content--light {
    color: #f0f0f0;
}

.page-live__text-content--dark {
    color: #1A1A1A;
}

/* Game Cards Grid */
.page-live__game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-live__game-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px 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:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-live__game-card-title {
    font-size: 1.8em;
    color: #DAA520;
    margin-bottom: 15px;
}

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

.page-live__game-card-button {
    display: inline-block;
    background-color: #1A1A1A;
    color: #DAA520;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.page-live__game-card-button:hover {
    background-color: #333333;
    color: #e5c063;
}

.page-live__other-games {
    margin-top: 60px;
    text-align: center;
}

.page-live__sub-section-title {
    font-size: 2.2em;
    color: #1A1A1A;
    margin-bottom: 25px;
}

.page-live__game-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-live__game-list li {
    background-color: #f0f0f0;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
    max-width: 45%; /* Adjust for two columns on larger screens */
}

/* Experience Section */
.page-live__experience-section {
    padding: 80px 0;
}

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

.page-live__feature-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.page-live__feature-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-live__feature-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #DAA520;
}

.page-live__feature-title--light {
    color: #DAA520;
}

/* Getting Started Section */
.page-live__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-live__step-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-live__step-title {
    font-size: 2em;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.page-live__step-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-live__step-button {
    display: inline-block;
    background-color: #DAA520;
    color: #1A1A1A;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.page-live__step-button:hover {
    background-color: #e5c063;
}

/* Bonuses Section */
.page-live__bonuses-section {
    padding: 80px 0;
}

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

.page-live__bonus-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-live__bonus-title {
    font-size: 1.8em;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.page-live__bonus-title--dark {
    color: #1A1A1A;
}

.page-live__bonus-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-live__bonus-description--dark {
    color: #333333;
}

.page-live__bonus-button {
    display: inline-block;
    background-color: #1A1A1A;
    color: #DAA520;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.page-live__bonus-button:hover {
    background-color: #333333;
    color: #e5c063;
}

.page-live__bonus-button--dark {
    background-color: #1A1A1A;
    color: #DAA520;
}

.page-live__bonus-button--dark:hover {
    background-color: #333333;
    color: #e5c063;
}

/* Mobile Section */
.page-live__mobile-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-live__mobile-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.page-live__mobile-text-content {
    flex: 1;
    min-width: 300px;
}

.page-live__mobile-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-live__mobile-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-live__cta-button {
    display: inline-block;
    background-color: #DAA520;
    color: #1A1A1A;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px 10px 10px 0;
}

.page-live__cta-button:hover {
    background-color: #e5c063;
    transform: translateY(-3px);
}

.page-live__cta-button--secondary {
    background-color: #1A1A1A;
    color: #DAA520;
    border: 2px solid #DAA520;
}

.page-live__cta-button--secondary:hover {
    background-color: #333333;
    color: #e5c063;
}

/* Responsible Gaming Section */
.page-live__responsible-gaming-section {
    padding: 80px 0;
}

/* Support Section */
.page-live__support-section {
    padding: 80px 0;
    text-align: center;
}

/* Final CTA Section */
.page-live__cta-section {
    padding: 80px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-live__hero-title {
        font-size: 2.8em;
    }
    .page-live__hero-description {
        font-size: 1.1em;
    }
    .page-live__section-title {
        font-size: 2.2em;
    }
    .page-live__game-list li {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-live__hero-section {
        min-height: 450px;
        padding: 40px 15px;
    }
    .page-live__hero-content {
        padding: 30px;
    }
    .page-live__hero-title {
        font-size: 2em;
    }
    .page-live__hero-description {
        font-size: 1em;
    }
    .page-live__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-live__introduction-section,
    .page-live__featured-games-section,
    .page-live__getting-started-section,
    .page-live__mobile-section,
    .page-live__responsible-gaming-section,
    .page-live__support-section,
    .page-live__cta-section {
        padding: 50px 0;
    }
    .page-live__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-live__text-content {
        font-size: 0.95em;
    }
    .page-live__game-cards-grid,
    .page-live__features-grid,
    .page-live__steps-grid,
    .page-live__bonus-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-live__game-card-title,
    .page-live__feature-title,
    .page-live__step-title,
    .page-live__bonus-title {
        font-size: 1.5em;
    }
    .page-live__mobile-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .page-live__mobile-text-content,
    .page-live__mobile-image-wrapper {
        min-width: unset;
        width: 100%;
    }
    .page-live__cta-button {
        margin: 5px 5px 5px 0;
    }

    /* Ensure images in content area are responsive and not too small */
    .page-live img {
        max-width: 100%;
        height: auto;
    }
    .page-live__game-card-image {
        height: auto; /* Adjust height for responsiveness */
    }
    .page-live__game-list li {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 1.5em;
    }
    .page-live__hero-description {
        font-size: 0.9em;
    }
    .page-live__hero-button {
        width: 100%;
        margin: 5px 0;
    }
    .page-live__section-title {
        font-size: 1.5em;
    }
    .page-live__game-card-title,
    .page-live__feature-title,
    .page-live__step-title,
    .page-live__bonus-title {
        font-size: 1.3em;
    }
    .page-live__game-list li {
        padding: 10px 15px;
        font-size: 1em;
    }
    .page-live__cta-button {
        width: 100%;
        margin: 5px 0;
    }
}