/* ============================================================
   Loveworld UK Zone 4 — Main Stylesheet
   Theme: Sky Blue + Complementary Palette
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
    /* Sky Blue Primary */
    --sky-50:  #EFF9FF;
    --sky-100: #D0EFFE;
    --sky-200: #A3DFFD;
    --sky-300: #60C8FB;
    --sky-400: #1AAEF7;
    --sky-500: #0593DC;
    --sky-600: #0074BA;
    --sky-700: #015D98;
    --sky-800: #064F7C;
    --sky-900: #0B4167;

    /* Complementary: Deep Navy */
    --navy-50:  #F0F4FF;
    --navy-100: #DDE5FF;
    --navy-200: #C2CEFF;
    --navy-400: #7B8FD4;
    --navy-600: #3D52A0;
    --navy-700: #2D3F82;
    --navy-800: #1E2D6B;
    --navy-900: #111D4A;

    /* Complementary: Teal/Emerald */
    --teal-50:  #EDFAF5;
    --teal-100: #C6F1DF;
    --teal-300: #52C99B;
    --teal-500: #10A97A;
    --teal-700: #0A7558;
    --teal-900: #053D2E;

    /* Complementary: Gold/Amber */
    --gold-50:  #FFFBEB;
    --gold-100: #FEF0C7;
    --gold-300: #FBC740;
    --gold-400: #F59E0B;
    --gold-600: #D97706;
    --gold-800: #78350F;

    /* Complementary: Coral/Red */
    --coral-50:  #FFF1F0;
    --coral-200: #FECACA;
    --coral-400: #F87171;
    --coral-500: #EF4444;
    --coral-700: #B91C1C;

    /* Neutral Grays */
    --gray-50:  #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Semantic */
    --primary:        var(--sky-500);
    --primary-dark:   var(--sky-700);
    --primary-light:  var(--sky-100);
    --accent:         var(--navy-700);
    --success:        var(--teal-500);
    --warning:        var(--gold-400);
    --danger:         var(--coral-500);

    /* UI */
    --bg-page:        #F0F7FF;
    --bg-white:       #FFFFFF;
    --bg-card:        #FFFFFF;
    --text-primary:   var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted:     var(--gray-400);
    --border:         #DAEAF8;
    --border-light:   #EBF4FF;
    --shadow-sm:      0 1px 3px rgba(5,147,220,.06), 0 1px 2px rgba(5,147,220,.04);
    --shadow-md:      0 4px 16px rgba(5,147,220,.10), 0 2px 6px rgba(5,147,220,.06);
    --shadow-lg:      0 12px 32px rgba(5,147,220,.14), 0 4px 12px rgba(5,147,220,.08);
    --radius-sm:      6px;
    --radius-md:      10px;
    --radius-lg:      14px;
    --radius-xl:      20px;
    --radius-2xl:     28px;

    /* Typography */
    --font-body:    'Plus Jakarta Sans', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Nav height */
    --nav-h: 66px;
}

/* Dark mode */
[data-theme="dark"] {
    --bg-page:       #0A1628;
    --bg-white:      #0F1E35;
    --bg-card:       #132038;
    --text-primary:  #E8F4FD;
    --text-secondary:#94B8CC;
    --text-muted:    #5A7A95;
    --border:        #1C3250;
    --border-light:  #162A44;
    --shadow-sm:     0 1px 3px rgba(0,0,0,.3);
    --shadow-md:     0 4px 16px rgba(0,0,0,.35);
    --shadow-lg:     0 12px 32px rgba(0,0,0,.45);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--bg-page);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.lw-nav {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    height: var(--nav-h);
}

.lw-nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Logo */
.lw-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-right: 20px;
    text-decoration: none;
    flex-shrink: 0;
}

.lw-logo__icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--sky-500), var(--navy-700));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.lw-logo__text { line-height: 1.25; }
.lw-logo__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-800);
    letter-spacing: -.01em;
}
.lw-logo__sub { font-size: 10.5px; color: var(--sky-600); font-weight: 500; }

/* Nav Links */
.lw-nav__links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.lw-nav__link {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 7px 12px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background .15s, color .15s;
    white-space: nowrap;
    position: relative;
}
.lw-nav__link:hover, .lw-nav__link.active {
    background: var(--sky-50);
    color: var(--sky-700);
}

