/* ═══════════════════════════════════════════════════════════
   Replika Host — Professional Mini App (Brighter Edition)
   ═══════════════════════════════════════════════════════════ */

/* Brighter palette overrides */
.webapp-body {
    --bg-deep: #14142b;
    --bg-primary: #1a1a36;
    --bg-secondary: #1f1f42;
    --bg-card: rgba(35, 35, 70, 0.92);
    --bg-card-solid: #1f1f45;
    --bg-glass: rgba(255,255,255,0.05);
    --bg-glass-hover: rgba(255,255,255,0.09);
    --bg-input: rgba(26, 26, 60, 0.95);
    --border: rgba(255,255,255,0.10);
    --border-glow: rgba(139,92,246,0.45);
    --border-hover: rgba(139,92,246,0.65);
    --text-primary: #f8f8ff;
    --text-secondary: #c0c0e0;
    --text-muted: #8080a8;
    --gradient-card: linear-gradient(145deg, rgba(45,35,90,0.92) 0%, rgba(30,25,65,0.94) 100%);
    --accent-dim: rgba(139,92,246,0.18);
    --glow-purple: 0 0 24px rgba(139,92,246,0.25);
    --glow-card: 0 6px 28px rgba(0,0,0,0.35);
    --gold: #fcd34d;
}

.webapp-body {
    padding: 0;
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(139,92,246,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 100%, rgba(251,191,36,0.08) 0%, transparent 55%),
        #14142b;
}

.app-shell {
    max-width: 520px;
    margin: 0 auto;
    min-height: 100vh;
    padding-bottom: 82px;
    position: relative;
}

/* Header */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 14px;
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(30,25,70,0.95) 0%, rgba(25,22,60,0.75) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(251,191,36,0.15);
}

.brand-wrap { display: flex; align-items: center; gap: 14px; }

.brand-logo {
    width: 46px; height: 46px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: grid; place-items: center;
    font-weight: 900;
    font-size: 1.7em;
    color: #fff;
    box-shadow: var(--glow-purple);
    letter-spacing: -1px;
}

.brand-banner {
    width: 54px; height: 54px;
    border-radius: 14px;
    object-fit: cover;
}

.brand-title {
    font-size: 1.15em;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 0.3px;
}

.brand-subtitle {
    color: var(--text-muted);
    font-size: 0.7em;
    display: block;
    margin-top: 3px;
}

.user-chip {
    padding: 8px 14px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.82em;
    color: var(--text-secondary);
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Main */
.app-main { padding: 18px; }

.tab-section { display: none; animation: fadeIn 0.3s ease; }
.tab-section.active { display: block; }

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

/* Hero */
.hero-card {
    background: linear-gradient(135deg, rgba(55,40,110,0.85) 0%, rgba(45,30,95,0.85) 100%);
    border: 1px solid rgba(251,191,36,0.3);
    border-radius: 22px;
    padding: 28px 24px;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139,92,246,0.2), inset 0 1px 0 rgba(251,191,36,0.15);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background:
        radial-gradient(circle at 80% 20%, rgba(251,191,36,0.12) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(139,92,246,0.15) 0%, transparent 40%);
    animation: heroShift 12s ease-in-out infinite alternate;
}

@keyframes heroShift {
    0% { transform: translate(0,0); }
    100% { transform: translate(-8%, -6%); }
}

.hero-content { position: relative; z-index: 1; }

