        :root {
            --bg-deep: #06060b;
            --bg-surface: #0d0d14;
            --bg-card: rgba(255, 255, 255, 0.03);
            --bg-card-hover: rgba(255, 255, 255, 0.06);
            --border: rgba(255, 255, 255, 0.06);
            --border-hover: rgba(255, 255, 255, 0.12);
            --text-primary: #e8e8ed;
            --text-secondary: #7a7a8e;
            --text-muted: #4a4a5e;
            --accent: #3b82f6;
            --accent-glow: rgba(59, 130, 246, 0.15);
            --accent-bright: #60a5fa;
            --cyan: #22d3ee;
            --success: #34d399;
            --error: #f87171;
            --radius: 12px;
            --radius-lg: 20px;
        }

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

        body {
            font-family: 'Outfit', -apple-system, sans-serif;
            background: var(--bg-deep);
            color: var(--text-primary);
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Ambient glow */
        body::before {
            content: '';
            position: fixed;
            top: -40%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 600px;
            background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, rgba(34, 211, 238, 0.03) 40%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        /* Noise texture overlay */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 0;
            opacity: 0.5;
        }

        /* ─── Header ─── */
        header {
            position: relative;
            z-index: 10;
            padding: 18px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--border);
            backdrop-filter: blur(20px);
            background: rgba(6, 6, 11, 0.8);
        }

        ._ax5v {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-decoration: none;
            color: var(--text-primary);
        }

        ._bipe {
            width: 24px;
            height: 24px;
            display: grid;
            place-items: center;
            color: var(--text-primary);
        }

        ._bipe svg {
            width: 24px;
            height: 24px;
        }

        ._cxzc {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            color: var(--success);
            font-weight: 500;
            background: rgba(52, 211, 153, 0.08);
            padding: 6px 14px;
            border-radius: 100px;
            border: 1px solid rgba(52, 211, 153, 0.15);
        }

        ._cxzc::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--success);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        ._dqdt {
            display: flex;
            gap: 4px;
        }

        ._ejv5 {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-muted);
            text-decoration: none;
            padding: 4px 8px;
            border-radius: 6px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        ._ejv5:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
        }

        ._ejv5.active {
            color: var(--accent-bright);
            background: var(--accent-glow);
        }

        /* ─── Main Content ─── */
        main {
            position: relative;
            z-index: 1;
            flex: 1;
            max-width: 780px;
            margin: 0 auto;
            padding: 32px 24px 24px;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* ─── Hero Section ─── */
        ._fgey {
            text-align: center;
            margin-bottom: 32px;
        }

        ._fgey h1 {
            font-size: clamp(2.7rem, 6.75vw, 3.6rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #fff 0%, #a5b4c8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        ._g315 {
            position: relative;
            -webkit-text-fill-color: var(--cyan);
            display: inline-block;
        }

        ._g315::after {
            content: '';
            position: absolute;
            left: -2px;
            right: -2px;
            bottom: 0;
            height: 10px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12'%3E%3Cpath d='M2 9c10-4 20-2 30-1s20-3 30-2 20 2 30 0 20-3 26-2' stroke='%2322d3ee' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
            background-size: 100% 100%;
        }

        ._fgey h2 {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            font-weight: 400;
            color: var(--text-secondary);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        ._fgey p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
            max-width: 520px;
            margin: 0 auto;
            font-weight: 300;
        }

        ._fgey p strong {
            color: var(--cyan);
            font-weight: 600;
        }

        ._h8tz {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        ._iw92 {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        ._iw92 svg {
            width: 16px;
            height: 16px;
            color: var(--text-muted);
            opacity: 0.7;
        }

        /* ─── Drop Zone ─── */
        ._j7jy {
            position: relative;
            border: 1px dashed rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 38px 24px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--bg-card);
            margin-bottom: 20px;
            overflow: hidden;
        }

        ._j7jy::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius-lg);
            background: radial-gradient(ellipse at 50% 0%, var(--accent-glow) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        ._j7jy:hover, ._j7jy.dragover {
            border-color: var(--accent);
            background: var(--bg-card-hover);
        }

        ._j7jy:hover::before, ._j7jy.dragover::before {
            opacity: 1;
        }

        ._k8b1 {
            position: relative;
            z-index: 1;
        }

        ._j7jy ._lkqr {
            font-size: 2.5rem;
            margin-bottom: 16px;
            display: block;
            opacity: 0.6;
            filter: grayscale(0.3);
        }

        ._j7jy p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        ._j7jy p strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        ._j7jy ._mmwd {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 8px;
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: 0.04em;
        }

        /* ─── File Info ─── */
        ._n4m8 {
            display: none;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 16px 20px;
            margin-bottom: 20px;
        }

        ._n4m8.visible {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        ._n4m8 ._ogw4 {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--accent-glow);
            border: 1px solid rgba(59, 130, 246, 0.2);
            display: grid;
            place-items: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        ._n4m8 ._putm { flex: 1; min-width: 0; }

        ._n4m8 ._q809 {
            font-weight: 600;
            font-size: 0.9rem;
            word-break: break-all;
            color: var(--text-primary);
        }

        ._n4m8 ._rmqc {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 2px;
            font-family: 'JetBrains Mono', monospace;
        }

        ._n4m8 ._sz0j {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            color: var(--text-muted);
            padding: 6px 10px;
            transition: all 0.2s;
        }

        ._n4m8 ._sz0j:hover {
            color: var(--error);
            border-color: rgba(248, 113, 113, 0.3);
            background: rgba(248, 113, 113, 0.08);
        }

        /* ─── Password Input ─── */
        ._t30g {
            display: none;
            margin-bottom: 20px;
        }

        ._t30g.visible { display: block; }

        ._t30g label {
            display: block;
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 0.88rem;
            color: var(--text-secondary);
        }

        ._ugg3 {
            position: relative;
            margin-bottom: 22px;
        }

        ._t30g input {
            width: 100%;
            padding: 14px 48px 14px 16px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            font-family: 'JetBrains Mono', monospace;
            outline: none;
            background: var(--bg-card);
            color: var(--text-primary);
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        ._t30g input::placeholder {
            color: var(--text-muted);
            font-family: 'Outfit', sans-serif;
        }

        ._t30g input:hover:not(:focus) {
            border-color: var(--border-hover);
        }

        ._t30g input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-glow);
        }

        ._t30g input.error {
            border-color: var(--error);
            box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
        }

        ._v5m4 {
            position: absolute;
            left: 0;
            top: 100%;
            margin-top: 6px;
            font-size: 0.82rem;
            color: var(--error);
            font-weight: 500;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s;
        }

        ._v5m4.visible {
            opacity: 1;
        }

        ._w59m {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-muted);
            padding: 4px;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        ._w59m svg {
            width: 20px;
            height: 20px;
        }

        ._w59m:hover { color: var(--text-secondary); }

        /* ─── Unlock Button ─── */
        ._xlzy {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--accent), #2563eb);
            color: #fff;
            border: none;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 600;
            font-family: 'Outfit', sans-serif;
            cursor: pointer;
            display: none;
            transition: all 0.3s ease;
            position: relative;
            letter-spacing: 0.01em;
        }

        ._xlzy.visible { display: block; }

        ._xlzy::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius);
            background: linear-gradient(135deg, #60a5fa, var(--cyan));
            opacity: 0;
            transition: opacity 0.3s;
        }

        ._xlzy:hover::before { opacity: 1; }
        ._xlzy:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25); }
        ._xlzy span { position: relative; z-index: 1; }

        ._xlzy:disabled {
            background: rgba(59, 130, 246, 0.3);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        ._xlzy:disabled::before { display: none; }

        /* ─── Status ─── */
        .status {
            text-align: center;
            margin-top: 16px;
            font-size: 0.9rem;
            display: none;
            font-weight: 500;
        }

        .status.visible { display: block; }
        .status.success { color: var(--success); }
        .status.error { color: var(--error); }

        /* ─── Modal ─── */
        ._yn36 {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 100;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        ._yn36.open {
            display: flex;
            animation: modal-fade-in 0.3s ease-out;
        }

        ._zt2w {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            max-width: 440px;
            width: 100%;
            position: relative;
            text-align: center;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
            animation: modal-slide-up 0.3s ease-out;
        }

        ._abrku {
            position: absolute;
            top: 14px;
            right: 14px;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: all 0.2s;
            line-height: 1;
        }

        ._abrku:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
        }

        ._bbe4v {
            margin-bottom: 24px;
        }

        .spinner {
            width: 48px;
            height: 48px;
            border: 3px solid var(--border);
            border-top-color: var(--accent);
            border-radius: 50%;
            margin: 0 auto 16px;
            animation: spin 0.8s linear infinite;
        }

        ._bbe4v p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 400;
        }

        ._cb89z {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            min-height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        ._db6oq {
            display: none;
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--success), #059669);
            color: #fff;
            border: none;
            border-radius: var(--radius);
            font-size: 1.05rem;
            font-weight: 600;
            font-family: 'Outfit', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.01em;
        }

        ._db6oq.visible {
            display: block;
            animation: fade-up 0.4s ease-out;
        }

        ._db6oq:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 30px rgba(52, 211, 153, 0.25);
        }

        @keyframes modal-fade-in {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes modal-slide-up {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* ─── Footer ─── */
        footer {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 20px 24px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.75rem;
        }

        footer p + p { margin-top: 2px; }

        footer a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        footer a:hover { color: var(--text-secondary); }

        /* ─── Animations ─── */
        @keyframes fade-up {
            from { opacity: 0; transform: translateY(16px); }
            to { opacity: 1; transform: translateY(0); }
        }

        ._fgey { animation: fade-up 0.6s ease-out; }
        ._j7jy { animation: fade-up 0.6s ease-out 0.1s both; }

        /* ─── Responsive ─── */
        @media (max-width: 700px) {
            main { padding: 24px 16px 20px; }
            ._cxzc span { display: none; }
        }

        @media (max-width: 400px) {
            ._h8tz { gap: 12px; }
        }