/* Dropdown */
.lw-nav__dropdown { position: relative; }
.lw-nav__dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}
.lw-nav__dropdown-toggle i.ti-chevron-down {
    font-size: 12px;
    transition: transform .2s;
}
.lw-nav__dropdown:hover .ti-chevron-down { transform: rotate(180deg); }

.lw-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100%);
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 6px;
    z-index: 1000;
}
.lw-nav__dropdown:hover .lw-dropdown-menu { display: block; }

.lw-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-primary);
    transition: background .15s;
}
.lw-dropdown-menu a:hover { background: var(--sky-50); color: var(--sky-700); }
.lw-dropdown-menu a i {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--sky-100);
    color: var(--sky-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* Nav Actions */
.lw-nav__actions { display: flex; align-items: center; gap: 8px; margin-left: 12px; }

.btn-live {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #EF4444, #B91C1C);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: .02em;
    transition: opacity .15s;
}
.btn-live:hover { opacity: .9; }
.btn-live .live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: livepulse 1.2s ease-in-out infinite;
}

.btn-give {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity .15s;
}
.btn-give:hover { opacity: .9; }

.nav-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-400), var(--navy-600));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid var(--sky-200);
    flex-shrink: 0;
}

.btn-theme {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-page);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background .15s, color .15s;
}
.btn-theme:hover { background: var(--sky-100); color: var(--sky-600); }

/* Hamburger */
.nav-hamburger {
    display: none;
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-secondary);
    margin-left: auto;
}

/* Mobile nav drawer */
.lw-nav__mobile {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
}
.lw-nav__mobile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
}
.lw-nav__mobile-drawer {
    position: absolute;
    top: 0; right: 0;
    width: 280px; height: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    overflow-y: auto;
}
.lw-nav__mobile-drawer .m-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-secondary);
}
.mobile-links { margin-top: 50px; display: flex; flex-direction: column; gap: 4px; }
.mobile-links a, .mobile-links .m-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: background .15s;
}
.mobile-links a:hover, .mobile-links .m-link:hover { background: var(--sky-50); color: var(--sky-700); }
.mobile-sub { padding-left: 16px; margin-top: 2px; }
.mobile-sub .m-link { font-size: 13px; padding: 8px 14px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.ann-bar {
    background: linear-gradient(90deg, var(--navy-800), var(--sky-700));
    padding: 11px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ann-bar__badge {
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: .04em;
}
.ann-bar__text {
    flex: 1;
    font-size: 13px;
    color: rgba(255,255,255,.9);
    line-height: 1.4;
}
.ann-bar__text strong { color: #fff; }
.ann-bar__btn {
    background: rgba(255,255,255,.18);
    border: 1.5px solid rgba(255,255,255,.4);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}
.ann-bar__btn:hover { background: rgba(255,255,255,.3); }
.ann-bar__close {
    color: rgba(255,255,255,.6);
    cursor: pointer;
    font-size: 18px;
    flex-shrink: 0;
    transition: color .15s;
}
.ann-bar__close:hover { color: #fff; }

/* ============================================================
   HERO — Image Slider
   ============================================================ */
.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.hero__slides { display: flex; height: 100%; transition: transform .65s cubic-bezier(.4,0,.2,1); }

.hero__slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 0 52px 60px;
}

/* Slide backgrounds */
.hero__slide--1 { background: linear-gradient(135deg, #0B4167 0%, #0593DC 45%, #0A7558 100%); }
.hero__slide--2 { background: linear-gradient(135deg, #111D4A 0%, #3D52A0 50%, #0593DC 100%); }
.hero__slide--3 { background: linear-gradient(135deg, #053D2E 0%, #10A97A 50%, #0593DC 100%); }

.hero__slide-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.07) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
}
.hero__cross {
    position: absolute;
    top: 30px; right: 60px;
    width: 100px; height: 100px;
    opacity: .08;
}
.hero__cross::before, .hero__cross::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 5px;
}
.hero__cross::before { width: 16px; height: 90px; left: 42px; top: 5px; }
.hero__cross::after  { width: 90px; height: 16px; left: 5px; top: 37px; }

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .18;
}

.hero__content { position: relative; z-index: 2; max-width: 580px; }

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50px;
    padding: 5px 14px;
    color: rgba(255,255,255,.92);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .03em;
    margin-bottom: 14px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 12px;
}

.hero__sub {
    font-size: 15px;
    color: rgba(255,255,255,.76);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hbtn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s, opacity .15s;
    border: none;
}
.hbtn:hover { transform: translateY(-1px); opacity: .92; }
.hbtn--white { background: #fff; color: var(--navy-800); }
.hbtn--sky   { background: linear-gradient(135deg, var(--sky-400), var(--sky-600)); color: #fff; }
.hbtn--teal  { background: linear-gradient(135deg, var(--teal-300), var(--teal-700)); color: #fff; }
.hbtn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.45);
}

/* Hero controls */
.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px; height: 40px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background .15s;
}
.hero__arrow:hover { background: rgba(255,255,255,.28); }
.hero__arrow--left  { left: 20px; }
.hero__arrow--right { right: 20px; }

.hero__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 5;
}
.hero__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: background .2s, width .2s;
}
.hero__dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* ============================================================
   COUNTDOWN STRIP
   ============================================================ */
.countdown-strip {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.cd__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-700);
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}
.cd__label i { color: var(--sky-500); }
.cd__timezone { font-size: 11.5px; color: var(--sky-600); font-weight: 700; }

.cd__boxes { display: flex; align-items: center; gap: 5px; }
.cd__box {
    background: var(--sky-50);
    border: 1px solid var(--sky-200);
    border-radius: var(--radius-md);
    padding: 6px 11px;
    text-align: center;
    min-width: 50px;
}
.cd__num  { font-size: 18px; font-weight: 800; color: var(--navy-800); line-height: 1; }
.cd__unit { font-size: 9px;  font-weight: 600; color: var(--sky-600); letter-spacing: .04em; margin-top: 2px; }
.cd__sep  { font-size: 18px; font-weight: 800; color: var(--sky-300); }

.cd__cta {
    margin-left: auto;
    background: linear-gradient(135deg, var(--sky-500), var(--navy-700));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .15s;
}
.cd__cta:hover { opacity: .88; }

/* ============================================================
   SECTION CHROME
   ============================================================ */
.lw-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 24px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}
.section-title__bar {
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, var(--sky-500), var(--teal-500));
    border-radius: 3px;
    flex-shrink: 0;
}