.hero-content h2 {
    font-size: 1.25em;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 0.88em;
    line-height: 1.7;
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 26px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 14px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    right: 0; top: 10px; bottom: 10px;
    width: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(251,191,36,0.5);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(251,191,36,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(251,191,36,0.15), 0 0 0 1px rgba(251,191,36,0.25);
}

.feature-card:hover::after { opacity: 1; }

.feature-text { padding-right: 10px; }

.feature-text strong {
    display: block;
    font-size: 0.92em;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 700;
}

.feature-text small {
    color: var(--text-muted);
    font-size: 0.74em;
    line-height: 1.5;
}

/* Section head */
.section-head { margin: 20px 0 14px; }
.section-head h3 {
    font-size: 1em;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    padding-right: 14px;
}

.section-head h3::before {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 20px;
    background: var(--gradient-gold);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(251,191,36,0.6);
}

/* Categories */
.category-list { display: flex; flex-direction: column; gap: 12px; }

.category-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 22px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(251,191,36,0.08) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.category-card:hover, .category-card:active {
    border-color: var(--gold);
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 10px 30px rgba(139,92,246,0.25),
        0 0 0 1px rgba(251,191,36,0.4),
        inset 0 1px 0 rgba(251,191,36,0.15);
}

.category-card:hover::before { opacity: 1; }
.category-card:hover .arrow { color: var(--gold); transform: translateX(-4px); }

.category-card .cat-title {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.98em;
}

.category-card .cat-desc {
    color: var(--text-muted);
    font-size: 0.76em;
    margin-top: 5px;
    line-height: 1.6;
}

.category-card .arrow {
    color: var(--accent);
    font-size: 1.1em;
    font-weight: 700;
    transition: all 0.3s;
}

/* Server list */
.server-list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }

.server-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    gap: 10px;
    position: relative;
}

.server-card:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(251,191,36,0.04) 0%, rgba(139,92,246,0.04) 100%);
    transform: translateX(-4px);
    box-shadow: -6px 0 24px rgba(251,191,36,0.12), 0 4px 16px rgba(139,92,246,0.15);
}

.server-card.unavailable { opacity: 0.55; }

.server-card .s-left strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95em;
}

.server-card .s-price {
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.05em;
}

.server-card .s-status {
    font-size: 0.72em;
    color: var(--danger);
    margin-top: 4px;
    display: block;
    font-weight: 600;
}

.server-card .s-bw {
    display: block;
    margin-top: 5px;
    color: var(--gold);
    font-size: 0.76em;
    font-weight: 600;
}

/* Back button */
.back-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 9px 16px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85em;
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.2s;
    font-weight: 500;
}

.back-btn:hover { border-color: var(--border-hover); color: var(--text-primary); }

/* Detail */
.detail-card {
    background: var(--gradient-card);
    border: 1px solid rgba(251,191,36,0.3);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 8px 32px rgba(139,92,246,0.15), inset 0 1px 0 rgba(251,191,36,0.1);
}

