:root {
    --bg-dark: #050808;
    --brand-teal: #1b5b5c;
    --brand-teal-bright: #00ffcc;
    --brand-gold: #e69d45;
    --brand-gold-bright: #ffb84d;
    --text-pure: #ffffff;
    --text-dim: #8ba7a7;
    --youtube-red: #ff0000;
    --facebook-blue: #1877f2;
    --glass-bg: rgba(10, 25, 25, 0.4);
    --glass-border: rgba(0, 255, 204, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-pure);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    /* FIX FOR VIBRATION: Always show vertical scrollbar, hide horizontal */
    overflow-y: scroll;
    overflow-x: hidden;
    perspective: 1000px;
}

/* --- Dynamic Animated Background --- */
.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at center, #0a1414 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.color-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    mix-blend-mode: screen;
    animation: moveOrb 25s infinite alternate ease-in-out;
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    background: var(--brand-teal);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    background: var(--brand-gold);
    bottom: -10%;
    right: -20%;
    animation-delay: -5s;
}

.orb-3 {
    width: 40vw;
    height: 40vw;
    background: #0a3a3a;
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

.orb-4 {
    width: 70vw;
    height: 70vw;
    background: #4a2c0f;
    bottom: 20%;
    left: -20%;
    animation-delay: -15s;
}

@keyframes moveOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(10vw, -10vh) scale(1.2);
    }

    66% {
        transform: translate(-5vw, 15vh) scale(0.8);
    }

    100% {
        transform: translate(15vw, 5vh) scale(1);
    }
}

/* --- Particles --- */
#particles-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -30px;
    background: var(--brand-gold-bright);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 15px var(--brand-gold-bright);
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    15% {
        opacity: 0.8;
        transform: translateY(-15vh) scale(1);
    }

    85% {
        opacity: 0.5;
        transform: translateY(-85vh) scale(1);
    }

    100% {
        transform: translateY(-120vh) scale(0);
        opacity: 0;
    }
}

/* --- Layout --- */
.app-container {
    width: 100%;
    max-width: 1200px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 1;
}

/* Glassmorphism Panel Default */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 255, 204, 0.1);
}

/* --- Header --- */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    animation: slideDown 0.8s ease-out forwards;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.top-nav.scrolled {
    background: rgba(10, 15, 25, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 204, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1.5rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links-header {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.youtube-icon:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.5);
    color: #ff3333;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.facebook-icon:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: rgba(24, 119, 242, 0.5);
    color: var(--facebook-blue);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-wrapper {
    background: white;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-logo {
    height: 45px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--bg-dark);
    /* Dark text on white BG */
    font-weight: 800;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Interaction Rules */
.logo-wrapper:hover {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    gap: 0.8rem;
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
}

.logo-wrapper:hover .nav-logo {
    height: 75px;
}

.logo-wrapper:hover .brand-text {
    max-width: 250px;
    opacity: 1;
}

/* Dynamic Status Badge */
.pulse-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pulse-container.live {
    background: rgba(0, 255, 204, 0.1);
    border-color: rgba(0, 255, 204, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffaa00;
    box-shadow: 0 0 10px #ffaa00;
}

.pulse-container.live .status-dot {
    background: #ff3333;
    animation: rapidPulse 1s infinite alternate;
}

.status-text {
    font-weight: 700;
    font-size: 0.95rem;
}

.pulse-container.live .status-text {
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

@keyframes rapidPulse {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 5px #ff3333;
    }

    100% {
        transform: scale(1.5);
        box-shadow: 0 0 20px #ff3333;
    }
}

/* --- Main Player Box --- */
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.player-wrapper {
    width: 100%;
    position: relative;
    padding: 1.5rem;
    /* Room for 3D shadow */
}

/* Tilt Container removed due to iframe event blocking */
.tilt-container {
    position: relative;
    width: 100%;
}

.glass-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Bulletproof responsive iframe container */
    border-radius: 24px;
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(27, 91, 92, 0.3);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

/* YouTube Iframe Specific */
#obm-youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: #000;
}

/* --- Stream Metadata --- */
.video-info {
    margin-top: 1.5rem;
    padding: 1.5rem 2rem;
    text-align: right;
    border-radius: 16px;
    animation: fadeUp 0.5s ease-out forwards;
}

.video-info.hidden {
    display: none;
}

.video-info h2 {
    font-size: 1.5rem;
    color: var(--text-pure);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-weight: 800;
}

.video-info p {
    font-size: 1.1rem;
    color: var(--brand-gold-bright);
    opacity: 0.9;
    font-weight: 500;
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* --- Recent Videos Section --- */
.recent-videos-section {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-header {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-teal), transparent);
    border-radius: 2px;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

/* Skeleton Loading Cards */
.skeleton-card {
    pointer-events: none;
    cursor: default;
}

.skeleton-thumb {
    width: 100%;
    aspect-ratio: 16/9;
}

.skeleton-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.skeleton-line {
    border-radius: 6px;
    height: 14px;
}

.skeleton-line.long {
    width: 90%;
}

.skeleton-line.short {
    width: 45%;
    height: 10px;
}

@keyframes shimmerAnim {
    0% {
        background-position: -600px 0;
    }

    100% {
        background-position: 600px 0;
    }
}

.shimmer {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.03) 0%,
            rgba(255, 255, 255, 0.09) 40%,
            rgba(0, 255, 204, 0.07) 50%,
            rgba(255, 255, 255, 0.09) 60%,
            rgba(255, 255, 255, 0.03) 100%);
    background-size: 600px 100%;
    animation: shimmerAnim 1.6s infinite ease-in-out;
}

/* Card entrance animation when injected by scroll */
.card-enter {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.video-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.02);
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 204, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 204, 0.1);
}

