/* ═══════════════════════════════════════════════════════
   JimzAuth — Design System
   Colors: #b966e8 (accent) · #272729 (surface)
   Zero dependencies. Pure CSS.
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ── Tokens ──────────────────────────────────────────── */
:root {
    --accent: #b966e8;
    --accent-hover: #a44edb;
    --accent-soft: rgba(185, 102, 232, 0.12);
    --accent-glow: rgba(185, 102, 232, 0.30);
    --accent-glow-strong: rgba(185, 102, 232, 0.50);

    --bg-body: #121214;
    --bg-card: #272729;
    --bg-card-hover: #2e2e31;
    --bg-input: #1e1e20;
    --bg-elevated: #1a1a1c;
    --bg-overlay: rgba(0, 0, 0, 0.65);

    --border: #3a3a3d;
    --border-subtle: #2f2f32;

    --text: #e8e8ea;
    --text-muted: #8a8a8f;
    --text-heading: #f4f4f6;

    --success: #34d399;
    --error: #f87171;
    --warning: #fbbf24;
    --info: #60a5fa;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-xs: 6px;

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg-body);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

/* ── Custom Scrollbar ────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-hover); }

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

/* ── SVG Background Container ────────────────────────── */
.bg-svg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-svg .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    will-change: transform;
}

.bg-svg .orb-1 {
    width: 500px; height: 500px;
    background: var(--accent);
    top: -10%; left: -5%;
    animation: orbit1 25s ease-in-out infinite;
}
.bg-svg .orb-2 {
    width: 350px; height: 350px;
    background: #7c3aed;
    bottom: -8%; right: -5%;
    animation: orbit2 30s ease-in-out infinite;
}
.bg-svg .orb-3 {
    width: 250px; height: 250px;
    background: #a855f7;
    top: 40%; left: 50%;
    animation: orbit3 20s ease-in-out infinite;
}

@keyframes orbit1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 60px) scale(1.1); }
    66% { transform: translate(-40px, 30px) scale(0.95); }
}
@keyframes orbit2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, -50px) scale(1.05); }
    66% { transform: translate(40px, -30px) scale(0.9); }
}
@keyframes orbit3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, 40px) scale(1.15); }
}

/* ── Layout ──────────────────────────────────────────── */
.page-wrap {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }

/* ── Navbar ──────────────────────────────────────────── */
.navbar {
    background: rgba(39, 39, 41, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-heading) !important;
}

.navbar-brand svg {
    color: var(--accent);
}

.navbar-end {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.user-badge strong {
    color: var(--accent);
    font-weight: 600;
}

/* ── Cards ───────────────────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}

.card-glass {
    background: rgba(39, 39, 41, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.card-hover:hover {
    border-color: var(--accent-glow);
    box-shadow: 0 0 20px var(--accent-glow), 0 8px 32px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

.card-header-gradient {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(185, 102, 232, 0.08) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-header-gradient::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    outline: none;
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

/* Primary */
.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Outline */
.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
}

/* Ghost */
.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border-color: transparent;
    padding: 8px 14px;
}
.btn-ghost:hover {
    color: var(--text);
    background: rgba(255,255,255,0.05);
}

/* Danger */
.btn-danger {
    background: transparent;
    color: var(--error);
    border-color: rgba(248, 113, 113, 0.3);
}
.btn-danger:hover {
    background: rgba(248, 113, 113, 0.1);
    border-color: var(--error);
    box-shadow: 0 0 16px rgba(248, 113, 113, 0.2);
}

/* Success */
.btn-success {
    background: transparent;
    color: var(--success);
    border-color: rgba(52, 211, 153, 0.3);
}
.btn-success:hover {
    background: rgba(52, 211, 153, 0.1);
    border-color: var(--success);
}

/* Warning */
.btn-warning {
    background: transparent;
    color: var(--warning);
    border-color: rgba(251, 191, 36, 0.3);
}
.btn-warning:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--warning);
}

/* Info */
.btn-info {
    background: transparent;
    color: var(--info);
    border-color: rgba(96, 165, 250, 0.3);
}
.btn-info:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: var(--info);
}

/* Discord */
.btn-discord {
    background: #5865F2;
    color: #fff;
    border-color: #5865F2;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: var(--radius);
}
.btn-discord:hover {
    background: #4752C4;
    box-shadow: 0 0 24px rgba(88, 101, 242, 0.35);
}

/* Small */
.btn-sm {
    padding: 6px 12px;
    font-size: 0.78rem;
    border-radius: var(--radius-xs);
}

.btn-block { width: 100%; }

/* ── Inputs & Forms ──────────────────────────────────── */
.form-group { margin-bottom: 16px; }

.form-label {
    display: block;
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.875rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238a8a8f' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 6.354l3 3a.5.5 0 00.708 0l3-3a.5.5 0 00-.708-.708L8 8.293 5.354 5.646a.5.5 0 10-.708.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.input-row {
    display: flex;
    gap: 8px;
}

.input-row .form-input,
.input-row .form-select {
    flex: 1;
}

/* ── Token Display ───────────────────────────────────── */
.token-display {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: var(--accent);
    word-break: break-all;
    text-align: center;
    max-width: 600px;
    margin: 12px auto 0;
    letter-spacing: 0.5px;
}

/* ── Table ───────────────────────────────────────────── */
.table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
}

.table-scroll {
    overflow-x: auto;
    max-height: 65vh;
    overflow-y: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

thead {
    position: sticky;
    top: 0;
    z-index: 2;
}

thead th {
    background: rgba(185, 102, 232, 0.06);
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-subtle);
    white-space: nowrap;
}

tbody tr {
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition);
}

