.elementor-8410 .elementor-element.elementor-element-5ff21d3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-8410 .elementor-element.elementor-element-5ff21d3:not(.elementor-motion-effects-element-type-background), .elementor-8410 .elementor-element.elementor-element-5ff21d3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-8410 .elementor-element.elementor-element-d6617d9{--spacer-size:145px;}.elementor-8410 .elementor-element.elementor-element-d860862{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}@media(min-width:768px){.elementor-8410 .elementor-element.elementor-element-d860862{--content-width:1149px;}}/* Start custom CSS for html, class: .elementor-element-1298821 *//* --- SCOPED STYLES FOR WORDPRESS/ELEMENTOR --- */
/* Everything is scoped to #alpha-landing-wrapper to prevent theme conflicts */

#alpha-landing-wrapper {
    /* Theme Variables moved here */
    --primary-blue: #0f62fe;
    --dark-blue: #001d3d;
    --light-bg: #f4f7fb;
    --white: #ffffff;
    --text-grey: #4a5568;
    --border-color: #e2e8f0;
    --accent-gradient: linear-gradient(135deg, #0f62fe 0%, #0043ce 100%);

    /* Reset & Base Styles */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-blue);
    line-height: 1.6;
    text-align: left; /* Reset alignment */
    width: 100%;
    box-sizing: border-box;
    display: block;
}

/* --- LIVE STREAM MODE --- */
body.stream-live,
body.stream-live #alpha-landing-wrapper {
    margin: 0;
    padding: 0;
}

body.stream-live #alpha-landing-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 90vh;
    padding: 20px;
}

body.stream-live #alpha-landing-wrapper > br {
    display: none;
}

body.stream-live .main-container,
body.stream-live .broadcast-card,
body.stream-live .hero-text {
    display: none !important;
}

/* Keep content section visible when form is shown */
body.stream-live .content-section {
    display: grid !important;
}

body.stream-live #video-wrapper {
    display: none !important;
}

body.stream-live #ended-wrapper {
    display: flex !important;
}

/* Ensure box-sizing applies to all children */
#alpha-landing-wrapper * {
    box-sizing: border-box;
}

/* --- LAYOUT --- */
#alpha-landing-wrapper .header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

#alpha-landing-wrapper .logo-text {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

#alpha-landing-wrapper .main-container {
    max-width: 1100px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* Reduce gap when ended message is shown */
#alpha-landing-wrapper .main-container:has(.ended-wrapper[style*="flex"]),
#alpha-landing-wrapper .main-container.form-active {
    gap: 20px;
}

/* --- HERO SECTION (Text) --- */
#alpha-landing-wrapper .hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Specific targeting to override Global Theme H1/H2/P */
#alpha-landing-wrapper h21 {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; /* Force font */
    font-size: 3.8rem !important;
    line-height: 1.2 !important;
    margin: 0 0 15px 0 !important;
    color: var(--dark-blue) !important;
    font-weight: 700;
    text-transform: none;
}

#alpha-landing-wrapper .subtitle {
    font-size: 1.5rem;
    color: var(--text-grey);
    font-weight: 400;
    margin-bottom: 8px;
    display: block;
}

/* Reduce subtitle margin when form is shown */
#alpha-landing-wrapper .form-active ~ .hero-text .subtitle,
#alpha-landing-wrapper .broadcast-card.form-active ~ * .subtitle {
    margin-bottom: 15px;
}

/* --- VIDEO / COUNTDOWN CARD --- */
#alpha-landing-wrapper .broadcast-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: none;
    position: relative;
    min-height: 0;
    margin-bottom: 20px;
}

/* Remove background when ended message is shown */
#alpha-landing-wrapper .broadcast-card:has(.ended-wrapper[style*="flex"]),
#alpha-landing-wrapper .broadcast-card.form-active {
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
}

/* Reduce spacing when form is active */
#alpha-landing-wrapper .main-container.form-active {
    gap: 20px !important;
}

#alpha-landing-wrapper .main-container.form-active .subtitle {
    margin-bottom: 15px !important;
}

/* Reduce space between broadcast card and content section */
#alpha-landing-wrapper #video-spacer {
    height: 12px !important;
}

#alpha-landing-wrapper .main-container > br {
    display: none;
}

/* State 2: The Video */
#alpha-landing-wrapper .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    width: 100%;
    background: black;
    display: none;
}

#alpha-landing-wrapper .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* State 3: Stream ended message */
#alpha-landing-wrapper .ended-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 10;
    padding: 0 20px;
    min-height: auto;
}

#alpha-landing-wrapper .ended-video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

#alpha-landing-wrapper .ended-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

body.stream-live #alpha-landing-wrapper .ended-wrapper {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* When ended message is shown, adjust broadcast card */
#alpha-landing-wrapper .broadcast-card:has(.ended-wrapper[style*="flex"]) {
    min-height: auto;
    padding: 0;
}

/* --- INFO CONTENT SECTION --- */
#alpha-landing-wrapper .content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 8px;
    align-items: center;
}

#alpha-landing-wrapper .content-text h3 {
    font-size: 3.5rem !important;
    color: var(--primary-blue) !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
}

#alpha-landing-wrapper .content-text p {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #334155;
    line-height: 1.6;
}

#alpha-landing-wrapper .highlight-box {
    background: var(--primary-blue);
    color: white;
    padding: 40px;
    border-radius: 16px;
}

#alpha-landing-wrapper .highlight-box h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 3rem !important;
    color: white !important;
    font-weight: 700;
}

#alpha-landing-wrapper .highlight-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
}

/* --- FOOTER --- */
#alpha-landing-wrapper .footer-section {
    margin-top: 60px;
    padding: 40px;
    text-align: center;
    background: #eef2f6;
    color: var(--text-grey);
    font-size: 1.6rem;
    border-radius: 8px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    #alpha-landing-wrapper h1 { font-size: 2rem !important; }
    #alpha-landing-wrapper .main-container {
        padding: 0 12px;
        gap: 12px;
    }
    #alpha-landing-wrapper .hero-text {
        max-width: 100%;
    }
    #alpha-landing-wrapper .subtitle {
        font-size: 1.15rem;
        margin-bottom: 6px;
    }
    #alpha-landing-wrapper .ended-wrapper {
        padding: 0 0;
    }
    #alpha-landing-wrapper .ended-video-container {
        max-width: 100%;
        width: 100%;
    }
    #alpha-landing-wrapper .broadcast-card {
        margin-bottom: 16px;
    }
    #alpha-landing-wrapper .content-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    #alpha-landing-wrapper .content-text h3 {
        font-size: 2.25rem !important;
    }
    #alpha-landing-wrapper .content-text p {
        font-size: 1.25rem;
    }
    #alpha-landing-wrapper .highlight-box {
        padding: 24px;
    }
    #alpha-landing-wrapper .highlight-box h4 {
        font-size: 2rem !important;
    }
}/* End custom CSS */