/* style/live.css */

/* General page styling for .page-live */
.page-live {
    color: var(--text-main); /* #FFF6D6 from custom colors */
    background-color: var(--page-bg); /* #0A0A0A from custom colors */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-live__section-padding {
    padding: 80px 0;
}

.page-live__section-title {
    font-size: clamp(2em, 4vw, 2.8em); /* H1 rules applied to H2 for consistency as H1 is in hero */
    font-weight: bold;
    color: var(--main-color); /* #F2C14E */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-live__section-title--light {
    color: var(--text-main); /* #FFF6D6 */
}

.page-live__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-main); /* #FFF6D6 */
}

.page-live__section-description--light {
    color: var(--text-main); /* #FFF6D6 */
}

/* Custom Colors as CSS Variables for easier management */
:root {
    --main-color: #F2C14E;
    --accent-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --card-bg: #111111;
    --page-bg: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
}

/* Hero Video Section */
.page-live__hero-video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* 10px top padding as per instruction */
    overflow: hidden;
    min-height: 600px;
    background-color: var(--page-bg);
}

.page-live__video-container {
    position: relative;
    width: 100%;
    max-width: 100%; /* Ensure it spans full width on desktop */
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.page-live__video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.6); /* Darken video for text readability */
    transition: filter 0.3s ease;
    cursor: pointer;
}

.page-live__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    box-sizing: border-box;
}

.page-live__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* H1 clamp for responsiveness */
    font-weight: bold;
    color: var(--text-main); /* #FFF6D6 */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}