.card-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .card-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.play-overlay svg {
    width: 60px;
    height: 60px;
    color: white;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.video-card:hover .play-overlay svg {
    transform: scale(1);
}

.card-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-date {
    color: var(--text-dim);
    font-size: 0.9rem;
}


/* --- Footer --- */
.app-footer {
    width: 100%;
    margin-top: auto;
    /* Push to bottom */
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    padding: 1.5rem 0;
    /* Force centering even in flex container */
    align-self: center;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 600px) {

    /* Remove body padding to let video touch the edges */
    .app-container {
        padding: 0;
        gap: 1rem;
    }

    /* Stack the header elements so they don't squish */
    .top-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-radius: 0 0 20px 20px;
        /* Only round bottom corners */
        border-top: none;
        border-left: none;
        border-right: none;
    }

    /* Remove wrapper padding so iframe is 100% wide */
    .player-wrapper {
        padding: 0;
    }

    /* Remove border radius from video so it looks native edge-to-edge */
    .glass-frame {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    /* Stack header actions vertically on very small screens */
    .header-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .top-nav {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    /* Adjust footer padding */
    .app-footer {
        padding: 1rem;
    }
}

/* =====================================================
   Video Modal
   ===================================================== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    z-index: 1;
    width: min(90vw, 960px);
    max-height: 92vh;
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.93) translateY(28px);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 255, 204, 0.15);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 255, 204, 0.05);
    display: flex;
    flex-direction: column;
}

.video-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-player {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.modal-player iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.modal-title-bar {
    padding: 0.9rem 1.4rem;
    font-size: 0.95rem;
    color: var(--text-dim);
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-close {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.modal-close:hover {
    background: rgba(255, 60, 60, 0.55);
    transform: scale(1.1);
}

/* =====================================================
   Meeting Schedule Cards
   ===================================================== */
.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 204, 0.08);
    transition: all 0.3s ease;
    cursor: default;
}

.schedule-card:hover {
    background: rgba(0, 255, 204, 0.05);
    border-color: rgba(0, 255, 204, 0.2);
    transform: translateX(-4px);
    box-shadow: 4px 0 20px rgba(0, 255, 204, 0.07);
}

.schedule-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 70px;
}

