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

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

.page-live__hero-section {
    background-color: #000000; /* Primary brand color for hero background */
    position: relative;
    overflow: hidden;
    padding: 0;
}

.page-live__hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px; /* Minimum height for hero section */
}

.page-live__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Slightly dim the image to make text pop */
}

.page-live__hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff; /* White text for dark hero background */
    max-width: 900px;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
    border-radius: 10px;
}

.page-live__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Secondary brand color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-live__hero-actions {
    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;
    white-space: nowrap;
}

.page-live__button--primary {
    background-color: #FFD700; /* Golden button */
    color: #000000; /* Black text on golden button */
    border: 2px solid #FFD700;
}

.page-live__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-live__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Golden text for secondary button */
    border: 2px solid #FFD700;
}

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

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

.page-live__section-title {
    font-size: 2.5em;
    color: #000000; /* Dark text for section titles */
    text-align: center;
    margin-bottom: 20px;
    margin-top: 40px;
}

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

.page-live__games-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.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: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-live__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistent card layout */
    object-fit: cover;
    margin-bottom: 15px;
}

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

.page-live__game-description {
    font-size: 1em;
    color: #666666;
    padding: 0 15px;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-live__why-choose-us-section {
    padding: 60px 0;
}

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

.page-live__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.page-live__feature-description {
    color: #666666;
}

.page-live__mobile-access-section {
    background-color: #000000; /* Dark background for this section */
    padding: 80px 0;
    color: #ffffff;
}

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

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

.page-live__mobile-access-section .page-live__section-title {
    color: #FFD700; /* Golden title on dark background */
    text-align: left;
}

.page-live__mobile-access-section .page-live__section-intro {
    color: #e0e0e0;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.page-live__mobile-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-live__mobile-features-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-live__mobile-features-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-live__mobile-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-live__responsible-gambling-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.page-live__cta-section {
    background-color: #FFD700; /* Golden background for CTA */
    padding: 80px 0;
    text-align: center;
    color: #000000; /* Black text on golden background */
}

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

.page-live__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-live__cta-section .page-live__button--primary {
    background-color: #000000; /* Black button on golden background */
    color: #FFD700;
    border-color: #000000;
}

.page-live__cta-section .page-live__button--primary:hover {
    background-color: #333333;
    border-color: #333333;
}

.page-live__faq-section {
    padding: 60px 0;
}

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

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

.page-live__faq-answer {
    color: #555555;
    line-height: 1.7;
}

.page-live__blog-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

.page-live__blog-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-live__blog-image {
    width: 100%;
    height: 220px; /* Consistent image height for blog cards */
    object-fit: cover;
}

.page-live__blog-title {
    font-size: 1.6em;
    color: #000000;
    margin: 15px 15px 10px 15px;
}

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

.page-live__blog-title a:hover {
    color: #FFD700;
}

.page-live__blog-excerpt {
    font-size: 1em;
    color: #666666;
    padding: 0 15px;
    flex-grow: 1;
    margin-bottom: 15px;
}

.page-live__link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    padding: 0 15px 15px 15px;
}

.page-live__link:hover {
    text-decoration: underline;
}

.page-live__view-all-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Responsive adjustments */
@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__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-live__hero-title {
        font-size: 2.5em;
    }

    .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__mobile-flex {
        flex-direction: column;
    }

    .page-live__mobile-access-section .page-live__section-title {
        text-align: center;
    }

    .page-live__mobile-access-section .page-live__section-intro {
        text-align: center;
    }

    .page-live__mobile-features-list {
        text-align: center;
    }

    .page-live__mobile-features-list li {
        padding-left: 0;
    }

    .page-live__mobile-features-list li::before {
        position: static;
        margin-right: 5px;
    }

    .page-live__game-image, .page-live__blog-image {
        height: 200px; /* Adjust height for smaller screens */
    }

    /* Enforce image max-width for mobile to prevent overflow */
    .page-live img {
        max-width: 100%;
        height: auto;
    }

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

    .page-live__faq-question {
        font-size: 1.3em;
    }

    .page-live__blog-title {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 2em;
    }

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

    .page-live__game-grid, .page-live__features-grid, .page-live__blog-grid {
        grid-template-columns: 1fr;
    }

    .page-live__cta-title {
        font-size: 1.8em;
    }
}