.section-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--sky-600);
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: color .15s;
}
.section-link:hover { color: var(--sky-800); }

/* ============================================================
   BUTTONS (General)
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform .15s, opacity .15s, box-shadow .15s;
    font-family: var(--font-body);
    text-align: center;
}
.btn:hover { transform: translateY(-1px); opacity: .9; }
.btn:active { transform: scale(.97); }

.btn-sky    { background: linear-gradient(135deg, var(--sky-400), var(--sky-600)); color: #fff; }
.btn-navy   { background: linear-gradient(135deg, var(--navy-600), var(--navy-900)); color: #fff; }
.btn-teal   { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); color: #fff; }
.btn-gold   { background: linear-gradient(135deg, var(--gold-300), var(--gold-600)); color: var(--gold-800); }
.btn-coral  { background: linear-gradient(135deg, var(--coral-400), var(--coral-700)); color: #fff; }
.btn-white  { background: #fff; color: var(--navy-800); border: 1.5px solid var(--border); }
.btn-ghost  { background: var(--sky-50); color: var(--sky-700); border: 1.5px solid var(--sky-200); }
.btn-sm     { padding: 7px 16px; font-size: 12.5px; }
.btn-lg     { padding: 14px 32px; font-size: 15px; }
.btn-full   { width: 100%; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); }
.card--lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 16px;
    align-items: start;
}

.video-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy-900);
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
}
.video-main__cover {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700), var(--sky-800));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.video-main__play {
    width: 64px; height: 64px;
    background: rgba(255,255,255,.18);
    border: 3px solid rgba(255,255,255,.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    transition: transform .2s, background .2s;
}
.video-main:hover .video-main__play { transform: scale(1.08); background: rgba(255,255,255,.26); }
.video-main__info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.75));
    padding: 30px 16px 14px;
    color: #fff;
}
.video-main__series { font-size: 10.5px; font-weight: 700; color: var(--sky-300); letter-spacing: .05em; text-transform: uppercase; }
.video-main__title  { font-size: 15px; font-weight: 700; margin-top: 4px; line-height: 1.3; }
.video-main__pastor { font-size: 12px; color: rgba(255,255,255,.72); margin-top: 3px; }
.video-main__badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--coral-500);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.video-list { display: flex; flex-direction: column; gap: 9px; }
.video-item {
    display: flex;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
}
.video-item:hover  { border-color: var(--sky-300); box-shadow: var(--shadow-sm); }
.video-item.active { border-color: var(--sky-500); border-width: 1.5px; }

.video-item__thumb {
    width: 80px;
    min-width: 80px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}
.thumb-1 { background: linear-gradient(135deg, var(--navy-800), var(--sky-700)); }
.thumb-2 { background: linear-gradient(135deg, var(--teal-700), var(--teal-500)); }
.thumb-3 { background: linear-gradient(135deg, var(--navy-700), var(--navy-400)); }
.thumb-4 { background: linear-gradient(135deg, var(--gold-800), var(--gold-400)); }

.video-item__play {
    width: 26px; height: 26px;
    background: rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
}
.video-item__duration {
    position: absolute;
    bottom: 5px; right: 5px;
    background: rgba(0,0,0,.72);
    color: #fff;
    font-size: 9px;
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 600;
}
.video-item__info { padding: 9px 11px; flex: 1; min-width: 0; }
.video-item__title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.video-item__meta { font-size: 10.5px; color: var(--text-muted); }

/* ============================================================
   EVENTS
   ============================================================ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.event-card { cursor: pointer; }
.event-card__thumb {
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ev--1 { background: linear-gradient(135deg, var(--navy-800), var(--sky-600)); }
.ev--2 { background: linear-gradient(135deg, var(--teal-900), var(--teal-500)); }
.ev--3 { background: linear-gradient(135deg, #78350F, var(--gold-400)); }
.ev--4 { background: linear-gradient(135deg, var(--coral-700), var(--coral-400)); }

.event-card__thumb-icon { font-size: 36px; color: rgba(255,255,255,.8); position: relative; z-index: 1; }
.event-card__thumb-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.18); }
.event-card__tag {
    position: absolute;
    top: 8px; left: 8px;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 50px;
    z-index: 2;
    letter-spacing: .04em;
}
.event-card__body { padding: 12px 14px; }
.event-card__name { font-size: 13px; font-weight: 700; color: var(--text-primary); line-height: 1.3; margin-bottom: 6px; }
.event-card__date {
    display: flex; align-items: center; gap: 5px;
    font-size: 11.5px; font-weight: 600; color: var(--sky-600); margin-bottom: 4px;
}
.event-card__loc {
    display: flex; align-items: center; gap: 4px;
    font-size: 11px; color: var(--text-muted); margin-bottom: 10px;
}
.event-card__register {
    display: block;
    text-align: center;
    background: var(--sky-50);
    color: var(--sky-700);
    font-size: 11.5px;
    font-weight: 700;
    padding: 7px;
    border-radius: var(--radius-md);
    border: 1px solid var(--sky-200);
    cursor: pointer;
    transition: background .15s, color .15s;
}
.event-card__register:hover { background: var(--sky-500); color: #fff; border-color: var(--sky-500); }

/* ============================================================
   GET INVOLVED
   ============================================================ */