tbody tr:last-child { border-bottom: none; }

tbody tr:hover {
    background: rgba(185, 102, 232, 0.04);
}

tbody td {
    padding: 12px 16px;
    white-space: nowrap;
    vertical-align: middle;
}

td .actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* ── Badges ──────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge svg {
    width: 12px;
    height: 12px;
}

.badge-active {
    background: rgba(52, 211, 153, 0.12);
    color: var(--success);
}
.badge-banned {
    background: rgba(248, 113, 113, 0.12);
    color: var(--error);
}
.badge-paused {
    background: rgba(96, 165, 250, 0.12);
    color: var(--info);
}
.badge-expired {
    background: rgba(251, 191, 36, 0.12);
    color: var(--warning);
}
.badge-unused {
    background: rgba(138, 138, 143, 0.12);
    color: var(--text-muted);
}
.badge-hwid {
    background: rgba(138, 138, 143, 0.1);
    color: var(--text-muted);
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Custom Modal ────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 90%;
    max-width: 440px;
    transform: scale(0.92) translateY(12px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

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

.modal-box-sm { max-width: 360px; }

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

.modal-head h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-head h3 svg {
    color: var(--accent);
    width: 20px;
    height: 20px;
}

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xs);
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}

.modal-close:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text);
}

.modal-close svg { width: 18px; height: 18px; }

.modal-body { padding: 24px; }

.modal-foot {
    padding: 16px 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* ── Notification Toasts ─────────────────────────────── */
.notify-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.notify-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    min-width: 300px;
    max-width: 420px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    pointer-events: auto;
    animation: notifyIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
}

.notify-toast.out {
    animation: notifyOut 0.3s ease forwards;
}

.notify-toast .notify-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
}

.notify-toast .notify-content {
    flex: 1;
}

.notify-toast .notify-title {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.notify-toast .notify-msg {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.notify-toast .notify-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 0 0 0 var(--radius-sm);
    animation: progressShrink 4s linear forwards;
}

.notify-toast .notify-close-btn {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px;
    opacity: 0.5;
    transition: opacity var(--transition);
}
.notify-toast .notify-close-btn:hover { opacity: 1; }
.notify-toast .notify-close-btn svg { width: 14px; height: 14px; }

/* Toast types */
.notify-toast.success { border-left: 3px solid var(--success); }
.notify-toast.success .notify-icon { color: var(--success); }
.notify-toast.success .notify-progress { background: var(--success); }

.notify-toast.error { border-left: 3px solid var(--error); }
.notify-toast.error .notify-icon { color: var(--error); }
.notify-toast.error .notify-progress { background: var(--error); }

.notify-toast.info { border-left: 3px solid var(--accent); }
.notify-toast.info .notify-icon { color: var(--accent); }
.notify-toast.info .notify-progress { background: var(--accent); }

.notify-toast.warning { border-left: 3px solid var(--warning); }
.notify-toast.warning .notify-icon { color: var(--warning); }
.notify-toast.warning .notify-progress { background: var(--warning); }

@keyframes notifyIn {
    from { opacity: 0; transform: translateX(40px) scale(0.95); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes notifyOut {
    from { opacity: 1; transform: translateX(0); max-height: 120px; margin-bottom: 0; }
    to   { opacity: 0; transform: translateX(60px); max-height: 0; margin-bottom: -10px; padding: 0; }
}
@keyframes progressShrink {
    from { width: 100%; }
    to   { width: 0%; }
}

/* ── Confirm / MsgBox Dialog ─────────────────────────── */
.dialog-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.dialog-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 90%;
    max-width: 380px;
    padding: 32px;
    text-align: center;
    animation: dialogPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dialog-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--accent);
}

.dialog-icon.danger { color: var(--error); }
.dialog-icon.warn { color: var(--warning); }

.dialog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.dialog-msg {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.dialog-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.dialog-actions .btn { min-width: 100px; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes dialogPop {
    from { opacity: 0; transform: scale(0.85) translateY(16px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── App Grid ────────────────────────────────────────── */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.app-card {
    display: block;
    color: inherit;
}

.app-card .card-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--accent);
    transition: all var(--transition);
}

.app-card .card-icon svg {
    width: 20px;
    height: 20px;
}

.app-card:hover .card-icon {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 16px var(--accent-glow);
}

.app-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.app-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* ── Section Headers ─────────────────────────────────── */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.section-actions {
    display: flex;
    gap: 10px;
}

/* ── Empty State ─────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state svg {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    opacity: 0.4;
}

.empty-state p {
    font-size: 0.95rem;
}

/* ── Login Page ──────────────────────────────────────── */
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    width: 100%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
    animation: cardEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.login-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--accent);
}

.login-card h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.login-card .subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

@keyframes cardEntrance {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Page Entrance Animation ─────────────────────────── */
.fade-up {
    animation: fadeUp 0.5s ease both;
}

.fade-up-d1 { animation-delay: 0.08s; }
.fade-up-d2 { animation-delay: 0.16s; }
.fade-up-d3 { animation-delay: 0.24s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Key result highlight ────────────────────────────── */
.key-result {
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: 'Courier New', monospace;
    font-size: 1.05rem;
    color: var(--success);
    word-break: break-all;
    text-align: center;
    margin-top: 16px;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .app-grid { grid-template-columns: 1fr; }
    .login-card { padding: 36px 24px; }
    .modal-box { width: 95%; }
    td .actions { flex-direction: column; }
    .notify-toast { min-width: auto; max-width: calc(100vw - 40px); }
}

/* ── Utility ─────────────────────────────────────────── */
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }
.hidden { display: none !important; }
