        :root {
            --base-bg: #000000; 
            --cyan: #00E5FF;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --app-bg: #000000;
            --app-card: #121212;
            --app-text: #ffffff;
            --app-text-muted: #888888;
        }

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

        body {
            background-color: var(--base-bg);
            color: #ffffff;
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
            min-height: 100dvh;
            overflow-x: hidden;
            overscroll-behavior: none;
        }

        .scroll-track {
            height: 180dvh; 
            width: 100%;
            position: relative;
            pointer-events: none; /* Absolutely prevents any invisible elements from intercepting clicks */
        }

        .hero {
            position: relative;
            height: 100dvh;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 20px;
        }

        .hero-logo {
            width: 200px;
            margin-bottom: 24px;
            z-index: 10;
            position: absolute;
            top: 10%;
        }

        .hero-title {
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            text-align: center;
            z-index: 10;
            background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: absolute;
            top: 20%;
        }

        .scene {
            perspective: 1200px;
            height: 75vh;
            max-height: 720px;
            aspect-ratio: 340 / 720;
            z-index: 5;
            margin-top: 10vh;
        }

        .phone {
            width: 100%;
            height: 100%;
            border-radius: 54px;
            /* Ultra-realistic iPhone 17 Titanium edge */
            box-shadow:
                inset 0 0 0 2px #000,
                inset 0 0 0 6px #3b3b3e,
                inset 0 0 0 7px rgba(255,255,255,0.4),
                inset 0 0 2px 8px rgba(255,255,255,0.1),
                0 0 0 1px #222,
                0 30px 60px rgba(0,0,0,0.8),
                0 60px 120px rgba(0,0,0,0.6);
            background: #000;
            padding: 14px;
            transform-style: preserve-3d;
            transform: rotateX(15deg) rotateY(-8deg) rotateZ(2deg);
            position: relative;
        }

        /* Right power button */
        .phone::before {
            content: '';
            position: absolute;
            right: -5px;
            top: 130px;
            width: 5px;
            height: 70px;
            background: linear-gradient(to right, #333, #555);
            border-radius: 0 3px 3px 0;
            box-shadow: inset 1px 0 2px rgba(255,255,255,0.1);
        }

        /* Left buttons: Action, Vol Up, Vol Down */
        .phone::after {
            content: '';
            position: absolute;
            left: -5px;
            top: 90px;
            width: 5px;
            height: 30px;
            background: linear-gradient(to left, #333, #555);
            border-radius: 3px 0 0 3px;
            box-shadow: 
                0 55px 0 0 #444,
                0 55px 0 0 inset rgba(255,255,255,0.1),
                0 115px 0 0 #444;
        }

        .screen {
            width: 100%;
            height: 100%;
            border-radius: 40px; /* Perfectly matches outer bezel (54 - 14 = 40) */
            background-color: #000;
            overflow: hidden;
            position: relative;
            color: #fff;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
        }

        /* Screen Reflection / Gloss (Animatable via GSAP) */
        .glass-gloss {
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 65%);
            pointer-events: none;
            z-index: 100;
            opacity: 0.5;
            will-change: transform, opacity;
            mix-blend-mode: screen;
        }

        .dynamic-island {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 96px;
            height: 27px;
            background: #000;
            border-radius: 18px;
            z-index: 40;
        }

        /* ── Sticky App Header ── */
        .app-header {
            position: absolute;
            top: 35px;
            left: 0;
            width: 100%;
            padding: 7px 12px 20px 12px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            z-index: 30;
            background: transparent;
            pointer-events: none;
        }
        
        .app-selector, .app-search-btn {
            pointer-events: auto;
        }

        .app-selector {
            background: #1c1c1e;
            border-radius: 22px;
            padding: 6px 10px 6px 6px;
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 11px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.08);
            color: #fff;
        }

        .brand-badge {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #2a2a2a;
            border: 1px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .app-search-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #1c1c1e;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255,255,255,0.08);
        }

        /* ── Scrollable Content ── */
        .app-content-scroll {
            position: absolute;
            top: 94px;
            left: 0;
            width: 100%;
            padding: 8px 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .sec-hdr {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 4px;
        }
        .sec-title {
            font-size: 8.5px;
            font-weight: 700;
            letter-spacing: 1.2px;
            color: #888;
            text-transform: uppercase;
        }
        .sec-link { font-size: 7.5px; font-weight: 600; color: #888; }

        /* Action Required cards */
        .action-card {
            background: #0d0d0d;
            border-radius: 12px;
            padding: 10px 12px;
            border: 1px solid rgba(255,255,255,0.06);
            position: relative;
        }
        .ac-row { display: flex; align-items: flex-start; gap: 9px; }
        .ac-icon {
            width: 26px; height: 26px;
            border-radius: 7px;
            background: rgba(255,51,102,0.14);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; margin-top: 1px;
        }
        .ac-title  { font-size: 10.5px; font-weight: 700; color: #fff; }
        .ac-sub    { font-size: 8.5px; color: #888; margin-top: 1px; }
        .ac-over   { font-size: 8.5px; font-weight: 700; color: #FF3366; margin-top: 2px; }
        .ac-badge  {
            display: inline-block;
            background: rgba(255,51,102,0.16);
            border: 1px solid rgba(255,51,102,0.38);
            border-radius: 5px;
            padding: 1.5px 6px;
            font-size: 7.5px; font-weight: 600; color: #FF3366;
            margin-top: 4px;
        }
        .ac-rc     { font-size: 7.5px; color: #444; margin-top: 2px; letter-spacing: 0.5px; }
        .ac-arrow  {
            position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
            font-size: 13px; color: #3a3a3a;
        }

        /* Garage cards */
        .garage-card {
            background: #0d0d0d;
            border-radius: 12px;
            padding: 9px 12px;
            display: flex; align-items: center; gap: 10px;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .ring-wrap {
            position: relative; width: 38px; height: 38px; flex-shrink: 0;
        }
        .ring-wrap svg { position: absolute; top: 0; left: 0; transform: rotate(-90deg); }
        .ring-center {
            position: absolute; inset: 4px;
            background: #1a1a1a; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
        }
        .g-info { flex: 1; min-width: 0; }
        .g-name  { font-size: 10.5px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .g-sub   { display: flex; align-items: center; gap: 5px; margin-top: 2px; flex-wrap: wrap; }
        .g-pct   { font-size: 8px; color: #888; }
        .g-act   { font-size: 8px; font-weight: 600; color: #FFB300; }
        .g-ver   {
            font-size: 7.5px; font-weight: 700; color: #00E5FF;
            border: 1px solid #00E5FF; border-radius: 7px;
            padding: 1px 5px; display: flex; align-items: center; gap: 2px;
        }

        /* Featured card */
        .feat-card {
            border-radius: 12px; overflow: hidden;
            background: #0d0d0d; border: 1px solid rgba(255,255,255,0.05);
        }
        .feat-img {
            width: 100%; height: 100px;
            background: url('https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?auto=format&fit=crop&w=800&q=80') center/cover;
            position: relative;
        }
        .feat-img::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
        }
        .feat-body  { padding: 8px 10px; }
        .feat-title { font-size: 9.5px; font-weight: 600; margin-bottom: 3px; line-height: 1.3; }
        .feat-price { font-size: 15px; font-weight: 800; color: #00E5FF; }

        /* ── Sticky Bottom Nav ── */
        .app-bottom-nav {
            position: absolute;
            bottom: 10px; left: 10px; right: 10px;
            display: flex; gap: 8px; align-items: center;
            z-index: 30;
        }

        .nav-ds-btn {
            width: 38px; height: 38px;
            background: #1c1c1e; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 900; font-size: 12px; font-style: italic;
            border: 1px solid rgba(255,255,255,0.12);
            color: #fff; flex-shrink: 0; letter-spacing: -0.5px;
        }

        .nav-pill {
            flex: 1; height: 44px;
            background: #1c1c1e; border-radius: 22px;
            display: flex; align-items: center; justify-content: space-around;
            padding: 0 4px; border: 1px solid rgba(255,255,255,0.10);
        }

        .nav-item {
            display: flex; flex-direction: column; align-items: center;
            gap: 2px; font-size: 7.5px; font-weight: 600;
            color: #888; padding: 3px 5px;
        }
        .nav-item.active { color: #00E5FF; }

        /* Static CTA Section */
        .cta-section {
            width: 100%;
            padding: 40px 20px 80px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--base-bg);
            position: relative;
            z-index: 10;
        }

        .cta-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: max-content;
        }

        .cta-button {
            pointer-events: auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 229, 255, 0.1);
            color: #00e5ff;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.1em;
            padding: 16px 36px;
            border-radius: 100px;
            font-size: 14px;
            text-decoration: none;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 229, 255, 0.3);
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cta-button:hover {
            background: rgba(0, 229, 255, 0.2);
            border-color: rgba(0, 229, 255, 0.5);
            box-shadow: 0 0 40px rgba(0, 229, 255, 0.4);
            transform: translateY(-2px) scale(1.05);
        }

        /* Desktop QR Code Container */
        .desktop-qr-container {
            display: none;
            flex-direction: column;
            align-items: center;
            pointer-events: auto;
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 24px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }

        .qr-image-wrapper {
            background: #ffffff;
            padding: 8px;
            border-radius: 16px;
            margin-top: 12px;
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
        }

        /* Install Modal Overlay */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 20000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .install-modal {
            background: #0a0a0a;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 28px;
            width: 90%;
            max-width: 340px;
            padding: 32px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.08);
            transform: scale(0.96) translateY(16px);
            transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .modal-overlay.active .install-modal {
            transform: scale(1) translateY(0);
        }

        .modal-glow {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 75%;
            height: 50%;
            background: rgba(0, 229, 255, 0.03);
            filter: blur(40px);
            pointer-events: none;
        }

        .modal-icon {
            position: relative;
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: #00e5ff;
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .modal-title {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            letter-spacing: -0.02em;
            font-family: 'Space Grotesk', sans-serif;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }

        .modal-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
            margin-bottom: 32px;
            padding: 0 8px;
            font-weight: 500;
        }

        .desktop-qr-container {
            width: 100%;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
            margin-bottom: 32px;
        }

        .qr-image-wrapper img {
            display: block;
            border-radius: 8px;
            opacity: 0.9;
        }

        .modal-btn {
            width: 100%;
            background: rgba(0, 229, 255, 0.1);
            color: #00E5FF;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            padding: 16px 0;
            border-radius: 12px;
            border: 1px solid rgba(0, 229, 255, 0.3);
            font-size: 12px;
            font-family: 'Space Grotesk', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
        }

        .modal-btn:hover {
            background: rgba(0, 229, 255, 0.2);
            border-color: rgba(0, 229, 255, 0.5);
        }

        .modal-btn:active {
            transform: scale(0.97);
        }

/* Premium Footer Styles */
.site-footer {
    width: 100%;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 20px 40px;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-link {
    color: var(--app-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--cyan);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 120px;
    opacity: 0.9;
}

.footer-desc {
    color: var(--app-text-muted);
    font-size: 13px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--app-text-muted);
    font-size: 12px;
}

/* Secondary Pages Specific Styles */
.page-container {
    max-width: 800px;
    margin: 100px auto 60px;
    padding: 0 24px;
}

.page-header {
    margin-bottom: 48px;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.page-subtitle {
    color: var(--cyan);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.content-section {
    background: var(--app-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
}

.content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #e0e0e0;
    font-weight: 600;
}

.content-section p, .content-section li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.content-section ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #fff;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-header img {
    height: 24px;
}

.back-link {
    color: var(--app-text-muted);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #fff;
}

/* ── New Phone Screen Elements ── */

.feat-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 10px 12px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.feat-dots {
    margin-top: 6px; display: flex; gap: 3px; justify-content: flex-end;
}
.dot {
    width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4);
}
.dot.active { background: #00E5FF; width: 12px; border-radius: 2px; }

/* Radar */
.radar-map {
    height: 180px; background: #0a0a0a; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden;
}
.radar-grid-bg {
    position: absolute; inset: 0;
    background-size: 15px 15px;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
}
.radar-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
}
.radar-ring.r1 { width: 40px; height: 40px; }
.radar-ring.r2 { width: 90px; height: 90px; }
.radar-ring.r3 { width: 140px; height: 140px; }
.radar-center-dot {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 8px; height: 8px; background: #00E5FF; border-radius: 50%;
    box-shadow: 0 0 10px #00E5FF;
}
.radar-marker {
    position: absolute; background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    padding: 3px 6px; display: flex; flex-direction: column; gap: 1px;
}
.radar-marker.active { border-color: #39FF14; background: rgba(57,255,20,0.05); }
.rm-price { font-size: 8px; font-weight: 700; color: #fff; }
.active .rm-price { color: #39FF14; }
.rm-name { font-size: 6.5px; color: #888; }
.m1 { top: 20%; left: 15%; }
.m2 { top: 30%; right: 10%; }
.m3 { bottom: 25%; left: 20%; }
.m4 { bottom: 15%; right: 15%; }
.radar-loc-pill {
    position: absolute; bottom: 10px; left: 10px;
    background: #0d0d0d; border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px; padding: 4px 8px;
    font-size: 7px; font-weight: 700; display: flex; align-items: center; gap: 4px; color: #fff;
}
.radar-controls {
    position: absolute; top: 10px; right: 10px; display: flex; gap: 6px;
}
.rc-btn {
    width: 22px; height: 22px; border-radius: 50%; background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
}

/* Calc */
.calc-section {
    background: #0d0d0d; border-radius: 12px; border: 1px solid rgba(255,255,255,0.06);
    padding: 12px; margin-top: 8px;
}
.round-trip-btn {
    font-size: 6.5px; font-weight: 600; color: #888; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px; padding: 2px 6px; display: flex; align-items: center; gap: 3px;
}
.calc-input-group { margin-top: 8px; }
.calc-label { font-size: 6px; font-weight: 700; color: #666; margin-bottom: 3px; }
.calc-input {
    background: #000; border: 1px solid rgba(255,255,255,0.08); border-radius: 6px;
    padding: 6px 8px; font-size: 8px; color: #666; display: flex; align-items: center; gap: 6px;
}

/* News */
.news-card {
    height: 110px; border-radius: 12px; overflow: hidden; position: relative;
    background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,0.06);
}
.nc-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.2));
    display: flex; flex-direction: column; justify-content: flex-end; padding: 10px 12px;
}
.nc-title { font-size: 9px; font-weight: 700; line-height: 1.3; color: #fff; margin-bottom: 6px; }
.nc-meta { font-size: 7px; color: #888; font-weight: 600; }

.app-spinner {
    width: 20px; height: 20px; border: 2px solid rgba(0,229,255,0.2);
    border-top-color: #00E5FF; border-radius: 50%; margin: 20px auto;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.app-footer-text {
    text-align: center; font-size: 8px; font-weight: 600; color: #555;
    line-height: 1.5; margin-bottom: 10px;
}

.ios-status-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 35px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 16px; color: #fff; z-index: 10; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.sb-time { font-size: 10px; font-weight: 600; }
.sb-icons { display: flex; align-items: center; gap: 4px; }
.sb-batt {
    width: 16px; height: 8px; border-radius: 2px; border: 1px solid rgba(255,255,255,0.4);
    position: relative; display: flex; align-items: center; justify-content: center;
    margin-left: 2px;
}
.sb-batt::after {
    content: ''; position: absolute; right: -2px; top: 2px; height: 2px; width: 1px; background: rgba(255,255,255,0.4);
}
.sb-batt-level {
    position: absolute; left: 1px; top: 1px; bottom: 1px; width: 70%;
    background: #fff; border-radius: 1px;
}