.engage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.engage-card {
    border-radius: var(--radius-lg);
    padding: 22px 16px 20px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.engage-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.ec--sky   { background: linear-gradient(145deg, var(--sky-50),  #c8e9ff); border: 1px solid var(--sky-200); }
.ec--teal  { background: linear-gradient(145deg, var(--teal-50), #b0f0d9); border: 1px solid var(--teal-100); }
.ec--navy  { background: linear-gradient(145deg, var(--navy-50), #c2d4ff); border: 1px solid var(--navy-200); }
.ec--gold  { background: linear-gradient(145deg, var(--gold-50), #fde68a); border: 1px solid var(--gold-100); }

.engage-card__icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 24px;
}
.ei--sky   { background: linear-gradient(135deg, var(--sky-400), var(--sky-700)); color: #fff; }
.ei--teal  { background: linear-gradient(135deg, var(--teal-300), var(--teal-700)); color: #fff; }
.ei--navy  { background: linear-gradient(135deg, var(--navy-500,#4a63b4), var(--navy-800)); color: #fff; }
.ei--gold  { background: linear-gradient(135deg, var(--gold-300), var(--gold-600)); color: var(--gold-800); }

.engage-card__title { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.ct--sky  { color: var(--sky-800); }
.ct--teal { color: var(--teal-900); }
.ct--navy { color: var(--navy-800); }
.ct--gold { color: var(--gold-800); }

.engage-card__sub { font-size: 11.5px; line-height: 1.45; }
.cs--sky  { color: var(--sky-600); }
.cs--teal { color: var(--teal-700); }
.cs--navy { color: var(--navy-600); }
.cs--gold { color: var(--gold-600); }

.engage-card__arrow {
    position: absolute;
    bottom: 12px; right: 14px;
    font-size: 16px;
    opacity: .5;
}

/* ============================================================
   TESTIMONIES SLIDER
   ============================================================ */
.testimony-slider-wrap { overflow: hidden; position: relative; }
.testimony-slider { display: flex; gap: 14px; transition: transform .45s cubic-bezier(.4,0,.2,1); }

.testimony-card {
    min-width: calc(50% - 7px);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.testimony-card__quote {
    font-size: 40px;
    line-height: 1;
    color: var(--sky-200);
    font-family: Georgia, serif;
    margin-bottom: 8px;
}
.testimony-card__text {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 14px;
    font-style: italic;
}
.testimony-card__divider { height: 1px; background: var(--border-light); margin-bottom: 14px; }
.testimony-card__author { display: flex; align-items: center; gap: 10px; }

.testimony-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.ta--sky   { background: linear-gradient(135deg, var(--sky-400), var(--sky-700)); }
.ta--teal  { background: linear-gradient(135deg, var(--teal-300), var(--teal-700)); }
.ta--navy  { background: linear-gradient(135deg, var(--navy-500,#4a63b4), var(--navy-800)); }
.ta--gold  { background: linear-gradient(135deg, var(--gold-300), var(--gold-600)); }

.testimony-card__name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.testimony-card__loc  { font-size: 11px; color: var(--text-muted); }
.testimony-card__tag  {
    position: absolute;
    top: 14px; right: 14px;
    font-size: 10px; font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}
.tag--sky  { background: var(--sky-100);  color: var(--sky-700); }
.tag--teal { background: var(--teal-100); color: var(--teal-700); }
.tag--navy { background: var(--navy-100); color: var(--navy-700); }
.tag--gold { background: var(--gold-100); color: var(--gold-800); }

.slider-nav { display: flex; justify-content: center; align-items: center; gap: 9px; margin-top: 16px; }
.slider-btn {
    width: 33px; height: 33px;
    border-radius: 50%;
    background: var(--sky-50);
    border: 1px solid var(--sky-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--sky-700);
    font-size: 14px;
    transition: background .15s;
}
.slider-btn:hover { background: var(--sky-500); color: #fff; border-color: var(--sky-500); }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky-200); cursor: pointer; transition: background .2s, width .2s; }
.slider-dot.active { background: var(--sky-500); width: 22px; border-radius: 4px; }

/* ============================================================
   START YOUR JOURNEY
   ============================================================ */
.journey-section {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--sky-800) 50%, var(--teal-900) 100%);
    padding: 52px 24px;
    position: relative;
    overflow: hidden;
}
.journey-section__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
}
.journey-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.journey-section__left {}
.journey-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50px;
    padding: 5px 14px;
    color: rgba(255,255,255,.88);
    font-size: 11.5px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: .04em;
}
.journey-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}
.journey-sub {
    font-size: 14.5px;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    margin-bottom: 28px;
}
.journey-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.journey-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.journey-step__num {
    width: 32px; height: 32px;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.journey-step__text { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.5; padding-top: 5px; }
.journey-step__text strong { color: #fff; }

.journey-section__right {}
.journey-book-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    text-align: center;
}
.journey-book-cover {
    width: 140px;
    height: 200px;
    margin: 0 auto 20px;
    background: linear-gradient(145deg, #fff, var(--sky-100));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 8px 8px 24px rgba(0,0,0,.35), -2px -2px 8px rgba(255,255,255,.1);
    position: relative;
    overflow: hidden;
}
.journey-book-cover::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 12px;
    background: linear-gradient(90deg, var(--sky-300), var(--sky-500));
    border-radius: 8px 0 0 8px;
}
.journey-book-cover i { font-size: 40px; color: var(--sky-600); }
.journey-book-cover__title { font-size: 10px; font-weight: 700; color: var(--navy-800); text-align: center; padding: 0 14px; line-height: 1.4; }
.journey-book-cover__author { font-size: 9px; color: var(--sky-600); font-weight: 600; }
.journey-book-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.journey-book-sub { font-size: 12.5px; color: rgba(255,255,255,.7); margin-bottom: 20px; line-height: 1.5; }

/* ============================================================
   GIVING BAND
   ============================================================ */
.giving-band {
    background: linear-gradient(135deg, var(--sky-700), var(--navy-800), var(--teal-700));
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.giving-band__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 20px 20px;
}
.giving-band__icon {
    width: 58px; height: 58px;
    background: rgba(255,255,255,.14);
    border: 2px solid rgba(255,255,255,.24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--sky-200);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.giving-band__text { flex: 1; position: relative; z-index: 1; }
.giving-band__title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.giving-band__sub   { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.5; }
.giving-band__btns  { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.giving-band__btn1  {
    background: #fff;
    color: var(--navy-800);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    transition: opacity .15s;
}
.giving-band__btn1:hover { opacity: .92; }
.giving-band__btn2  {
    background: transparent;
    color: rgba(255,255,255,.85);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 50px;
    cursor: pointer;
    border: 1.5px solid rgba(255,255,255,.35);
    white-space: nowrap;
    text-align: center;
    transition: background .15s;
}
.giving-band__btn2:hover { background: rgba(255,255,255,.1); }

/* ============================================================
   LIVE CHAT BUBBLE
   ============================================================ */
.chat-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 800;
}
.chat-float__btn {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--sky-500), var(--navy-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: var(--shadow-lg);
    color: #fff;
    font-size: 22px;
    transition: transform .2s;
}
.chat-float__btn:hover { transform: scale(1.08); }
.chat-float__badge {
    position: absolute;
    top: -3px; right: -3px;
    width: 18px; height: 18px;
    background: var(--coral-500);
    border-radius: 50%;
    font-size: 9.5px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* Chat Window */
.chat-window {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 340px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 800;
    overflow: hidden;
}
.chat-window.open { display: flex; flex-direction: column; }
.chat-window__header {
    background: linear-gradient(135deg, var(--sky-600), var(--navy-700));
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.chat-window__avatar {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}
.chat-window__info { flex: 1; }
.chat-window__name { font-size: 13px; font-weight: 700; color: #fff; }
.chat-window__status { font-size: 11px; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 4px; }
.chat-online-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; }
.chat-window__close { color: rgba(255,255,255,.8); cursor: pointer; font-size: 18px; }

.chat-messages {
    flex: 1;
    height: 260px;
    overflow-y: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg-page);
}
.chat-msg {
    max-width: 80%;
    padding: 9px 13px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.5;
}
.chat-msg--in  { background: var(--bg-white); border: 1px solid var(--border-light); color: var(--text-primary); align-self: flex-start; border-radius: 4px 14px 14px 14px; }
.chat-msg--out { background: linear-gradient(135deg, var(--sky-500), var(--sky-700)); color: #fff; align-self: flex-end; border-radius: 14px 4px 14px 14px; }
.chat-msg__time { font-size: 10px; color: var(--text-muted); margin-top: 4px; }

.chat-input-wrap {
    padding: 12px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    background: var(--bg-white);
}
.chat-input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 9px 16px;
    font-size: 13px;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-page);
    outline: none;
}
.chat-input:focus { border-color: var(--sky-400); }
.chat-send {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    flex-shrink: 0;
}

/* ============================================================
   LIVE COMMENT SYSTEM
   ============================================================ */
.comment-section { max-height: 480px; overflow-y: auto; padding-right: 4px; }
.comment-section::-webkit-scrollbar { width: 4px; }
.comment-section::-webkit-scrollbar-thumb { background: var(--sky-200); border-radius: 2px; }

.comment-form {
    display: flex;
    gap: 9px;
    margin-bottom: 18px;
    align-items: flex-start;
}
.comment-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-400), var(--navy-700));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 13px; font-weight: 700;
    flex-shrink: 0;
}
.comment-input-wrap { flex: 1; }
.comment-textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 13.5px;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-card);
    resize: none;
    outline: none;
    min-height: 44px;
    transition: border-color .15s, min-height .2s;
}
.comment-textarea:focus { border-color: var(--sky-400); min-height: 80px; }
.comment-submit {
    margin-top: 7px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.comment-item { margin-bottom: 16px; }
.comment-item__main { display: flex; gap: 10px; }
.comment-item__body {
    flex: 1;
    background: var(--bg-page);
    border-radius: 4px var(--radius-md) var(--radius-md) var(--radius-md);
    padding: 10px 13px;
    border: 1px solid var(--border-light);
}
.comment-item__name { font-size: 12.5px; font-weight: 700; color: var(--navy-700); margin-bottom: 4px; }
.comment-item__text { font-size: 13.5px; color: var(--text-primary); line-height: 1.55; }
.comment-item__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 7px;
}
.comment-action {
    font-size: 11.5px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color .15s;
    border: none;
    background: none;
    font-family: var(--font-body);
    padding: 0;
}
.comment-action:hover { color: var(--sky-600); }
.comment-action.liked { color: var(--coral-500); }
.comment-time { font-size: 10.5px; color: var(--text-muted); margin-left: auto; }

.comment-replies { margin-left: 46px; margin-top: 8px; }
.comment-reply-item {
    display: flex;
    gap: 9px;
    margin-bottom: 10px;
}
.reply-avatar { width: 28px; height: 28px; font-size: 10px; font-weight: 700; }
.reply-body {
    flex: 1;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 4px var(--radius-md) var(--radius-md) var(--radius-md);
    padding: 8px 12px;
}
.reply-name { font-size: 11.5px; font-weight: 700; color: var(--navy-700); margin-bottom: 3px; }
.reply-text { font-size: 13px; color: var(--text-primary); line-height: 1.5; }

.reply-form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    align-items: center;
    padding-left: 46px;
}
.reply-input {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 13px;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-white);
    outline: none;
}
.reply-input:focus { border-color: var(--sky-400); }

/* ============================================================
   LIVE STREAM PAGE SPECIFIC
   ============================================================ */
.livestream-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 0;
    min-height: calc(100vh - var(--nav-h));
}
.livestream-main {
    display: flex;
    flex-direction: column;
    background: var(--navy-900);
}
.hls-player-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}
#hls-video {
    width: 100%;
    height: 100%;
    display: block;
}
.player-overlay-offline {
    position: absolute;
    inset: 0;
    background: var(--navy-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
}
.player-overlay-offline i { font-size: 48px; color: var(--sky-400); }
.player-overlay-offline p { font-size: 15px; color: rgba(255,255,255,.7); }

.stream-info-bar {
    padding: 14px 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    gap: 12px;
}
.stream-info-bar__title { font-size: 15px; font-weight: 700; color: #fff; flex: 1; }
.stream-live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(239,68,68,.2);
    border: 1px solid rgba(239,68,68,.5);
    color: #fca5a5;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}
.stream-viewers {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    gap: 5px;
}

.stream-giving {
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
}
.stream-giving__title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 12px;
}

.livestream-sidebar {
    border-left: 1px solid var(--border);
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
}
.sidebar-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-light);
}
.sidebar-tab {
    flex: 1;
    padding: 13px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color .15s;
}
.sidebar-tab.active { color: var(--sky-600); border-color: var(--sky-500); }

.sidebar-content { flex: 1; overflow: hidden; display: flex; flex-direction: column; }
.tab-panel { display: none; flex: 1; flex-direction: column; overflow: hidden; padding: 14px; }
.tab-panel.active { display: flex; }
.comment-scroll { flex: 1; overflow-y: auto; }

/* ============================================================
   MEMBERSHIP GATE MODAL
   ============================================================ */
.gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11,65,103,.92);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.gate-modal {
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.gate-modal__header {
    background: linear-gradient(135deg, var(--sky-600), var(--navy-800));
    padding: 24px 28px 20px;
    text-align: center;
    color: #fff;
}
.gate-modal__icon { font-size: 40px; margin-bottom: 10px; color: var(--sky-200); }
.gate-modal__title { font-size: 20px; font-weight: 700; margin-bottom: 5px; font-family: var(--font-display); }
.gate-modal__sub   { font-size: 13.5px; color: rgba(255,255,255,.78); }
.gate-modal__body  { padding: 24px 28px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Form fields */
.lw-field { margin-bottom: 14px; }
.lw-label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    letter-spacing: .01em;
}
.lw-input, .lw-select {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-page);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}
.lw-input:focus, .lw-select:focus {
    border-color: var(--sky-400);
    box-shadow: 0 0 0 3px rgba(5,147,220,.12);
}
.lw-radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.lw-radio {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    color: var(--text-primary);
    cursor: pointer;
}
.lw-radio input { accent-color: var(--sky-500); width: 16px; height: 16px; cursor: pointer; }

/* ============================================================
   LIVE STREAM ACCESS PAGE
   ============================================================ */
.stream-login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--sky-800) 50%, var(--teal-900) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    position: relative;
}
.stream-login-page__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
}
.stream-login-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-2xl);
    padding: 40px;
    max-width: 440px;
    width: 100%;
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 1;
}
.stream-login-card__logo { text-align: center; margin-bottom: 28px; }
.stream-login-card__logo i { font-size: 40px; color: var(--sky-300); }
.stream-login-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 6px;
}
.stream-login-card__sub { font-size: 13.5px; color: rgba(255,255,255,.65); text-align: center; margin-bottom: 28px; }
.stream-login-card .lw-label { color: rgba(255,255,255,.75); }
.stream-login-card .lw-input {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: #fff;
}
.stream-login-card .lw-input::placeholder { color: rgba(255,255,255,.4); }
.stream-login-card .lw-input:focus { border-color: var(--sky-300); box-shadow: 0 0 0 3px rgba(5,147,220,.2); }

