/* style/live.css */

/* Base styles for the live page */
.page-live {
    font-family: Arial, sans-serif;
    background-color: var(--site-bg, #0A0A0A); /* Default to dark background if var not set */
    color: #FFF6D6; /* Main text color for dark background */
    line-height: 1.6;
    font-size: 1rem;
}

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

.page-live__section-title {
    font-size: 2.5rem;
    color: #FFD36B; /* Glow color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.page-live__section-title--large {
    font-size: 3rem;
    margin-top: 60px;
}

.page-live__text-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 1.1rem;
}

.page-live__text-block--large {
    font-size: 1.3rem;
}

/* Hero Section */
.page-live__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* For fixed header */
    background-color: #0A0A0A; /* Fallback */
    overflow: hidden; /* Ensure no overflow from image */
}

.page-live__hero-content-wrapper {
    display: flex;
    flex-direction: column; /* Stack image above text on mobile/small screens */
    align-items: center;
    justify-content: center;
    max-width: 1400px; /* Wider container for hero */
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1; /* Ensure content is above any potential background effects */
}

.page-live__hero-image-container {
    width: 100%;
    max-width: 1200px; /* Limit image width */
    margin-bottom: 30px; /* Space between image and text */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

.page-live__hero-text-content {
    text-align: center;
    max-width: 900px;
}

.page-live__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    color: #FFD36B;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.page-live__hero-description {
    font-size: 1.2rem;
    color: #FFF6D6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* General Button Styles */
.page-live__btn-primary,
.page-live__btn-secondary,
.page-live__btn-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;
}

.page-live__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #ffffff; /* White text for primary button */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-live__btn-primary:hover {
    background: linear-gradient(180deg, #FFE89A 0%, #F2C14E 100%);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
    transform: translateY(-2px);
}

.page-live__btn-secondary {
    background: #111111; /* Card BG */
    color: #FFD36B; /* Glow color for text */
    border: 2px solid #F2C14E; /* Main color for border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-live__btn-secondary:hover {
    background: #222222;
    color: #FFF6D6;
    border-color: #FFD36B;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.page-live__btn-tertiary {
    background: transparent;
    color: #FFD36B;
    border: 1px solid #3A2A12; /* Border color */
    padding: 10px 20px;
    font-size: 0.9rem;
}

.page-live__btn-tertiary:hover {
    background: rgba(255, 211, 107, 0.1);
    border-color: #FFD36B;
    color: #FFF6D6;
}

.page-live__btn-primary--large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Section Styling */
.page-live__introduction-section,
.page-live__games-section,
.page-live__how-to-play-section,
.page-live__promotions-section,
.page-live__faq-section,
.page-live__cta-final-section {
    padding: 80px 0;
    background-color: #0A0A0A; /* Consistent dark background */
}