.detail-title {
    font-size: 1.22em;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.detail-desc {
    color: var(--text-secondary);
    line-height: 1.9;
    white-space: pre-line;
    font-size: 0.9em;
    margin: 14px 0;
    padding: 16px;
    background: rgba(20,20,50,0.6);
    border-radius: 12px;
    border-right: 4px solid var(--gold);
    box-shadow: -4px 0 12px rgba(251,191,36,0.08);
}

.detail-price {
    background: linear-gradient(135deg, rgba(251,191,36,0.15) 0%, rgba(139,92,246,0.15) 100%);
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 800;
    color: var(--gold);
    font-size: 1.1em;
    text-align: center;
    border: 1px solid rgba(251,191,36,0.4);
    box-shadow: 0 4px 16px rgba(251,191,36,0.15);
    letter-spacing: 0.5px;
}

.detail-unavailable {
    background: rgba(244,63,94,0.1);
    border: 1px solid rgba(244,63,94,0.3);
    padding: 14px;
    border-radius: 12px;
    color: var(--danger);
    font-weight: 600;
    text-align: center;
    margin: 14px 0;
}

.warn-box {
    background: linear-gradient(135deg, rgba(251,191,36,0.12) 0%, rgba(244,63,94,0.12) 100%);
    border: 1.5px solid var(--gold);
    border-radius: 14px;
    padding: 14px 16px;
    margin: 14px 0;
    position: relative;
    box-shadow: 0 0 18px rgba(251,191,36,0.18), inset 0 0 0 1px rgba(244,63,94,0.15);
    animation: warnPulse 2.4s ease-in-out infinite;
}

@keyframes warnPulse {
    0%, 100% { box-shadow: 0 0 18px rgba(251,191,36,0.18), inset 0 0 0 1px rgba(244,63,94,0.15); }
    50% { box-shadow: 0 0 28px rgba(251,191,36,0.35), inset 0 0 0 1px rgba(244,63,94,0.25); }
}

.warn-box::before {
    content: '⚠';
    position: absolute;
    right: -1px; top: -14px;
    font-size: 1.8em;
    color: var(--gold);
    background: var(--bg-deep);
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.warn-head {
    color: var(--gold);
    font-weight: 800;
    font-size: 0.95em;
    margin-bottom: 8px;
    padding-right: 30px;
    letter-spacing: 0.3px;
}

.warn-body {
    color: var(--text-primary);
    font-size: 0.88em;
    line-height: 1.8;
    font-weight: 500;
}

/* Primary button */
.btn-primary {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #8b5cf6 0%, #f59e0b 100%);
    background-size: 200% 200%;
    color: #fff;
    border: 1px solid rgba(251,191,36,0.4);
    border-radius: 14px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    margin-top: 14px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 6px 20px rgba(139,92,246,0.35), 0 0 0 1px rgba(251,191,36,0.15);
    letter-spacing: 0.4px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251,191,36,0.4), 0 0 0 2px rgba(251,191,36,0.5);
    background-position: 100% 100%;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; background: var(--bg-glass); box-shadow: none; }

/* Crypto list */
.crypto-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.crypto-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.crypto-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(251,191,36,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.crypto-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 28px rgba(251,191,36,0.2), 0 0 0 1px rgba(251,191,36,0.35);
}

.crypto-card:hover::before { opacity: 1; }

.crypto-card .crypto-sym, .crypto-card .crypto-price { position: relative; z-index: 1; }

.crypto-sym {
    font-weight: 800;
    color: var(--text-primary);
    font-size: 1.05em;
    letter-spacing: 0.5px;
}

.crypto-price {
    color: var(--text-muted);
    font-size: 0.74em;
    margin-top: 5px;
}

.payment-info {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 10px;
    font-size: 0.88em;
    color: var(--text-secondary);
    line-height: 1.7;
}

.payment-info strong { color: var(--text-primary); }

/* Invoice */
.invoice-card {
    background: var(--gradient-card);
    border: 1px solid rgba(251,191,36,0.25);
    border-radius: 20px;
    padding: 22px;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 0 0 1px rgba(139,92,246,0.1);
}

.invoice-title {
    font-size: 1.05em;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-primary);
    text-align: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.3px;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.9em;
}

.invoice-row:last-child { border-bottom: none; }
.invoice-row .k { color: var(--text-muted); }
.invoice-row .v { color: var(--text-primary); font-weight: 700; }

.wallet-box {
    background: var(--bg-deep);
    border: 1px solid rgba(251,191,36,0.35);
    border-radius: 12px;
    padding: 14px;
    margin-top: 14px;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    color: var(--gold);
    direction: ltr;
    text-align: left;
    box-shadow: inset 0 0 12px rgba(251,191,36,0.08);
}

.copy-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, rgba(251,191,36,0.12) 0%, rgba(245,158,11,0.12) 100%);
    color: var(--gold);
    border: 1px solid rgba(251,191,36,0.4);
    border-radius: 10px;
    font-family: inherit;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.25s;
    font-weight: 700;
    font-size: 0.9em;
}

.copy-btn:hover {
    background: var(--gradient-gold);
    color: #1a1a2e;
    box-shadow: 0 4px 16px rgba(251,191,36,0.4);
    transform: translateY(-1px);
}

