/* style/live.css */

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

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

.page-live__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: #000000; /* Dark background for hero section */
    color: #FFFFFF;
    text-align: center;
}

.page-live__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-live__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    padding: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.page-live__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45; /* Login button color for emphasis */
}

.page-live__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

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

.page-live__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-live__button--primary {
    background-color: #FCBC45; /* Login button color */
    color: #000000;
    border: 2px solid #FCBC45;
}

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

.page-live__button--secondary {
    background-color: #000000;
    color: #FFFFFF; /* Register button color */
    border: 2px solid #FFFFFF;
}

.page-live__button--secondary:hover {
    background-color: #333333;
    border-color: #CCCCCC;
}

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

.page-live__button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-live__why-choose-us, .page-live__game-showcase, .page-live__technology, .page-live__bonuses, .page-live__getting-started, .page-live__faq, .page-live__final-cta {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

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

.page-live__features-grid, .page-live__game-grid, .page-live__tech-grid, .page-live__bonus-cards, .page-live__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-live__feature-card, .page-live__game-card, .page-live__tech-item, .page-live__bonus-card, .page-live__step-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-live__feature-card:hover, .page-live__game-card:hover, .page-live__tech-item:hover, .page-live__bonus-card:hover, .page-live__step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-live__feature-icon, .page-live__game-image, .page-live__tech-image, .page-live__bonus-image, .page-live__step-icon {
    width: 100%; /* Ensure images fill their container */
    height: auto;
    max-width: 400px; /* Example max-width, adjust as needed */
    min-width: 200px; /* Enforce minimum width */
    min-height: 200px; /* Enforce minimum height */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-live__feature-title, .page-live__game-title, .page-live__tech-title, .page-live__bonus-title, .page-live__step-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-live__feature-description, .page-live__game-description, .page-live__tech-description, .page-live__bonus-description, .page-live__step-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-live__game-card .page-live__button, .page-live__step-card .page-live__button {
    margin-top: auto; /* Push button to the bottom */
    background-color: #FCBC45;
    color: #000000;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    min-width: unset;
}

.page-live__game-card .page-live__button:hover, .page-live__step-card .page-live__button:hover {
    background-color: #e0a53a;
}

.page-live__faq {
    background-color: #f0f0f0;
}

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

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

.page-live__faq-answer {
    font-size: 1em;
    color: #555555;
    padding-left: 15px;
    border-left: 3px solid #FCBC45;
    margin-top: 10px;
}

.page-live__final-cta {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
}

.page-live__final-cta .page-live__section-title {
    color: #FCBC45;
}

.page-live__final-cta .page-live__section-intro {
    color: #FFFFFF;
    margin-bottom: 40px;
}

/* Responsive adjustments */
@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: 2em;
    }
}

@media (max-width: 768px) {
    .page-live__hero-section {
        padding-top: var(--header-offset, 120px);
    }
    .page-live__hero-image img,
    .page-live__feature-icon,
    .page-live__game-image,
    .page-live__tech-image,
    .page-live__bonus-image,
    .page-live__step-icon {
        max-width: 100%;
        height: auto;
    }
    .page-live__hero-content {
        width: 90%;
        padding: 15px;
    }
    .page-live__hero-title {
        font-size: 2em;
    }
    .page-live__hero-description {
        font-size: 0.95em;
    }
    .page-live__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-live__button {
        min-width: unset;
        width: 100%;
    }
    .page-live__section-title {
        font-size: 1.8em;
    }
    .page-live__section-intro {
        font-size: 1em;
    }
    .page-live__features-grid, .page-live__game-grid, .page-live__tech-grid, .page-live__bonus-cards, .page-live__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-live__faq-question {
        font-size: 1.2em;
    }
    .page-live__faq-answer {
        font-size: 0.95em;
    }
    .page-live__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 1.8em;
    }
    .page-live__hero-description {
        font-size: 0.9em;
    }
    .page-live__section-title {
        font-size: 1.5em;
    }
    .page-live__feature-title, .page-live__game-title, .page-live__tech-title, .page-live__bonus-title, .page-live__step-title {
        font-size: 1.4em;
    }
    .page-live__feature-description, .page-live__game-description, .page-live__tech-description, .page-live__bonus-description, .page-live__step-description {
        font-size: 0.9em;
    }
}