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

.page-live__hero-section {
    background: linear-gradient(135deg, #1E90FF, #0d47a1); /* Deep blue gradient background */
    color: #ffffff; /* Light text for dark background */
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden; /* To contain absolute positioned elements */
}

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

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

.page-live__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.8;
}

.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, transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-live__button--primary {
    background-color: #FFD700; /* Gold */
    color: #1E90FF; /* Deep Blue text for contrast */
    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: #1E90FF;
    transform: translateY(-2px);
}

.page-live__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3; /* Subtle background image */
    overflow: hidden;
}

.page-live__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-live__section-title {
    font-size: 2.5em;
    color: #1E90FF; /* Deep Blue for section titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-live__why-choose-us-section,
.page-live__featured-games-section,
.page-live__seamless-experience-section,
.page-live__bonuses-section,
.page-live__security-section,
.page-live__support-section,
.page-live__how-to-start-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

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

.page-live__feature-card,
.page-live__game-card,
.page-live__bonus-card,
.page-live__step-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__feature-image,
.page-live__game-image,
.page-live__bonus-image {
    width: 100%; /* Ensures image fills card width */
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Remove extra space below image */
}

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

.page-live__feature-text,
.page-live__game-text,
.page-live__bonus-text,
.page-live__step-text {
    font-size: 1em;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-live__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 6px;
    background-color: #FFD700;
    color: #1E90FF;
    border: 2px solid #FFD700;
}

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

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

.page-live__text-block {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-live__content-subtitle {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-live__content-text {
    font-size: 1em;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-live__bonuses-cta {
    text-align: center;
    margin-top: 50px;
}

.page-live__step-number {
    font-size: 2.5em;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-live__final-cta {
    text-align: center;
    background-color: #1E90FF;
    color: #ffffff;
    padding: 50px 20px;
    border-radius: 15px;
    margin-top: 60px;
}

.page-live__final-cta-text {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 300;
}

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

@media (max-width: 768px) {
    .page-live__hero-section {
        padding: 60px 15px 40px;
    }
    .page-live__hero-title {
        font-size: 2.5em;
    }
    .page-live__hero-description {
        font-size: 1em;
    }
    .page-live__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-live__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-live__section-title {
        font-size: 1.8em;
    }
    .page-live__section-description {
        font-size: 0.95em;
    }
    .page-live__features-grid,
    .page-live__games-grid,
    .page-live__bonus-cards-grid,
    .page-live__steps-grid,
    .page-live__experience-content,
    .page-live__security-content,
    .page-live__support-content {
        grid-template-columns: 1fr;
    }
    .page-live__feature-card,
    .page-live__game-card,
    .page-live__bonus-card,
    .page-live__step-card {
        padding: 20px;
    }
    .page-live__feature-image,
    .page-live__game-image,
    .page-live__bonus-image {
        height: 200px; /* Adjust height for smaller screens */
    }
    .page-live__content-subtitle {
        font-size: 1.5em;
    }
    .page-live__final-cta-text {
        font-size: 1.2em;
    }
    /* Ensure content images are not smaller than 200px */
    .page-live img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Minimum width for content images */
        min-height: 200px; /* Minimum height for content images */
    }
    .page-live__feature-image,
    .page-live__game-image,
    .page-live__bonus-image {
        min-width: 200px;
        min-height: 200px;
        width: 100%; /* Override fixed height for responsiveness */
        height: auto; /* Override fixed height for responsiveness */
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 2em;
    }
    .page-live__button {
        width: 95%;
    }
    .page-live__section-title {
        font-size: 1.5em;
    }
    .page-live__final-cta-text {
        font-size: 1em;
    }
}