:root {
    --bg-dark:    #1A1A2E;
    --bg-mid:     #16213E;
    --bg-card:    #0F3460;
    --accent:     #E94560;
    --accent-dim: #C1121F;
    --text:       #EAEAEA;
    --text-muted: #A0A0B0;
    --border:     #2A2A4A;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; margin: 0; font-family: 'Segoe UI', system-ui, sans-serif; }
body { background: var(--bg-dark); color: var(--text); font-size: 14px; }

/* ── Auth ─────────────────────────────────────────────────────────────────── */
.auth-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: var(--bg-dark); }
.auth-card { background: var(--bg-mid); border: 1px solid var(--border); border-radius: 12px; padding: 40px 36px; width: 100%; max-width: 400px; }
.auth-logo { font-size: 48px; text-align: center; margin-bottom: 6px; }
.auth-title { font-size: 22px; font-weight: 900; color: var(--accent); text-align: center; margin: 0; }
.auth-subtitle { font-size: 11px; color: var(--text-muted); text-align: center; letter-spacing: 3px; margin-bottom: 0; }
.auth-divider { border-color: var(--border); margin: 20px 0; }
.form-label-dark { color: var(--text-muted); font-size: 11px; margin-bottom: 4px; display: block; }
.form-control-dark { background: #0D1B2A; color: var(--text); border: 1px solid var(--border); border-radius: 6px; padding: 8px 12px; width: 100%; font-size: 14px; }
.form-control-dark:focus { outline: none; border-color: var(--accent); }
.alert-dark-error   { background: rgba(233,69,96,.15);  border: 1px solid var(--accent);   border-radius: 6px; padding: 8px 12px; color: var(--accent);   font-size: 13px; }
.alert-dark-success { background: rgba(34,197,94,.12);  border: 1px solid #22c55e;          border-radius: 6px; padding: 8px 12px; color: #22c55e;        font-size: 13px; }
.link-accent { color: var(--accent); text-decoration: none; }
.link-accent:hover { text-decoration: underline; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 6px; border: none; cursor: pointer; font-size: 13px; font-weight: 600; text-decoration: none; transition: opacity .15s, background .15s; }
.btn:disabled { opacity: .4; cursor: default; pointer-events: none; }
.btn-accent  { background: var(--accent); color: #fff; }
.btn-accent:hover:not(:disabled) { background: var(--accent-dim); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover:not(:disabled) { background: var(--border); }
.btn-danger  { background: #b91c1c; color: #fff; }
.btn-danger:hover:not(:disabled) { background: #991b1b; }
.btn-secondary { background: #2A2A4A; color: var(--text-muted); }
.btn-warning  { background: #b45309; color: #fff; }
.btn-warning:hover:not(:disabled) { background: #92400e; }
.btn-sm { padding: 4px 10px; font-size: 12px; }
.w-100 { width: 100%; justify-content: center; }

/* ── App shell ────────────────────────────────────────────────────────────── */
.app-shell { display: flex; height: 100vh; overflow: hidden; }
.sidebar { width: 220px; background: var(--bg-mid); border-right: 1px solid var(--border); display: flex; flex-direction: column; flex-shrink: 0; transition: width .2s ease; overflow: hidden; }
.sidebar-collapsed { width: 52px; }
.sidebar-brand { display: flex; align-items: center; gap: 12px; padding: 20px 16px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.sidebar-brand-text { overflow: hidden; white-space: nowrap; }
.brand-icon { font-size: 28px; flex-shrink: 0; }
.brand-title { font-size: 15px; font-weight: 900; color: var(--accent); line-height: 1; }
.brand-sub { font-size: 9px; color: var(--text-muted); letter-spacing: 2px; }
.sidebar-links { padding: 12px 8px; display: flex; flex-direction: column; gap: 4px; }
.sidebar-link { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 6px; color: var(--text-muted); text-decoration: none; font-size: 13px; transition: background .15s, color .15s; white-space: nowrap; overflow: hidden; }
.sidebar-link:hover, .sidebar-link.active { background: var(--border); color: var(--text); }
.nav-icon { font-size: 16px; flex-shrink: 0; width: 20px; text-align: center; }
.nav-label { overflow: hidden; }
.sidebar-extra { flex: 1; padding: 8px; overflow-y: auto; }
.sidebar-footer { padding: 8px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; }
.sidebar-user { padding: 8px 12px; overflow: hidden; white-space: nowrap; }
.sidebar-user-name { font-size: 12px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user-role { font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; }
.sidebar-collapsed .sidebar-user { display: none; }
.sidebar-logout:hover { color: var(--accent) !important; }
.sidebar-toggle { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 8px; border-radius: 6px; font-size: 11px; align-self: flex-end; transition: color .15s, background .15s; }
.sidebar-toggle:hover { background: var(--border); color: var(--text); }
.app-main { flex: 1; overflow-y: auto; padding: 28px 32px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ── Page chrome ──────────────────────────────────────────────────────────── */
.page-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; gap: 12px; }
.page-title { font-size: 22px; font-weight: 700; margin: 0; }
.page-sub { color: var(--text-muted); font-size: 13px; margin: 2px 0 0; }
.back-link { color: var(--text-muted); text-decoration: none; font-size: 13px; display: block; margin-bottom: 4px; }
.back-link:hover { color: var(--text); }
.header-actions { display: flex; gap: 8px; align-items: center; }
.status-bar { padding: 8px 14px; border-radius: 6px; font-size: 13px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.status-ok         { background: rgba(76,175,80,.15); border: 1px solid #4CAF50; color: #4CAF50; }
.status-error      { background: rgba(233,69,96,.15); border: 1px solid var(--accent); color: var(--accent); }
.status-processing { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); color: var(--text-muted); }
.spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.2); border-top-color: var(--text-muted); border-radius: 50%; animation: spin .7s linear infinite; flex-shrink: 0; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Dashboard ────────────────────────────────────────────────────────────── */
.event-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.event-card { background: var(--bg-mid); border: 1px solid var(--border); border-radius: 10px; padding: 18px; cursor: pointer; transition: border-color .15s, transform .1s; }
.event-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.event-card-name { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.event-card-meta { font-size: 12px; color: var(--text-muted); }
.event-card-date { font-size: 11px; margin-top: 4px; color: var(--text-muted); }

/* ── Event detail ─────────────────────────────────────────────────────────── */
.tab-bar { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.tab { background: none; border: none; color: var(--text-muted); padding: 8px 16px; cursor: pointer; font-size: 13px; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab-active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 600; }
.badge { background: var(--border); color: var(--text-muted); border-radius: 10px; padding: 1px 7px; font-size: 11px; margin-left: 4px; }
.badge-matched   { background: rgba(76,175,80,.2); color: #4CAF50; border-radius: 4px; padding: 2px 7px; font-size: 11px; }
.badge-unmatched { background: rgba(255,152,0,.2); color: #FF9800; border-radius: 4px; padding: 2px 7px; font-size: 11px; }
.badge-warn { background: var(--accent); color: #fff; border-radius: 10px; padding: 1px 7px; font-size: 11px; margin-left: 4px; }
.card-dark { background: var(--bg-mid); border: 1px solid var(--border); border-radius: 8px; padding: 16px; }
.section-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.fighter-form { display: flex; gap: 8px; flex-wrap: wrap; align-items: flex-end; }
.fighter-form .form-control-dark { flex: 1; min-width: 120px; }
.import-row { display: flex; align-items: center; gap: 10px; }
.table-wrapper { overflow-x: auto; border-radius: 8px; border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th { background: var(--bg-card); color: var(--accent); padding: 10px 12px; text-align: left; font-weight: 600; border-bottom: 1px solid var(--border); white-space: nowrap; }
.data-table td { padding: 9px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,.03); }
.meron-col { color: #ff6b6b; font-weight: 600; }
.wala-col  { color: #74b9ff; font-weight: 600; }
.vs-cell   { text-align: center; font-weight: 900; color: var(--accent); }
.match-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ── Modal ────────────────────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.65); display: flex; align-items: center; justify-content: center; z-index: 1000; }
.modal-box { background: var(--bg-mid); border: 1px solid var(--border); border-radius: 10px; padding: 28px; width: 360px; }
.modal-actions { display: flex; gap: 8px; }

/* ── Empty state ──────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-icon { font-size: 48px; margin-bottom: 12px; }

/* ── Roulette ─────────────────────────────────────────────────────────────── */
.roulette-shell { max-width: 860px; margin: 0 auto; padding: 20px 0; }
.roulette-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.roulette-fight-num { font-size: 28px; font-weight: 900; color: #FFD700; }
.roulette-progress { font-size: 13px; color: var(--text-muted); }
.roulette-cards { display: grid; grid-template-columns: 1fr 80px 1fr; gap: 12px; align-items: center; margin-bottom: 20px; }
.roulette-card { background: #161B22; border: 2px solid #30363D; border-radius: 10px; padding: 24px 18px; text-align: center; min-height: 130px; transition: border-color .4s; }
.roulette-card.card-revealed { border-color: #FFD700; }
.card-role { font-size: 11px; font-weight: 700; color: #8B949E; letter-spacing: 3px; margin-bottom: 12px; }
.card-name { font-size: 20px; font-weight: 700; color: #FFD700; min-height: 56px; display: flex; align-items: center; justify-content: center; word-break: break-word; }
.roulette-card.card-revealed .card-name { color: #fff; }
.card-details { font-size: 12px; color: #8B949E; margin-top: 8px; }
.roulette-vs { text-align: center; }
.vs-text { font-size: 36px; font-weight: 900; color: var(--accent); }
.vs-bracket { font-size: 11px; color: var(--text-muted); margin-top: 6px; }
.roulette-progress-bar { height: 4px; background: #21262D; border-radius: 2px; overflow: hidden; margin-bottom: 20px; }
.roulette-progress-fill { height: 100%; background: var(--accent); transition: width .3s; }
.roulette-controls { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.roulette-auto { display: flex; align-items: center; gap: 10px; }
.toggle-label { display: flex; align-items: center; gap: 6px; cursor: pointer; color: var(--text-muted); font-size: 13px; }
.delay-label { color: #FFD700; font-size: 13px; min-width: 50px; }
.delay-slider { width: 100px; }
.roulette-buttons { display: flex; gap: 8px; }

/* ── Manual Match ─────────────────────────────────────────────────────────── */
.mm-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 1.5rem; align-items: start; }
.mm-panel {}
.mm-list { display: flex; flex-direction: column; gap: 6px; max-height: 520px; overflow-y: auto; padding-right: 4px; }
.mm-row { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--bg-mid); border: 1px solid var(--border); border-radius: 6px; cursor: grab; user-select: none; transition: border-color .15s, opacity .15s; }
.mm-row:hover { border-color: var(--accent); }
.mm-row:active { cursor: grabbing; }
.mm-slotted { opacity: .45; border-style: dashed; }
.mm-name { flex: 1; font-weight: 500; font-size: 13px; }
.mm-pill { font-size: 11px; padding: 2px 7px; border-radius: 10px; background: var(--border); color: var(--text-muted); white-space: nowrap; }
.mm-type-pill { color: #a0c4ff; }
.mm-wb-pill { color: #b0b0c0; }
.mm-slots { display: flex; align-items: stretch; gap: 12px; }
.mm-slot { flex: 1; border: 2px dashed var(--border); border-radius: 10px; padding: 16px; min-height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: border-color .2s, background .2s; position: relative; }
.mm-slot:hover { border-color: var(--accent); background: rgba(233,69,96,.04); }
.mm-meron-slot { border-color: rgba(200,50,50,.4); }
.mm-meron-slot.slot-has-fighter { background: rgba(200,50,50,.07); border-style: solid; border-color: rgba(220,60,60,.7); }
.mm-wala-slot { border-color: rgba(50,100,200,.4); }
.mm-wala-slot.slot-has-fighter { background: rgba(50,100,200,.07); border-style: solid; border-color: rgba(60,120,220,.7); }
.slot-role { font-size: 10px; font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; }
.meron-role { color: #ff6b6b; }
.wala-role { color: #74b9ff; }
.slot-hint { color: var(--text-muted); font-size: 12px; font-style: italic; }
.slot-fighter-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.slot-fighter-meta { font-size: 11px; color: var(--text-muted); }
.slot-remove { position: absolute; top: 6px; right: 8px; background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 13px; padding: 0; line-height: 1; }
.slot-remove:hover { color: var(--accent); }
.mm-vs-divider { font-weight: 900; font-size: 14px; color: var(--text-muted); padding-top: 50px; flex-shrink: 0; }
.mm-calc { margin-top: 14px; background: var(--bg-mid); border: 1px solid var(--border); border-radius: 8px; padding: 14px; }
.mm-calc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.mm-calc-label { color: var(--text-muted); font-size: 13px; }
.mm-calc-val { font-weight: 700; font-size: 16px; }
.mm-unit { font-size: 11px; color: var(--text-muted); font-weight: 400; margin-left: 3px; }
.val-ok { color: #4ade80; }
.val-warn { color: #facc15; }
.mm-alert { padding: 7px 11px; border-radius: 6px; font-size: 13px; }
.mm-error { background: rgba(200,50,50,.15); border: 1px solid rgba(200,50,50,.4); color: #f87171; }
.mm-warn  { background: rgba(200,150,0,.15); border: 1px solid rgba(200,150,0,.4); color: #fcd34d; }
.mm-ok    { background: rgba(0,160,80,.15); border: 1px solid rgba(0,160,80,.4); color: #4ade80; }
.mm-actions { display: flex; gap: 8px; }

/* ── Misc ─────────────────────────────────────────────────────────────────── */
.text-muted { color: var(--text-muted) !important; }
.text-danger { color: var(--accent) !important; }
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mb-3 { margin-bottom: 12px; } .mb-4 { margin-bottom: 16px; }
.small { font-size: 12px; }
.d-none { display: none; }

#blazor-error-ui { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--accent); color: #fff; padding: 10px 16px; font-size: 13px; z-index: 9999; text-align: center; }
#blazor-error-ui .reload { color: #fff; font-weight: 700; margin-left: 8px; }

/* ── Brackets Tab ─────────────────────────────────────────────── */
.bracket-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    overflow: hidden;
}
.bracket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    background: rgba(233,69,96,.15);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.bracket-label { font-weight: 700; color: var(--accent); font-size: .85rem; letter-spacing: .04em; }
.bracket-count { font-size: .78rem; color: var(--text-muted); }
.bracket-fighters { display: flex; flex-direction: column; gap: 0; }
.bracket-fighter {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    font-size: .85rem;
}
.bracket-fighter:last-child { border-bottom: none; }
.bf-matched  { background: rgba(74,222,128,.06); }
.bf-unmatched { background: transparent; }
.bf-name { font-weight: 600; color: var(--text); flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bf-meta { color: var(--text-muted); font-size: .78rem; white-space: nowrap; }

/* ── Match Search ─────────────────────────────────────────────── */
.match-search { max-width: 280px; }

/* ── Event Layout (sidebar + main) ───────────────────────────── */
.event-layout { display: grid; grid-template-columns: 220px 1fr; gap: 1.5rem; align-items: start; }
.event-sidebar { position: sticky; top: 1rem; }
.btn-active { background: var(--accent) !important; color: #fff !important; border-color: var(--accent) !important; }
.settings-panel-body { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.settings-panel-body .settings-section { flex: 1; min-width: 200px; }
.settings-summary { display: flex; align-items: center; gap: 6px; padding: 0; margin-bottom: 0; cursor: pointer;
    font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: #aaa;
    list-style: none; user-select: none; }
.settings-summary::-webkit-details-marker { display: none; }
.settings-summary::before { content: "▶"; font-size: .65rem; transition: transform .2s; }
details[open] > .settings-summary::before { transform: rotate(90deg); }
details[open] > .settings-summary { margin-bottom: .75rem; }
.settings-body { display: flex; flex-direction: column; }
.settings-section { display: flex; flex-direction: column; gap: .5rem; }
.settings-section .section-label { margin: 0 0 .25rem; font-size: .7rem; }
.owner-pref-list { display: flex; flex-direction: column; gap: .4rem; max-height: 260px; overflow-y: auto; }
.owner-pref-row { display: flex; align-items: center; gap: .5rem; }
.owner-pref-name { flex: 1; font-size: .8rem; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.owner-pref-select { flex: 0 0 90px; }
.owner-card summary { display: flex; align-items: center; gap: .5rem; cursor: pointer; list-style: none; user-select: none; padding: 0; }
.owner-card summary::-webkit-details-marker { display: none; }
.owner-card summary::before { content: "▶"; font-size: .65rem; transition: transform .2s; flex-shrink: 0; }
details[open].owner-card > summary::before { transform: rotate(90deg); }
.owner-card-name { font-weight: 600; font-size: .9rem; }
.owner-card-summary .owner-pref-select { margin-left: auto; }
@media (max-width: 768px) {
    .event-layout { grid-template-columns: 1fr; }
    .event-sidebar { position: static; }
}

/* ── Fight Card Edit Order ────────────────────────────────────── */
.fight-num-input {
    width: 64px;
    padding: 2px 6px;
    text-align: center;
    font-weight: 700;
}

/* ── Public layout (landing page + live score) ───────────────── */
.public-shell { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg-dark); }
.public-topbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 32px; border-bottom: 1px solid var(--border); background: var(--bg-mid); position: sticky; top: 0; z-index: 100; }
.public-topbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.public-topbar-title { font-size: 15px; font-weight: 900; color: var(--accent); letter-spacing: 1px; }
.public-topbar-user { font-size: 13px; color: var(--text-muted); }
.public-main { flex: 1; }

/* ── Landing page ─────────────────────────────────────────────── */
.landing-hero { background: linear-gradient(160deg, #0F3460 0%, #1A1A2E 60%); padding: 100px 40px 90px; text-align: center; }
.landing-hero-inner { max-width: 680px; margin: 0 auto; }
.landing-hero-eyebrow { font-size: 11px; color: var(--accent); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.landing-hero-title { font-size: clamp(32px, 6vw, 56px); font-weight: 900; line-height: 1.1; margin-bottom: 18px; }
.landing-hero-sub { font-size: 16px; color: var(--text-muted); max-width: 480px; margin: 0 auto 32px; line-height: 1.6; }
.landing-hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.landing-hero-ctas .btn { padding: 12px 28px; font-size: 14px; }
.landing-hero-trust { font-size: 12px; color: var(--text-muted); margin-top: 20px; opacity: .7; }

/* Features strip */
.landing-features { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-mid); }
.landing-feature { display: flex; align-items: center; gap: 16px; padding: 28px 36px; flex: 1; min-width: 220px; border-right: 1px solid var(--border); }
.landing-feature:last-child { border-right: none; }
.landing-feature-icon { font-size: 28px; flex-shrink: 0; }
.landing-feature-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.landing-feature-desc { font-size: 12px; color: var(--text-muted); }

/* Generic section wrapper */
.landing-section { padding: 80px 40px; max-width: 1080px; margin: 0 auto; width: 100%; }
.landing-section-alt { background: var(--bg-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); max-width: 100%; padding: 80px 40px; }
.landing-section-alt > * { max-width: 1080px; margin-left: auto; margin-right: auto; }
.landing-section-header { text-align: center; margin-bottom: 52px; }
.landing-eyebrow { font-size: 11px; color: var(--accent); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.landing-section-title { font-size: clamp(22px, 4vw, 34px); font-weight: 900; margin: 0 0 12px; }
.landing-section-sub { font-size: 15px; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.65; }

/* How it works steps */
.landing-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.landing-step { text-align: center; }
.landing-step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 20px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 0 0 6px rgba(233,69,96,.15); }
.landing-step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.landing-step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Pricing grid (landing) */
.landing-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1080px; margin: 0 auto; }
.pricing-price-per { font-size: 15px; font-weight: 400; color: var(--text-muted); }
.landing-pricing-note { text-align: center; color: var(--text-muted); font-size: 13px; margin-top: 32px; }

/* Role cards (landing) */
.landing-roles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.landing-role-card { background: var(--bg-mid); border: 1px solid var(--border); border-radius: 14px; padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; transition: border-color .2s, transform .15s; }
.landing-role-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.landing-role-icon { font-size: 40px; }
.landing-role-title { font-size: 20px; font-weight: 700; margin: 0; }
.landing-role-desc { color: var(--text-muted); font-size: 14px; line-height: 1.65; flex: 1; margin: 0; }
.mt-auto { margin-top: auto; }

/* CTA banner */
.landing-cta { background: linear-gradient(135deg, #0F3460 0%, #1A1A2E 100%); border-top: 1px solid var(--border); padding: 90px 40px; text-align: center; }
.landing-cta-title { font-size: clamp(24px, 4vw, 40px); font-weight: 900; margin: 0 0 12px; }
.landing-cta-sub { font-size: 16px; color: var(--text-muted); margin: 0 0 32px; }

/* Footer */
.landing-footer { background: var(--bg-mid); border-top: 1px solid var(--border); padding: 32px 40px; color: var(--text-muted); font-size: 13px; }
.landing-footer-inner { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.landing-footer-brand { display: flex; align-items: center; gap: 10px; }
.landing-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.landing-footer-link { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color .15s; }
.landing-footer-link:hover { color: var(--text); }

/* ── Register role toggle ─────────────────────────────────────── */
.reg-role-toggle { display: flex; background: #0D1B2A; border: 1px solid var(--border); border-radius: 8px; padding: 4px; gap: 4px; }
.reg-role-btn { flex: 1; text-align: center; padding: 8px 12px; border-radius: 6px; text-decoration: none; color: var(--text-muted); font-size: 13px; font-weight: 600; transition: background .15s, color .15s; }
.reg-role-btn.active { background: var(--accent); color: #fff; }
.reg-role-btn:hover:not(.active) { background: var(--border); color: var(--text); }

/* ── Sidebar user badge ───────────────────────────────────────── */
.sidebar-user { padding: 8px 12px; margin-bottom: 8px; background: rgba(255,255,255,.04); border-radius: 6px; }
.sidebar-user-name { font-size: 12px; color: var(--text); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user-role { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── Live score page ──────────────────────────────────────────── */
.live-shell { width: 80%; margin: 0 auto; padding: 32px 24px; }
.live-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.live-title { font-size: 26px; font-weight: 800; margin: 4px 0; }
.live-arena { color: var(--text-muted); font-size: 14px; margin: 0; }
.live-header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.live-refresh-badge { font-size: 12px; color: var(--text-muted); background: var(--bg-mid); border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; }
.live-countdown { font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }

.live-stats { display: flex; gap: 1px; margin-bottom: 28px; background: var(--border); border-radius: 10px; overflow: hidden; }
.live-stat { flex: 1; background: var(--bg-mid); padding: 20px; text-align: center; }
.live-stat-num { font-size: 28px; font-weight: 900; color: var(--accent); line-height: 1; }
.live-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ── Result badges (shared by LiveScore + Scorekeeper) ────────── */
.result-badge { display: inline-block; border-radius: 4px; padding: 2px 8px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.result-badge-meron   { background: rgba(255,107,107,.18); color: #ff6b6b; border: 1px solid rgba(255,107,107,.35); }
.result-badge-wala    { background: rgba(116,185,255,.18); color: #74b9ff; border: 1px solid rgba(116,185,255,.35); }
.result-badge-draw    { background: rgba(160,160,176,.18); color: var(--text-muted); border: 1px solid var(--border); }
.result-badge-pending { color: var(--text-muted); }
.separator-line {height: 1; background-color: gray; margin: 20px;}

/* ── Live score two-column layout ─────────────────────────────── */
.live-body        { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start; }
.live-table-wrap  { min-width: 0; }
.live-rankings    { position: sticky; top: 20px; }

/* ── Live score table columns ─────────────────────────────────── */
.live-table { table-layout: fixed; width: 100%; }
.live-col-num    { width: 52px; font-weight: 800; color: var(--accent); }
.live-col-meron  { width: auto; }
.live-col-vs     { width: 52px; text-align: center; }
.live-col-wala   { width: auto; }
.live-col-result { width: 130px; text-align: right; }

/* ── Result dropdown ──────────────────────────────────────────── */
.result-select { appearance: none; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 6px; color: var(--text-muted); font-size: 12px; font-weight: 600; padding: 4px 28px 4px 10px; cursor: pointer; width: 100%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23A0A0B0'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 8px center; transition: border-color .15s; }
.result-select:focus { outline: none; border-color: var(--accent); }
.result-select-meron { border-color: rgba(255,107,107,.5); background-color: rgba(255,107,107,.1); color: #ff6b6b; }
.result-select-wala  { border-color: rgba(116,185,255,.5); background-color: rgba(116,185,255,.1); color: #74b9ff; }
.result-select-draw  { border-color: rgba(160,160,176,.4); background-color: rgba(160,160,176,.08); color: var(--text-muted); }

/* ── Live score row highlights ────────────────────────────────── */
.live-row-current { background: rgba(233,69,96,.07); outline: 1px solid rgba(233,69,96,.25); }
.live-row-meron   { background: rgba(255,107,107,.05); }
.live-row-wala    { background: rgba(116,185,255,.05); }

/* ── Scorekeeper ──────────────────────────────────────────────── */
.sk-shell { padding: 28px 24px; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; }
.sk-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.sk-title  { font-size: 22px; font-weight: 800; margin: 4px 0 0; }

/* Tally bar */
.sk-tally { display: flex; gap: 1px; background: var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 24px; }
.sk-tally-item { flex: 1; background: var(--bg-mid); padding: 14px 10px; text-align: center; display: flex; flex-direction: column; gap: 3px; }
.sk-tally-num   { font-size: 26px; font-weight: 900; line-height: 1; color: var(--text); }
.sk-tally-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.sk-tally-meron .sk-tally-num { color: #ff6b6b; }
.sk-tally-wala  .sk-tally-num { color: #74b9ff; }
.sk-tally-draw  .sk-tally-num { color: var(--text-muted); }
.sk-tally-pending .sk-tally-num { color: var(--accent); }

/* Two-panel layout */
.sk-layout           { display: grid; grid-template-columns: 420px 1fr; gap: 20px; align-items: start; }
.sk-layout-wide      { grid-template-columns: 680px 1fr; }
.sk-layout-collapsed { grid-template-columns: 1fr; }

/* LEFT panel — fight card */
.sk-panel-left { display: flex; flex-direction: column; gap: 10px; }
.sk-card { background: var(--bg-mid); border: 1px solid var(--border); border-radius: 14px; padding: 28px 22px; }
.sk-card-fight-num { font-size: 11px; font-weight: 800; letter-spacing: 3px; color: var(--accent); text-align: center; text-transform: uppercase; margin-bottom: 18px; }
.sk-card-done { text-align: center; padding: 36px 0; }
.sk-card-done-title { font-size: 20px; font-weight: 800; color: var(--accent); margin: 10px 0 6px; }

.sk-fighters { display: flex; align-items: stretch; gap: 10px; margin-bottom: 20px; }
.sk-fighter  { flex: 1; text-align: center; padding: 18px 12px; border-radius: 10px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; }
.sk-fighter-meron { border-color: rgba(255,107,107,.45); background: rgba(255,107,107,.07); }
.sk-fighter-wala  { border-color: rgba(116,185,255,.45); background: rgba(116,185,255,.07); }
.sk-fighter-role  { font-size: 10px; font-weight: 800; letter-spacing: 2px; }
.sk-fighter-meron .sk-fighter-role { color: #ff6b6b; }
.sk-fighter-wala  .sk-fighter-role { color: #74b9ff; }
.sk-fighter-name   { font-size: 16px; font-weight: 700; line-height: 1.25; }
.sk-fighter-weight { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.sk-fighter-wing   { font-size: 11px; color: var(--text-muted); }
.sk-fighter-owner  { font-size: 11px; color: var(--text-muted); font-style: italic; }
.sk-vs { flex-shrink: 0; width: 30px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; color: var(--text-muted); }

/* Actions card — separate from fight card so it never shifts */
.sk-actions-card { background: var(--bg-mid); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; }
.sk-actions { display: flex; gap: 8px; }
.sk-actions .btn { flex: 1; justify-content: center; padding: 18px 6px; font-size: 14px; font-weight: 800; letter-spacing: .3px; }
.btn-meron { background: rgba(255,107,107,.15); color: #ff6b6b; border: 1px solid rgba(255,107,107,.4); }
.btn-meron:hover { background: rgba(255,107,107,.28); color: #ff6b6b; }
.btn-wala  { background: rgba(116,185,255,.15); color: #74b9ff; border: 1px solid rgba(116,185,255,.4); }
.btn-wala:hover  { background: rgba(116,185,255,.28); color: #74b9ff; }
.btn-draw  { background: rgba(160,160,176,.12); color: var(--text-muted); border: 1px solid var(--border); }
.btn-draw:hover  { background: rgba(160,160,176,.22); color: var(--text-muted); }
.btn-result-active.btn-meron { background: rgba(255,107,107,.5); color: #fff; border-color: #ff6b6b; }
.btn-result-active.btn-wala  { background: rgba(116,185,255,.5); color: #fff; border-color: #74b9ff; }
.btn-result-active.btn-draw  { background: rgba(160,160,176,.4); color: var(--text); }

.sk-nav { display: flex; align-items: center; justify-content: space-between; }
.sk-nav-pos { font-size: 12px; color: var(--text-muted); font-variant-numeric: tabular-nums; }

/* Fighter rankings leaderboard */
.sk-rankings-card  { background: var(--bg-mid); border: 1px solid var(--border); border-radius: 14px; overflow: hidden;}
.sk-rankings-title { font-size: 14px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); padding: 12px; }
.sk-ranking-first  { background: rgba(233,69,96,.06); }
.seq-badge { display: inline-block; border-radius: 3px; padding: 1px 4px; font-size: 10px; font-weight: 800; line-height: 1.4; }
.seq-w  { background: rgba(76,175,80,.2);    color: #4CAF50; }
.seq-l  { background: rgba(255,107,107,.2); color: #ff6b6b; }
.seq-d  { background: rgba(160,160,176,.15);color: var(--text-muted); }
.seq-uw { background: rgba(179,136,255,.25);color: #b388ff; }
.seq-ul { background: rgba(179,136,255,.12);color: #9e6ed4; }
.seq-ud { background: rgba(179,136,255,.12);color: #9e6ed4; }

/* RIGHT panel — fight list */
.sk-panel-right { display: flex; flex-direction: column; gap: 10px; }
.sk-list-controls { display: flex; flex-direction: column; gap: 8px; }
.sk-search { width: 100%; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 8px; padding: 9px 14px; color: var(--text); font-size: 14px; }
.sk-search:focus { outline: none; border-color: var(--accent); }
.sk-search::placeholder { color: var(--text-muted); }
.sk-filter-tabs { display: flex; gap: 1px; background: var(--border); border-radius: 8px; overflow: hidden; }
.sk-filter-tab { flex: 1; background: var(--bg-mid); border: none; color: var(--text-muted); font-size: 12px; font-weight: 600; padding: 7px 4px; cursor: pointer; transition: background .15s, color .15s; }
.sk-filter-tab:hover { background: rgba(255,255,255,.06); color: var(--text); }
.sk-filter-tab.active { background: var(--accent); color: #fff; }

.sk-list { background: var(--bg-mid); border: 1px solid var(--border); border-radius: 10px; overflow-y: auto; max-height: calc(100vh - 220px); min-height: 300px; }
.sk-list-row { display: grid; grid-template-columns: 38px 1fr 68px; gap: 8px; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--border); cursor: pointer; transition: background .12s; }
.sk-list-row:last-child { border-bottom: none; }
.sk-list-row:hover { background: rgba(255,255,255,.04); }
.sk-list-row-active { background: rgba(233,69,96,.1) !important; border-left: 3px solid var(--accent); }
.sk-list-row-done   { opacity: .7; }
.sk-list-num { font-size: 13px; font-weight: 800; color: var(--accent); }
.sk-list-fighters { display: grid; grid-template-columns: 1fr 28px 1fr; gap: 4px; align-items: center; }
.sk-list-meron, .sk-list-wala { display: flex; flex-direction: column; gap: 1px; }
.sk-list-meron { text-align: right; }
.sk-list-wala  { text-align: left; }
.sk-list-name   { font-size: 13px; font-weight: 700; line-height: 1.2; }
.sk-list-meron .sk-list-name { color: #ff6b6b; }
.sk-list-wala  .sk-list-name { color: #74b9ff; }
.sk-list-weight { font-size: 11px; color: var(--text-muted); }
.sk-list-owner  { font-size: 10px; color: var(--text-muted); font-style: italic; }
.sk-list-vs-wrap { text-align: center; }
.sk-list-vs { font-size: 10px; font-weight: 800; color: var(--text-muted); }
.sk-list-result { text-align: right; }
.btn-reset-result {
    background: none;
    border: 1px solid #444;
    color: #888;
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 11px;
    cursor: pointer;
    line-height: 1.4;
    flex-shrink: 0;
}
.btn-reset-result:hover { background: #333; color: #fff; border-color: #666; }

@media (max-width: 900px) {
    .sk-layout { grid-template-columns: 1fr; }
    .sk-panel-left { position: static; }
    .sk-list { max-height: 480px; flex: none; }
}

@media (max-width: 640px) {
    .landing-nav { padding: 12px 20px; }
    .landing-hero { padding: 60px 20px 70px; }
    .landing-section { padding: 56px 20px; }
    .landing-section-alt { padding: 56px 20px; }
    .landing-cta { padding: 60px 20px; }
    .landing-footer { padding: 24px 20px; }
    .landing-footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .landing-feature { padding: 20px 24px; }
    .landing-steps { gap: 28px; }
    .live-shell { padding: 20px 12px; }
    .live-stats { flex-direction: column; gap: 0; }
    .sk-shell { padding: 16px 12px; }
    .sk-tally { flex-wrap: wrap; }
    .sk-tally-item { min-width: 60px; }
    .sk-actions { flex-direction: column; }
}

/* Guide / Help page */
.guide-p  { color: var(--text); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.guide-h3 { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .8px; margin: 18px 0 8px; }
.guide-ol { padding-left: 20px; color: var(--text); font-size: 14px; line-height: 1.8; margin-bottom: 12px; }
.guide-ul { padding-left: 20px; color: var(--text); font-size: 14px; line-height: 1.8; margin-bottom: 12px; list-style: disc; }
.guide-ol li, .guide-ul li { margin-bottom: 4px; }
.guide-note { background: var(--bg-mid); border-left: 3px solid var(--accent); border-radius: 0 6px 6px 0; padding: 10px 14px; font-size: 13px; color: var(--text-muted); margin-top: 12px; }
.guide-link { color: var(--accent); text-decoration: none; }
.guide-link:hover { text-decoration: underline; }
.guide-faq { display: flex; flex-direction: column; gap: 0; }
.guide-faq dt { font-weight: 700; font-size: 14px; color: var(--text); padding: 14px 0 4px; border-top: 1px solid var(--border); }
.guide-faq dd { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0 0 4px; padding-left: 12px; }
.guide-code { background: var(--bg-mid); padding: 2px 6px; border-radius: 4px; font-family: monospace; font-size: 12px; color: var(--accent); }
.guide-pre  { background: var(--bg-mid); border: 1px solid var(--border); border-radius: 6px; padding: 12px 16px; font-family: monospace; font-size: 12px; color: var(--text); white-space: pre; overflow-x: auto; margin-bottom: 12px; line-height: 1.6; }
.guide-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 8px; }
.guide-table th { text-align: left; padding: 6px 10px; background: var(--bg-mid); color: var(--text-muted); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; border-bottom: 1px solid var(--border); }
.guide-table td { padding: 6px 10px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; }
.guide-table tr:last-child td { border-bottom: none; }

/* ── Pricing page ─────────────────────────────────────────────────────────── */
.pricing-card { background: var(--bg-mid); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; display: flex; flex-direction: column; position: relative; }
.pricing-card-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pricing-card-current { border-color: #22c55e; }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #000; font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 12px; white-space: nowrap; }
.pricing-tier-label { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 12px; margin-bottom: 12px; letter-spacing: .5px; text-transform: uppercase; }
.pricing-price { font-size: 32px; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.pricing-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.pricing-features li { font-size: 13px; color: var(--text); padding: 5px 0; border-bottom: 1px solid var(--border); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-no { color: var(--text-muted) !important; }

/* ── Top 10 Snapshot page ─────────────────────────────────────────────────── */
.snap-page { padding: 24px; max-width: 720px; margin: 0 auto; }
.snap-toolbar { display: flex; gap: 10px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }

#snapshot-card-derby,
#snapshot-card-ulutan {
    background: #0d0d0d;
    border: 2px solid #c8a42a;
    border-radius: 14px;
    padding: 28px 32px 32px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #ddd;
    margin-bottom: 32px;
    width: 640px;
}

/* Header with logo */
.snap-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-align: center;
}
.snap-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #c8a42a;
}
.snap-header-text { text-align: center; }
.snap-arena-name {
    font-size: 11px;
    font-weight: 700;
    color: #c8a42a;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.snap-event-name {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: .4px;
    text-transform: uppercase;
    line-height: 1.2;
}
.snap-subtitle {
    font-size: 10px;
    color: #ffffff;
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.snap-divider { border: none; border-top: 1px solid #2a2a2a; margin: 0 0 20px; }
.snap-tables { display: grid; grid-template-columns: 1fr; gap: 24px; }
.snap-section-title {
    font-size: 11px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-left: 3px solid #c8a42a;
    padding-left: 8px;
}

.snap-table { width: 100%; border-collapse: collapse; }
.snap-table th {
    font-size: 10px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 8px 8px;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
}
.snap-table th:nth-child(2) { text-align: center; }
.snap-table td { padding: 8px; font-size: 13px; font-weight: 700; color: #ccc; border-bottom: 1px solid #1a1a1a; text-align: center; }
.snap-table tr:last-child td { border-bottom: none; }

.snap-rank { font-size: 11px; font-weight: 800; color: #555; width: 26px; }
.snap-rank.r1 { color: #f5c518; font-size: 14px; }
.snap-rank.r2 { color: #b0b0b0; font-size: 13px; }
.snap-rank.r3 { color: #cd7f32; font-size: 12px; }

.snap-name { font-weight: 800; color: #e8e8e8; font-size: 13px; }
.snap-name.r1 { color: #f5c518; font-size: 14px; }
.snap-name.r2 { color: #d0d0d0; }
.snap-name.r3 { color: #cd7f32; }

.snap-score { color: #4ade80; font-weight: 900; font-size: 14px; text-align: center; }
.snap-seq { font-size: 11px; font-family: monospace; }

/* W/L/D column values */
.snap-w  { font-weight: 900; font-size: 13px; text-align: center; color: #4ade80; }
.snap-l  { font-weight: 900; font-size: 13px; text-align: center; color: #f87171; }
.snap-d  { font-weight: 900; font-size: 13px; text-align: center; color: #facc15; }
.snap-th-w { color: #4ade80 !important; font-weight: 900 !important; }
.snap-th-l { color: #f87171 !important; font-weight: 900 !important; }
.snap-th-d { color: #facc15 !important; font-weight: 900 !important; }

.snap-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 10px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-top: 1px solid #2a2a2a;
    padding-top: 12px;
}
.snap-empty { font-size: 12px; color: #444; text-align: center; padding: 20px 0; }