.schedule-icon {
    font-size: 1.8rem;
}

.schedule-day-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.schedule-info {
    flex: 1;
}

.schedule-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px;
}

.schedule-location {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.schedule-time {
    display: flex;
    align-items: center;
}

.time-badge {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.15), rgba(0, 180, 150, 0.1));
    border: 1px solid rgba(0, 255, 204, 0.25);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    font-feature-settings: 'tnum';
}

.schedule-note {
    text-align: center;
    margin-top: 1.2rem;
    color: var(--text-dim);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Video card cursor for clickable divs */
.video-card[role="button"] {
    cursor: pointer;
}

/* =====================================================
   Section Navigation Bar
   ===================================================== */
.section-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(5, 8, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 255, 204, 0.1);
    margin-bottom: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
}

.section-nav::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.nav-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-pure);
}

.nav-pill.active {
    background: rgba(0, 255, 204, 0.15);
    color: var(--brand-teal-bright);
    border-color: rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.1);
}

.nav-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.nav-pill-dot.live-dot {
    background: var(--brand-teal-bright);
    box-shadow: 0 0 8px var(--brand-teal-bright);
    animation: pulseActive 2s infinite;
}

@keyframes pulseActive {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* =====================================================
   Live Section Intro
   ===================================================== */
.live-section-intro {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 0 1rem;
}

.live-label-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4444;
    box-shadow: 0 0 8px #ff4444;
    animation: pulseActive 1.5s infinite;
}

.live-section-desc {
    color: var(--text-dim);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.6;
}

/* =====================================================
   Offline Overlay
   ===================================================== */
.offline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 12, 15, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.5s ease;
    border-radius: 12px;
}

.offline-content {
    text-align: center;
    color: var(--text-pure);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.offline-icon-wrapper {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.offline-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-pure);
}

.countdown-wrapper {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1rem;
    color: var(--brand-teal-bright) !important;
    margin-bottom: 0.8rem !important;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    direction: ltr;
    /* Ensure 00:00:00:00 order */
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    min-width: 60px;
}

.time-block span {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: monospace;
    line-height: 1;
    color: var(--text-pure);
}

.time-block small {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.3rem;
    text-transform: uppercase;
}

.colon {
    font-size: 1.4rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.2rem;
}

.offline-content p#offline-fallback-text {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin: 0;
}

/* =====================================================
   Weekly Verse / Quote Card
   ===================================================== */
.verse-section {
    max-width: 800px;
    margin: 2rem auto 4rem;
    padding: 0 1rem;
}

.verse-card {
    position: relative;
    padding: 2.5rem 3rem;
    text-align: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(27, 91, 92, 0.2), rgba(230, 157, 69, 0.08));
    border: 1px solid rgba(0, 255, 204, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.verse-quote-mark {
    position: absolute;
    top: -15px;
    right: 25px;
    font-size: 5rem;
    color: rgba(230, 157, 69, 0.25);
    line-height: 1;
    font-family: serif;
    pointer-events: none;
}

.verse-text {
    font-size: 1.4rem;
    color: var(--text-pure);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.verse-ref {
    display: inline-block;
    font-size: 1rem;
    color: var(--brand-gold-bright);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* =====================================================
   Mobile Responsiveness Fixes
   ===================================================== */
@media (max-width: 768px) {
    .section-nav {
        justify-content: flex-start;
        padding: 0.8rem 1rem;
        gap: 0.6rem;
    }

    .nav-pill {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .live-section-intro {
        margin-bottom: 1.5rem;
    }

    .live-section-desc {
        font-size: 0.95rem;
    }

    .offline-content h3 {
        font-size: 1.3rem;
    }

    .offline-content p {
        font-size: 0.95rem;
    }

    .verse-card {
        padding: 2rem 1.5rem;
    }

    .verse-text {
        font-size: 1.15rem;
        line-height: 1.6;
    }

    .verse-quote-mark {
        top: -10px;
        right: 15px;
        font-size: 4rem;
    }
}