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

.page-live__section--padded {
    padding: 60px 20px;
}

.page-live__section--dark-bg {
    background-color: #003366;
    color: #ffffff;
}

.page-live__section--gold-bg {
    background-color: #FFCC00;
    color: #003366;
}

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

.page-live__text-center {
    text-align: center;
}

/* Hero Section */
.page-live__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

.page-live__hero-container {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
    border-radius: 10px;
    max-width: 900px;
}

.page-live__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-live__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.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, transform 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-live__button--primary {
    background-color: #FFCC00;
    color: #003366;
}

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

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

.page-live__button--secondary:hover {
    background-color: #002244;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-live__button--cta {
    background-color: #CC0000; /* Action red */
    color: #ffffff;
    padding: 18px 35px;
    font-size: 1.3em;
    border-radius: 8px;
}

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

.page-live__button--inline {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
    display: inline-block;
}

.page-live__button--small {
    padding: 10px 15px;
    font-size: 0.9em;
}

/* Section Titles & Subtitles */
.page-live__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.page-live__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-live__section--dark-bg .page-live__section-title,
.page-live__section--dark-bg .page-live__section-title::after {
    color: #FFCC00;
    background-color: #FFCC00;
}

.page-live__section--gold-bg .page-live__section-title,
.page-live__section--gold-bg .page-live__section-title::after {
    color: #003366;
    background-color: #003366;
}

.page-live__section-subtitle {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555555;
}

.page-live__section--dark-bg .page-live__section-subtitle {
    color: #f0f0f0;
}

.page-live__section--gold-bg .page-live__section-subtitle {
    color: #003366;
}

/* Grid Layouts */
.page-live__grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-live__image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px;
}

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

.page-live__game-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    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(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-live__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px;
}

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

.page-live__game-card-description {
    font-size: 0.95em;
    color: #f0f0f0;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.page-live__feature-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.page-live__feature-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.page-live__step-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.page-live__step-number {
    font-size: 3em;
    font-weight: bold;
    color: #FFCC00;
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.2;
    z-index: 0;
}

.page-live__step-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

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

.page-live__get-started-action {
    text-align: center;
    margin-top: 50px;
}

/* FAQs */
.page-live__faqs-section {
    background-color: #003366;
    color: #ffffff;
}

.page-live__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #FFCC00;
}

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

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

.page-live__faq-answer a {
    color: #FFCC00;
    text-decoration: none;
}

.page-live__faq-answer a:hover {
    text-decoration: underline;
}

/* Links within text */
.page-live__content-block a,
.page-live__feature-card a {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-live__content-block a:hover,
.page-live__feature-card a:hover {
    color: #FFCC00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-live__hero-title {
        font-size: 2.8em;
    }
    .page-live__section-title {
        font-size: 2em;
    }
    .page-live__grid-two-col {
        grid-template-columns: 1fr;
    }
    .page-live__image-block {
        order: -1; /* Image first on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-live__hero-section {
        min-height: 500px;
        padding-top: var(--header-offset, 120px);
    }
    .page-live__hero-title {
        font-size: 2.2em;
    }
    .page-live__hero-description {
        font-size: 1em;
    }
    .page-live__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-live__button--cta {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-live__section--padded {
        padding: 40px 15px;
    }
    .page-live__section-title {
        font-size: 1.8em;
    }
    .page-live__section-subtitle {
        font-size: 0.95em;
    }
    .page-live__game-card-image, .page-live__image-block img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min image size */
        min-height: 200px;
    }
    .page-live__game-grid, .page-live__features-grid, .page-live__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-live__hero-image, .page-live__hero-container {
        width: 100%;
    }
    .page-live__game-card-title {
        font-size: 1.5em;
    }
    .page-live__feature-title, .page-live__step-title {
        font-size: 1.4em;
    }
    .page-live__faq-question {
        font-size: 1.1em;
    }
    .page-live__hero-section .page-live__hero-image {
        /* Ensure images in hero section are responsive and not smaller than 200px */
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-live__hero-section .page-live__hero-container img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-live img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 1.8em;
    }
    .page-live__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-live__button--cta {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-live__section-title {
        font-size: 1.5em;
    }
    .page-live__section-subtitle {
        font-size: 0.9em;
    }
    .page-live__game-card-title {
        font-size: 1.3em;
    }
    .page-live__feature-title, .page-live__step-title {
        font-size: 1.2em;
    }
    .page-live__faq-question {
        font-size: 1em;
    }
}