        :root {
            --bg: #0a0f1e;
            --surface: #111827;
            --surface2: #1a2236;
            --border: #1e2d45;
            --accent: #3b82f6;
            --accent2: #06b6d4;
            --green: #10b981;
            --red: #ef4444;
            --amber: #f59e0b;
            --text: #f1f5f9;
            --muted: #64748b;
            --radius: 20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
            min-height: 100dvh;
            max-width: 430px;
            margin: 0 auto;
            position: relative;
            overflow-x: hidden;
        }

        /* BACKGROUND GRADIENT */
        body::before {
            content: '';
            position: fixed;
            top: -200px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        /* TOP STATUS BAR */
        .status-bar {
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--muted);
            position: relative;
            z-index: 2;
        }

        /* HEADER */
        .header {
            padding: 0 20px 20px;
            position: relative;
            z-index: 2;
        }

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

        .brand-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .app-logo {
            height: 28px;
            width: auto;
            object-fit: contain;
        }

        .app-name {
            font-size: 13px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .logout-btn {
            background: var(--surface2);
            border: 1px solid var(--border);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s;
            padding: 0;
            line-height: 1;
        }

        .logout-btn:active {
            transform: scale(0.9);
            background: var(--border);
        }

        .date-pill {
            background: var(--surface2);
            border: 1px solid var(--border);
            border-radius: 30px;
            padding: 6px 14px;
            font-size: 11px;
            color: var(--muted);
            font-family: 'JetBrains Mono', monospace;
        }

        .greeting {
            font-size: 26px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .greeting span {
            color: var(--accent);
        }

        .sub-greeting {
            font-size: 13px;
            color: var(--muted);
        }

        /* TIME DISPLAY */
        .time-card {
            margin: 0 20px 20px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
            border-radius: var(--radius);
            padding: 24px;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        .time-card::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .time-card::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -20px;
            width: 180px;
            height: 180px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .live-time {
            font-family: 'JetBrains Mono', monospace;
            font-size: 48px;
            font-weight: 600;
            letter-spacing: -2px;
            color: #fff;
            line-height: 1;
            position: relative;
            z-index: 1;
        }

        .live-date-full {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 6px;
            position: relative;
            z-index: 1;
            font-weight: 500;
        }

        .attendance-status {
            display: flex;
            gap: 12px;
            margin-top: 18px;
            position: relative;
            z-index: 1;
        }

        .status-chip {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            padding: 8px 12px;
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            gap: 6px;
            backdrop-filter: blur(10px);
        }

        .status-chip .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #fff;
            opacity: 0.6;
        }

        .status-chip.done .dot {
            background: #4ade80;
            opacity: 1;
        }

        .status-chip.pending .dot {
            background: #fbbf24;
            opacity: 1;
        }

        /* SECTION TITLE */
        .section-title {
            padding: 0 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--muted);
            margin-bottom: 12px;
            position: relative;
            z-index: 2;
        }

        /* ACTION BUTTONS GRID */
        .actions-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 20px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .action-btn {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px 16px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
            -webkit-user-select: none;
            user-select: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

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

        .action-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.2s;
            border-radius: var(--radius);
        }

        .action-btn.masuk::after {
            background: rgba(59, 130, 246, 0.08);
        }

        .action-btn.pulang::after {
            background: rgba(16, 185, 129, 0.08);
        }

        .action-btn.ijin::after {
            background: rgba(245, 158, 11, 0.08);
        }

        .action-btn.riwayat::after {
            background: rgba(139, 92, 246, 0.08);
        }

        .action-btn:active::after {
            opacity: 1;
        }

        .action-btn.masuk {
            border-color: rgba(59, 130, 246, 0.3);
        }

        .action-btn.pulang {
            border-color: rgba(16, 185, 129, 0.3);
        }

        .action-btn.ijin {
            border-color: rgba(245, 158, 11, 0.3);
        }

        .action-btn.riwayat {
            border-color: rgba(139, 92, 246, 0.3);
        }

        .action-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
            filter: grayscale(0.5);
        }

        .btn-icon {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .masuk .btn-icon {
            background: rgba(59, 130, 246, 0.15);
        }

        .pulang .btn-icon {
            background: rgba(16, 185, 129, 0.15);
        }

        .ijin .btn-icon {
            background: rgba(245, 158, 11, 0.15);
        }

        .riwayat .btn-icon {
            background: rgba(139, 92, 246, 0.15);
        }

        .btn-label {
            font-size: 14px;
            font-weight: 700;
            color: var(--text);
        }

        .btn-sub {
            font-size: 11px;
            color: var(--muted);
            margin-top: 2px;
            font-weight: 400;
        }

        /* TODAY LOG */
        .today-log {
            margin: 0 20px 24px;
            position: relative;
            z-index: 2;
        }

        .log-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .log-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 18px;
            border-bottom: 1px solid var(--border);
            transition: background 0.2s;
        }

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

        .log-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .log-dot.masuk {
            background: var(--accent);
        }

        .log-dot.pulang {
            background: var(--green);
        }

        .log-dot.ijin {
            background: var(--amber);
        }

        .log-dot.empty {
            background: var(--border);
        }

        .log-info {
            flex: 1;
        }

        .log-label {
            font-size: 13px;
            font-weight: 600;
        }

        .log-sub {
            font-size: 11px;
            color: var(--muted);
            margin-top: 2px;
        }

        .log-time {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            font-weight: 600;
            color: var(--muted);
        }

        .log-time.filled {
            color: var(--text);
        }

        /* BOTTOM NAV */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 430px;
            background: rgba(11, 18, 33, 0.85);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
            display: flex;
            justify-content: space-around;
            z-index: 100;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 6px 16px;
            border-radius: 14px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 11px;
            color: var(--muted);
        }

        .nav-item.active {
            color: var(--accent);
        }

        .nav-item .nav-icon {
            font-size: 22px;
        }

        /* ===== MODAL ===== */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 200;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.show {
            opacity: 1;
            pointer-events: all;
        }

        .modal-sheet {
            background: var(--surface);
            width: 100%;
            max-width: 430px;
            border-radius: 28px 28px 0 0;
            padding: 0 0 40px;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
            max-height: 92dvh;
            overflow-y: auto;
        }

        .modal-overlay.show .modal-sheet {
            transform: translateY(0);
        }

        .modal-handle {
            width: 40px;
            height: 4px;
            background: var(--border);
            border-radius: 2px;
            margin: 14px auto 0;
        }

        .modal-header {
            padding: 20px 24px 16px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .modal-title {
            font-size: 18px;
            font-weight: 800;
        }

        .modal-close {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--surface2);
            border: none;
            color: var(--muted);
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .modal-close:active {
            background: var(--border);
        }

        .modal-body {
            padding: 20px 24px;
        }

        /* CAMERA */
        .camera-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 3/4;
            border-radius: 20px;
            overflow: hidden;
            background: #000;
            margin-bottom: 16px;
        }

        #camera-video,
        #camera-video-pulang {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scaleX(-1);
        }

        .camera-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }

        .face-guide {
            width: 180px;
            height: 230px;
            border: 2px dashed rgba(255, 255, 255, 0.4);
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            position: relative;
        }

        .face-guide::before,
        .face-guide::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border-color: var(--accent);
            border-style: solid;
        }

        .face-guide::before {
            top: -2px;
            left: -2px;
            border-width: 3px 0 0 3px;
            border-radius: 4px 0 0 0;
        }

        .face-guide::after {
            bottom: -2px;
            right: -2px;
            border-width: 0 3px 3px 0;
            border-radius: 0 0 4px 0;
        }

        .camera-hint {
            text-align: center;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 16px;
        }

        .photo-preview {
            width: 100%;
            aspect-ratio: 3/4;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 16px;
            display: none;
            position: relative;
        }

        .photo-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scaleX(-1);
        }

        .photo-badge {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(16, 185, 129, 0.9);
            color: #fff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .btn-primary {
            width: 100%;
            padding: 16px;
            border-radius: 16px;
            background: var(--accent);
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            font-family: 'Plus Jakarta Sans', sans-serif;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary:active {
            transform: scale(0.98);
        }

        .btn-primary.green {
            background: var(--green);
        }

        .btn-primary.amber {
            background: var(--amber);
            color: #000;
        }

        .btn-primary.outline {
            background: transparent;
            border: 2px solid var(--border);
            color: var(--text);
            margin-top: 10px;
        }

        .btn-primary:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        /* CANVAS hidden */
        canvas {
            display: none;
        }

        /* IJIN FORM */
        .ijin-type-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 16px;
        }

        .ijin-type-btn {
            background: var(--surface2);
            border: 2px solid var(--border);
            border-radius: 14px;
            padding: 14px 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
        }

        .ijin-type-btn .ij-icon {
            font-size: 28px;
        }

        .ijin-type-btn.selected {
            border-color: var(--amber);
            background: rgba(245, 158, 11, 0.1);
        }

        .form-label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--muted);
            margin-bottom: 8px;
            display: block;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            background: var(--surface2);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 14px 16px;
            color: var(--text);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s;
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: var(--accent);
        }

        .form-textarea {
            resize: none;
            height: 90px;
        }

        /* RIWAYAT */
        .riwayat-list {
            padding: 0 20px;
        }

        .riwayat-day {
            margin-bottom: 16px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .riwayat-day-header {
            padding: 14px 18px;
            background: var(--surface2);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--muted);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .riwayat-status-badge {
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 700;
        }

        .badge-hadir {
            background: rgba(16, 185, 129, 0.15);
            color: var(--green);
        }

        .badge-ijin {
            background: rgba(245, 158, 11, 0.15);
            color: var(--amber);
        }

        .badge-absen {
            background: rgba(239, 68, 68, 0.15);
            color: var(--red);
        }

        .riwayat-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 13px 18px;
            border-bottom: 1px solid var(--border);
        }

        .riwayat-row:last-child {
            border-bottom: none;
        }

        .rh-icon {
            font-size: 18px;
        }

        .rh-label {
            flex: 1;
            font-size: 13px;
            font-weight: 600;
        }

        .rh-sub {
            font-size: 11px;
            color: var(--muted);
            font-weight: 400;
        }

        .rh-time {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            font-weight: 600;
            color: var(--muted);
        }

        /* SUCCESS STATE */
        .success-anim {
            text-align: center;
            padding: 30px 0 10px;
            display: none;
        }

        .success-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.15);
            border: 2px solid var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin: 0 auto 16px;
            animation: pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes pop {
            from {
                transform: scale(0.5);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .success-title {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 6px;
        }

        .success-sub {
            font-size: 13px;
            color: var(--muted);
        }

        /* EMPTY STATE */
        .empty-state {
            text-align: center;
            padding: 40px 20px;
            color: var(--muted);
            font-size: 13px;
        }

        .empty-state .empty-icon {
            font-size: 40px;
            margin-bottom: 12px;
            opacity: 0.4;
        }

        /* NOTIF TOAST */
        .toast {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(-80px);
            background: var(--surface2);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 12px 20px;
            font-size: 13px;
            font-weight: 600;
            z-index: 999;
            transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            max-width: 90vw;
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
        }

        .toast.success {
            border-color: rgba(16, 185, 129, 0.4);
        }

        .toast.error {
            border-color: rgba(239, 68, 68, 0.4);
        }

        /* TABS */
        .tabs {
            display: flex;
            gap: 8px;
            padding: 0 20px;
            margin-bottom: 16px;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .tabs::-webkit-scrollbar {
            display: none;
        }

        .tab-pill {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s;
            background: var(--surface2);
            border: 1px solid var(--border);
            color: var(--muted);
        }

        .tab-pill.active {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }

        /* PAGE VIEWS */
        .page {
            display: none;
            padding-bottom: 120px;
            min-height: 100vh;
        }

        .page.active {
            display: block;
        }

        /* SELFIE PREVIEW IN LOG */
        .selfie-thumb {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .selfie-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scaleX(-1);
        }

        /* PULSE ANIMATION */
        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            position: relative;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: #4ade80;
            border-radius: 50%;
            position: relative;
        }

        .live-dot::after {
            content: '';
            position: absolute;
            inset: 0;
            background: #4ade80;
            border-radius: 50%;
            animation: pulse-ring 1.5s infinite;
        }

        /* SHIMMER */
        @keyframes shimmer {
            from {
                background-position: -200% 0;
            }

            to {
                background-position: 200% 0;
            }
        }

        .rh-location {
            margin-top: 4px;
        }

        .rh-location a {
            font-size: 11px;
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 2px 8px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 4px;
        }

        /* LOCATION CARD */
        .location-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            margin: 0 20px 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .location-main {
            display: grid;
            grid-template-columns: 48px 1fr auto;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 16px;
        }

        .location-icon {
            width: 48px;
            height: 48px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .location-info {
            flex: 1;
        }

        .location-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--muted);
            margin-bottom: 2px;
        }

        .location-coords {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            font-family: 'JetBrains Mono', monospace;
        }

        .location-address {
            font-size: 13px;
            font-weight: 500;
            color: var(--accent);
            line-height: 1.4;
            word-break: break-word;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .mt-2 {
            margin-top: 8px;
        }

        .map-btn {
            background: var(--surface2);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 8px 12px;
            color: var(--text);
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .map-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .location-status {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--muted);
            padding-top: 12px;
            border-top: 1px dashed var(--border);
        }

        .pulse-dot {
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 0 rgba(59, 130, 246, 0.4);
            animation: pulse-geo 2s infinite;
        }

        @keyframes pulse-geo {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
        }
    