/* MUSELOOP user dashboard: reuses the site tokens from /styles.css */
body.dash { background: #f6f9fd; }
body.dash [hidden] { display: none !important; }
.dash-tag { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--blue); background: var(--band-blue); padding: 3px 8px; border-radius: 100px; margin-left: 6px; }
.dash-main { max-width: 1120px; margin: 0 auto; padding: 104px 24px 80px; }
.dash-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.dash-head .h2 { margin: 0; }
.dash-card { background: #fff; border-radius: 24px; padding: 24px; border: 1px solid rgba(10,19,23,.06); margin-bottom: 20px; }
.dash-two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dash-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
@media (max-width: 860px) { .dash-two, .dash-grid3 { grid-template-columns: 1fr; } }
.h4 { font-size: 20px; font-weight: 600; margin: 0 0 8px; }
.h4 small { font-weight: 400; color: var(--ink-2); font-size: 14px; }
.small { font-size: 14px; color: var(--ink-2); line-height: 20px; }

/* sign in */
.dash-signin { min-height: calc(100vh - 200px); display: grid; place-items: center; }
.dash-signin .dash-card { width: min(100%, 480px); text-align: center; }
.dash-signin form { text-align: left; }
.dash-mascot { border-radius: 30px; margin: 0 auto 12px; }
.dash-alt { margin-top: 20px; text-align: left; border-top: 1px solid #eef2f5; padding-top: 14px; }
.dash-alt summary { font-size: 15px; font-weight: 600; cursor: pointer; }
.dash-alt summary::after { content: none; }

/* stats */
.stat { background: #fff; border-radius: 24px; padding: 22px 24px; border: 1px solid rgba(10,19,23,.06); }
.stat-blue { background: var(--blue); color: #fff; border: 0; }
.stat-blue .stat-label, .stat-blue .stat-sub { color: rgba(255,255,255,.85); }
.stat-label { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-2); margin: 0 0 6px; }
.stat-num { font-size: 40px; line-height: 1; font-weight: 600; letter-spacing: -1px; margin: 0 0 8px; font-variant-numeric: tabular-nums; }
.stat-sub { font-size: 13px; color: var(--ink-2); margin: 0; }

/* forms */
.inline-form { display: flex; gap: 10px; }
.inline-form input { flex: 1; font: inherit; padding: 12px 14px; border: 1px solid #cfd8de; border-radius: 12px; min-width: 0; }
.dash-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .dash-form .row { grid-template-columns: 1fr; } .inline-form { flex-direction: column; } }
.dash-form select { font: inherit; padding: 13px 14px; border: 1px solid #cfd8de; border-radius: 14px; background: #fff; }
.check { display: flex; gap: 10px; align-items: center; font-size: 14px; margin: 4px 0 16px; }
.btn-danger { background: #fde8e8; color: #9b1c1c; }
.btn-danger:hover { background: #f9d4d4; }
.dash-pre { background: #0a1317; color: #e8eef2; padding: 16px; border-radius: 14px; font-size: 12.5px; line-height: 1.5; overflow: auto; max-height: 420px; white-space: pre-wrap; word-break: break-word; margin: 12px 0 0; }

/* launches */
.launch-list { display: grid; gap: 14px; margin-bottom: 20px; }
.launch { background: #fff; border-radius: 20px; border: 1px solid rgba(10,19,23,.06); padding: 18px 20px; display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; }
@media (max-width: 720px) { .launch { grid-template-columns: 1fr; } }
.launch h4 { margin: 0 0 4px; font-size: 18px; font-weight: 600; }
.launch .meta { font-size: 13px; color: var(--ink-2); display: flex; flex-wrap: wrap; gap: 10px; }
.launch .meta code { font-size: 12px; }
.launch .claim { font-size: 14px; margin-top: 8px; }
.launch .claim b { color: var(--blue); }
.launch .actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.launch .actions .btn { padding: 9px 14px; font-size: 14px; }
.pill { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 3px 8px; border-radius: 100px; background: var(--band-blue); color: var(--blue); }
.pill.sim { background: #fff7e3; color: #6b4a00; }
.empty { text-align: center; color: var(--ink-2); padding: 40px 20px; }

/* misc */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 100px; font-size: 14px; z-index: 60; box-shadow: 0 10px 30px rgba(10,19,23,.25); }
.toast.err { background: #9b1c1c; }
.nav .tab.active { background: var(--band-blue); color: var(--blue); }
#ov-alert { background: #fff7e3; border-color: #ffe2a8; color: #6b4a00; }