/* ============================================================
   FOOTER
   ============================================================ */
.lw-footer { background: var(--navy-900); padding-top: 40px; }
.lw-footer__grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
}
.lw-footer__brand {}
.lw-footer__brand-name {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.lw-footer__brand-icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--sky-500), var(--navy-600));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #fff;
}
.lw-footer__brand-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 16px; }
.lw-footer__socials { display: flex; gap: 8px; }
.footer-social {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    transition: background .15s, color .15s;
}
.footer-social:hover { background: var(--sky-600); color: #fff; }
.lw-footer__col-title {
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 14px;
}
.lw-footer__link {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    margin-bottom: 9px;
    cursor: pointer;
    transition: color .15s;
}
.lw-footer__link:hover { color: var(--sky-300); }
.lw-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lw-footer__copy { font-size: 12px; color: rgba(255,255,255,.35); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes livepulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.35; transform:scale(.65); }
}
@keyframes fadeInUp {
    from { opacity:0; transform:translateY(16px); }
    to   { opacity:1; transform:translateY(0); }
}
.fade-in-up { animation: fadeInUp .5s ease both; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .events-grid    { grid-template-columns: repeat(2, 1fr); }
    .engage-grid    { grid-template-columns: repeat(2, 1fr); }
    .lw-footer__grid { grid-template-columns: 1fr 1fr; }
    .video-layout   { grid-template-columns: 1fr; }
    .video-list     { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
    .livestream-layout { grid-template-columns: 1fr; }
    .livestream-sidebar { border-left: none; border-top: 1px solid var(--border); }
    .journey-section__inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 768px) {
    :root { --nav-h: 58px; }
    .lw-nav__links  { display: none; }
    .lw-nav__actions .btn-live,
    .lw-nav__actions .btn-give { display: none; }
    .nav-hamburger  { display: flex; }
    .lw-nav__inner  { gap: 0; }
    .hero           { height: 420px; }
    .hero__slide    { padding: 0 0 44px 24px; }
    .hero__title    { font-size: 28px; }
    .hero__sub      { font-size: 13.5px; }
    .events-grid    { grid-template-columns: 1fr; }
    .engage-grid    { grid-template-columns: 1fr 1fr; }
    .lw-section     { padding: 24px 16px; }
    .lw-footer__grid { grid-template-columns: 1fr; }
    .giving-band    { flex-direction: column; text-align: center; }
    .giving-band__btns { width: 100%; }
    .countdown-strip { flex-wrap: wrap; gap: 10px; }
    .cd__cta        { margin-left: 0; }
    .testimony-card { min-width: calc(100% - 0px); }
    .video-list     { grid-template-columns: 1fr; }
    .chat-window    { right: 12px; width: calc(100vw - 24px); }
    .ann-bar        { padding: 9px 14px; }
    .form-grid-2    { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero           { height: 360px; }
    .hero__title    { font-size: 24px; }
    .engage-grid    { grid-template-columns: 1fr 1fr; }
    .engage-card    { padding: 16px 12px; }
    .gate-modal__body { padding: 18px 20px; }
    .stream-login-card { padding: 28px 20px; }
    .hbtn           { padding: 10px 18px; font-size: 13px; }
}

/* Scrollbar */
::-webkit-scrollbar       { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--sky-200); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sky-400); }