.txid-input {
    width: 100%;
    padding: 14px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    margin-top: 14px;
    direction: ltr;
    text-align: left;
}

.txid-input:focus { outline: none; border-color: var(--border-hover); }

/* My services */
.service-list { display: flex; flex-direction: column; gap: 10px; }

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
}

.service-card strong { color: var(--text-primary); display: block; margin-bottom: 6px; font-weight: 700; }
.service-card small { color: var(--text-muted); font-size: 0.78em; line-height: 1.6; }
.service-card .config {
    margin-top: 12px;
    padding: 12px;
    background: var(--bg-deep);
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.8em;
    color: var(--text-secondary);
    word-break: break-all;
    line-height: 1.8;
    direction: ltr;
    text-align: left;
}

.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-muted);
}

.empty-state .big {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Wallet list */
.wallet-list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }

.wallet-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.wallet-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251,191,36,0.15), 0 0 0 1px rgba(251,191,36,0.3);
}

.wallet-card .w-sym {
    font-weight: 800;
    color: var(--text-primary);
    font-size: 1em;
    letter-spacing: 0.5px;
}

.wallet-card .w-net {
    font-size: 0.76em;
    color: var(--text-muted);
    margin-top: 3px;
}

.wallet-card .w-price {
    color: var(--text-secondary);
    font-size: 0.82em;
    font-weight: 600;
}

/* Support textarea */
.support-textarea {
    width: 100%;
    padding: 14px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95em;
    resize: vertical;
    min-height: 130px;
    line-height: 1.7;
}

.support-textarea:focus { outline: none; border-color: var(--border-hover); }

/* Message list (replies) */
.message-list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }

.message-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    position: relative;
}

.message-card.unread {
    border-color: var(--border-glow);
    background: var(--accent-dim);
}

.message-card .m-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.message-card .m-title {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9em;
}

.message-card .m-type {
    font-size: 0.7em;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--accent-dim);
    color: var(--accent-hover);
    font-weight: 600;
}

.message-card .m-type.order { background: rgba(16,185,129,0.15); color: var(--success); }

.message-card .m-time {
    color: var(--text-muted);
    font-size: 0.72em;
    margin-bottom: 10px;
}

.message-card .m-body {
    color: var(--text-secondary);
    font-size: 0.88em;
    line-height: 1.8;
    white-space: pre-line;
    padding: 10px;
    background: var(--bg-deep);
    border-radius: 10px;
    margin-top: 6px;
}

/* Bottom nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 520px;
    margin: 0 auto;
    background: rgba(30,25,65,0.96);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(251,191,36,0.15);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 12px 6px;
    z-index: 100;
    box-shadow: 0 -4px 24px rgba(139,92,246,0.15);
}

/* Hide old top-nav if present */
.top-nav { display: none; }

/* Quick categories on home */
.quick-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.quick-cat-btn {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 18px 22px;
    border-radius: 16px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.98em;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    text-align: right;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}

.quick-cat-btn:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 30px rgba(139,92,246,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
}

.quick-cat-btn small {
    display: block;
    color: var(--text-muted);
    font-size: 0.78em;
    font-weight: 500;
    margin-top: 5px;
}

.nav-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.82em;
    padding: 10px 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    border-radius: 10px;
}

.nav-btn.active {
    color: var(--accent-hover);
    background: var(--accent-dim);
    font-weight: 700;
}

/* Toast */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: var(--bg-card-solid);
    border: 1px solid var(--border-glow);
    padding: 12px 22px;
    border-radius: 100px;
    color: var(--text-primary);
    font-size: 0.9em;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    box-shadow: var(--glow-card);
    font-weight: 600;
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--danger); }

.muted { color: var(--text-muted); font-size: 0.85em; line-height: 1.7; margin: 6px 0 14px; }

.loading { text-align: center; padding: 30px; color: var(--text-muted); font-size: 0.88em; }
