/* style/live.css */

/* Ensure content starts below the fixed header */
.page-live {
    padding-top: var(--header-offset, 120px); /* Apply header offset */
    background-color: #f8f8f8; /* Light background for content */
    color: #333333; /* Dark text for readability on light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-live__hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0; /* Adjust padding for content inside the hero */
    background: linear-gradient(135deg, #FFD700, #8B0000); /* Blend of brand colors */
    text-align: center;
    color: #ffffff; /* White text on dark/colored background */
}

.page-live__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtly blend the image with the gradient */
    z-index: 1;
}

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

.page-live__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    line-height: 1.2;
}

.page-live__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* General Button Styles */
.page-live__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-live__button--primary {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
    border: 2px solid #FFD700;
}

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

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

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

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

/* Section Styling */
.page-live__section-title {
    font-size: 2.5em;
    color: #8B0000; /* Dark Red */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* About Section */
.page-live__about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-live__feature-card {
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #FFD700;
}

.page-live__feature-card:hover {
    transform: translateY(-10px);
}

.page-live__feature-icon {
    width: 250px; /* Min size 200px, setting larger */
    height: 167px; /* Maintain aspect ratio for 600x400 */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-live__feature-title {
    font-size: 1.5em;
    color: #8B0000;
    margin-bottom: 15px;
}

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

/* Games Section */
.page-live__games-section {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.page-live__game-cards-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.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 5px solid #8B0000;
}

.page-live__game-card:hover {
    transform: translateY(-10px);
}

.page-live__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency, will be object-fit */
    object-fit: cover;
    display: block;
}

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

.page-live__game-description {
    font-size: 0.95em;
    color: #666666;
    padding: 0 15px 20px 15px;
}

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

/* VIP Experience Section */
.page-live__vip-experience {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-live__advantage-item {
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 5px solid #FFD700;
}

.page-live__advantage-item:hover {
    transform: translateY(-8px);
}

.page-live__advantage-icon {
    width: 250px; /* Min size 200px */
    height: 188px; /* Maintain aspect ratio for 400x300 */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 50%; /* Make icons circular */
    border: 3px solid #FFD700;
}

.page-live__advantage-title {
    font-size: 1.4em;
    color: #8B0000;
    margin-bottom: 15px;
}

.page-live__advantage-description {
    font-size: 0.95em;
    color: #666666;
}

.page-live__cta-bottom {
    text-align: center;
    margin-top: 60px;
    background-color: #8B0000;
    padding: 40px 20px;
    border-radius: 10px;
    color: #ffffff;
}

.page-live__cta-text {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: bold;
}

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

.page-live__faq-items {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

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

.page-live__faq-question {
    font-size: 1.3em;
    color: #8B0000;
    margin-bottom: 10px;
    cursor: pointer;
}

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

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

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

/* Promo Banner Section */
.page-live__promo-banner {
    padding: 60px 0;
    background-color: #8B0000; /* Dark Red background for contrast */
    color: #ffffff;
    text-align: center;
}

.page-live__promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-live__promo-image {
    width: 600px; /* Example size, min 200px */
    height: 240px; /* Aspect ratio 1000x400 */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-live__promo-text-area {
    max-width: 700px;
}

.page-live__promo-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-live__promo-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-live__promo-description a {
    color: #FFD700;
    text-decoration: underline;
}

.page-live__promo-description a:hover {
    color: #ffffff;
}

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

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

    .page-live__promo-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-live {
        padding-top: var(--header-offset, 120px); /* Ensure mobile also respects header offset */
    }

    .page-live__hero-section {
        padding: 60px 20px;
    }

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

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

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

    .page-live__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .page-live__feature-icon,
    .page-live__game-image,
    .page-live__advantage-icon,
    .page-live__promo-image {
        min-width: 200px; /* Explicitly ensure min-width on mobile */
        min-height: 200px; /* Explicitly ensure min-height on mobile */
        width: 100%; /* Make images fluid within their container */
        height: auto;
    }

    .page-live__game-image {
        height: 200px; /* Adjust height for smaller screens, object-fit will handle */
    }

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

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

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 2em;
    }
    .page-live__section-title {
        font-size: 1.8em;
    }
    .page-live__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

/* Ensure no image filters are used */
.page-live img {
    filter: none !important;
}