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

.page-live__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #003366; /* Primary brand color */
    color: #ffffff;
    text-align: center;
    padding-bottom: 40px;
    overflow: hidden;
}

.page-live__hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

.page-live__hero-title {
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent for title */
    line-height: 1.2;
}

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

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

.page-live__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.05em;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-live__button--primary {
    background-color: #FFD700; /* Gold */
    color: #003366; /* Royal Blue */
    border-color: #FFD700;
}

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

.page-live__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border-color: #FFD700;
}

.page-live__button--secondary:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-2px);
}

.page-live__button--text {
    background: none;
    border: none;
    color: #003366;
    padding: 8px 15px;
    font-weight: bold;
    text-decoration: underline;
}

.page-live__button--text:hover {
    color: #FFD700;
}

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

.page-live__button--center {
    display: block;
    margin: 30px auto 0;
    width: fit-content;
}

.page-live__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1920px; /* Ensure image scales down on smaller screens */
    height: auto;
    display: block;
    z-index: 1;
    opacity: 0.7;
}

.page-live__features-section,
.page-live__games-section,
.page-live__guides-section,
.page-live__cta-section,
.page-live__faq-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.page-live__features-section,
.page-live__guides-section,
.page-live__faq-section {
    background-color: #ffffff;
}

.page-live__games-section {
    background-color: #f0f5fa; /* Light blue-grey for contrast */
}

.page-live__cta-section {
    background-color: #003366;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-live__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-live__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.page-live__section-description,
.page-live__cta-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.page-live__features-container,
.page-live__games-container,
.page-live__guides-container,
.page-live__cta-container,
.page-live__faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-live__feature-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 51, 102, 0.15);
}

.page-live__feature-icon {
    width: 250px; /* Minimum 200px */
    height: 180px; /* Minimum 200px (maintain aspect ratio) */
    object-fit: contain;
    margin-bottom: 20px;
}

.page-live__feature-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

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

.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: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-live__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 51, 102, 0.15);
}

.page-live__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-live__game-title {
    font-size: 1.6em;
    color: #003366;
    margin: 20px 15px 10px;
    font-weight: bold;
}

.page-live__game-description {
    font-size: 0.95em;
    line-height: 1.5;
    color: #555555;
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-live__game-card .page-live__button {
    margin: 0 15px 20px;
}

.page-live__guide-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.page-live__guide-item {
    background-color: #f9f9f9;
    border-left: 5px solid #FFD700;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.08);
}

.page-live__guide-title {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-live__guide-title a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.page-live__guide-title a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-live__guide-description {
    font-size: 1em;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 15px;
}

.page-live__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.page-live__cta-image {
    position: absolute;
    bottom: -50px;
    right: -100px;
    width: 600px;
    height: auto;
    opacity: 0.2;
    z-index: 1;
    transform: rotate(15deg);
}

.page-live__faq-list {
    margin-top: 40px;
}

.page-live__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    transition: background-color 0.3s ease;
}

.page-live__faq-item:hover {
    background-color: #f0f5fa;
}

.page-live__faq-question {
    font-size: 1.25em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-live__faq-answer a {
    color: #003366;
    text-decoration: underline;
}

.page-live__faq-answer a:hover {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-live__hero-title {
        font-size: 2.8em;
    }
    .page-live__cta-title {
        font-size: 2.4em;
    }
    .page-live__section-title {
        font-size: 2.2em;
    }
    .page-live__hero-image {
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .page-live__hero-title {
        font-size: 2.2em;
    }
    .page-live__hero-description {
        font-size: 1em;
    }
    .page-live__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-live__button {
        width: 80%;
        max-width: 300px;
    }
    .page-live__hero-image {
        position: relative;
        transform: none;
        left: auto;
        width: 100%;
        max-width: 100%;
        opacity: 1;
        margin-top: 30px;
    }
    .page-live__hero-section {
        padding-bottom: 20px;
    }
    .page-live__feature-grid, .page-live__game-grid {
        grid-template-columns: 1fr;
    }
    .page-live__cta-title {
        font-size: 2em;
    }
    .page-live__cta-image {
        display: none;
    }
    /* Ensure content images are responsive and do not overflow */
    .page-live img {
        max-width: 100%;
        height: auto;
    }
    .page-live__feature-icon {
        width: 100%;
        height: auto;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 1.8em;
    }
    .page-live__section-title {
        font-size: 1.8em;
    }
    .page-live__cta-title {
        font-size: 1.6em;
    }
    .page-live__hero-container,
    .page-live__features-container,
    .page-live__games-container,
    .page-live__guides-container,
    .page-live__cta-container,
    .page-live__faq-container {
        padding: 0 15px;
    }
    .page-live__button {
        width: 100%;
        padding: 12px 20px;
    }
    .page-live__hero-actions {
        gap: 10px;
    }
    .page-live__game-image {
        height: 200px;
    }
    .page-live__game-title {
        font-size: 1.4em;
    }
    .page-live__faq-question {
        font-size: 1.1em;
    }
}