:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #0f766e;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --border: #e2e8f0;
    --text: #1e293b;
    --text-muted: #64748b;
    --bg: #ffffff;
    --radius: 10px;
    --shadow: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.08);
    --shadow-lg: 0 18px 45px rgba(15,23,42,.12);
}

* { box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text);
    background: #f7f9fc;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* Navbar */
.navbar {
    background: rgba(255,255,255,0.92) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 64px;
}
/* 移动端折叠菜单不透明背景 */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 8px 30px rgba(0,0,0,.12);
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        z-index: 1050;
    }
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary) !important;
    letter-spacing: 0;
}

.navbar-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%) !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 30px rgba(15,23,42,.18);
}
.navbar-dark .navbar-brand,
.navbar-dark .nav-link {
    color: #fff !important;
}
.navbar-dark .nav-link {
    opacity: .78;
}
.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
    opacity: 1;
    color: #fff !important;
}
.nav-link {
    color: var(--text-muted) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color .15s;
}
.nav-link:hover, .nav-link.active { color: var(--text) !important; }

/* Buttons */
.btn-primary {
    background: var(--primary);
    border: none;
    font-weight: 600;
    padding: .6rem 1.5rem;
    border-radius: 8px;
    transition: all .2s;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79,70,229,.3);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border-radius: 8px;
    font-weight: 500;
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}
.btn-lg {
    padding: .75rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
}

/* Cards */
.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card,
.dash-card,
.sub-card,
.feature-card,
.download-card,
.purchase-plan-card,
.config-card {
    border-radius: 10px !important;
    border-color: #dbe3ef !important;
}
.card-header {
    background: #fff;
    border-bottom-color: #e5edf7;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 54%, #0f766e 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,.06) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-badge .badge {
    font-weight: 500;
    letter-spacing: .5px;
}
.hero-guarantee {
    font-size: .82rem;
    opacity: .7;
    white-space: nowrap;
}
.hero-guarantee i { opacity: 1 !important; color: #34d399 !important; }

.hero h1 {
    font-weight: 800;
    font-size: 3.25rem;
    letter-spacing: 0;
    line-height: 1.15;
}
.hero p {
    font-size: 1.15rem;
    opacity: .85;
    max-width: 560px;
    line-height: 1.7;
}

.hero-visual {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}
.hero-shield {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    color: rgba(255,255,255,.12);
    z-index: 2;
}
.hero-visual {
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 24px 70px rgba(0,0,0,.24);
}
.hero-shield {
    color: rgba(255,255,255,.22);
}

/* Stats Strip */
.stats-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
}
.stats-item {
    padding: 28px 16px;
    transition: background .2s;
}
.stats-item:hover { background: #f8fafc; }
.stats-icon {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 6px;
    opacity: .6;
}
.stats-number {
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}
.stats-label {
    font-size: .8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Section */
.section {
    padding: 80px 0;
}
.section-label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: rgba(79,70,229,.08);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: .5rem;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Plans section - compact cards */
.mini-plan-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    transition: box-shadow .2s, transform .2s;
}
.mini-plan-card:hover {
    box-shadow: 0 4px 16px rgba(79,70,229,.12);
    transform: translateY(-1px);
}

/* Plan cards */
.plan-card {
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all .3s;
    position: relative;
}
.plan-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(79,70,229,.12);
}
.plan-card.popular {
    border-color: var(--primary);
    background: #faf5ff;
}
.plan-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
}
.plan-card .plan-name {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 4px;
}
.plan-card .plan-price {
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--primary);
    margin: 12px 0;
}
.plan-card .plan-price small {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
}
.plan-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}
.plan-card .plan-features li {
    padding: 6px 0;
    font-size: .9rem;
    color: var(--text-muted);
}
.plan-card .plan-features li i { color: var(--primary); margin-right: 8px; }

/* Stat cards */
.stat-card {
    text-align: center;
    padding: 24px;
}
.stat-card .stat-number {
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary);
}
.stat-card .stat-label {
    font-size: .85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Feature cards */
.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all .3s;
    height: 100%;
}
.feature-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
    transform: translateY(-3px);
}
.feature-card .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    transition: transform .3s;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1);
}
.feature-card h5 { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Download cards */
.download-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.download-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    transform: translateY(-3px);
    color: var(--text);
}
.download-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    transition: transform .3s;
}
.download-card:hover .download-icon { transform: scale(1.15); }
.download-name { font-weight: 700; font-size: .95rem; margin-bottom: 4px; color: var(--text); }
.download-desc { font-size: .78rem; color: var(--text-muted); }
.download-arrow {
    margin-top: 10px;
    font-size: .85rem;
    color: var(--primary);
    opacity: 0;
    transform: translateY(5px);
    transition: all .3s;
}
.download-card:hover .download-arrow { opacity: 1; transform: translateY(0); }

/* Tutorial box */
.tutorial-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(15,23,42,.08);
}
.tutorial-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}
.tutorial-tab {
    border: 1px solid #dbe3ef;
    background: #f8fafc;
    color: #334155;
    border-radius: 10px;
    min-height: 46px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .18s ease;
}
.tutorial-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #eff6ff;
}
.tutorial-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(37,99,235,.18);
}
.tutorial-panel {
    display: none;
}
.tutorial-panel.active {
    display: block;
    animation: tutorialFade .18s ease-out;
}
@keyframes tutorialFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.tutorial-panel-head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    margin-bottom: 20px;
}
.tutorial-method-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.tutorial-method {
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    min-height: 132px;
}
.tutorial-method i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #eff6ff;
    color: var(--primary);
    margin-bottom: 10px;
}
.tutorial-method strong {
    display: block;
    color: #0f172a;
    font-size: .94rem;
    margin-bottom: 5px;
}
.tutorial-method span {
    display: block;
    color: var(--text-muted);
    font-size: .82rem;
    line-height: 1.55;
}
.tutorial-panel-head > div:first-child {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0f2fe;
    color: var(--primary);
    font-size: 1.35rem;
    flex-shrink: 0;
}
.tutorial-panel-head h5 {
    margin: 0 0 4px;
    font-weight: 800;
}
.tutorial-panel-head p {
    margin: 0;
    color: var(--text-muted);
    font-size: .92rem;
}
.tutorial-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: tutorial-step;
}
.tutorial-steps li {
    position: relative;
    min-height: 48px;
    margin-bottom: 10px;
    padding: 13px 14px 13px 58px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #334155;
    box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.tutorial-steps li::before {
    counter-increment: tutorial-step;
    content: counter(tutorial-step);
    position: absolute;
    left: 14px;
    top: 12px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
}
.tutorial-note {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: .9rem;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.tutorial-panel a {
    font-weight: 700;
    word-break: break-all;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 0;
    font-size: .875rem;
}
.footer a { color: #64748b; text-decoration: none; transition: color .15s; }
.footer a:hover { color: #e2e8f0; }
.footer-brand {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.footer-desc {
    color: #64748b;
    line-height: 1.7;
    max-width: 300px;
}
.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-badge {
    font-size: .75rem;
    color: #475569;
    background: rgba(255,255,255,.06);
    padding: 3px 10px;
    border-radius: 6px;
}
.footer-title {
    color: #e2e8f0;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 16px;
}
.footer-promises {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-promises li {
    color: #64748b;
    font-size: .85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.footer-promises li i { color: #22c55e; font-size: .9rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    font-size: .8rem;
    color: #475569;
}

/* Auth pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ede9fe 100%);
    padding: 24px;
}
.auth-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.auth-card h3 {
    font-weight: 700;
    margin-bottom: 8px;
}
.auth-card .form-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .65rem .875rem;
    font-size: .95rem;
}
.auth-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79,70,229,.1);
}

/* Dashboard */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.stat-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.stat-item .label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.stat-item .value { font-size: 1.5rem; font-weight: 700; margin-top: 4px; }
.stat-item .value.accent { color: var(--primary); }

/* Table */
.table {
    font-size: .9rem;
}
.table th {
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    border-bottom-width: 2px;
}

/* Alert */
.alert {
    border: none;
    border-radius: 10px;
    font-size: .9rem;
}

/* Progress */
.progress {
    height: 8px;
    border-radius: 4px;
    background: var(--border);
}

/* Badges */
.badge {
    font-weight: 500;
    border-radius: 6px;
    padding: .35em .6em;
}

/* Forms */
.form-control, .form-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .6rem .85rem;
    font-size: .925rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79,70,229,.1);
}
.form-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .35rem;
}
.form-text {
    font-size: .8rem;
}
.input-group-text {
    background: var(--surface-alt);
    border-color: var(--border);
    color: var(--text-muted);
}

/* Pagination */
.pagination {
    gap: 4px;
}
.page-link {
    border: 1px solid var(--border);
    border-radius: 6px !important;
    color: var(--text);
    padding: .35rem .75rem;
    font-size: .875rem;
}
.page-link:hover { background: #f1f5f9; }
.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero { padding: 80px 0 60px; }
    .hero h1 { font-size: 2rem; }
    .hero-visual { width: 200px; height: 200px; }
    .hero-shield { font-size: 5rem; }
    .section { padding: 48px 0; }
    .section-header h2 { font-size: 1.6rem; }
    .plan-card { margin-bottom: 16px; }
    .stats-number { font-size: 1.5rem; }
    .stats-item { padding: 20px 12px; }
    .feature-card { padding: 24px 18px; }
    .download-card { padding: 18px 12px; }
    .download-icon { font-size: 2rem; }
    .tutorial-box { padding: 20px; }
    .tutorial-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tutorial-tab { min-height: 42px; font-size: .9rem; }
    .tutorial-panel-head { padding: 14px; }
    .tutorial-method-grid { grid-template-columns: 1fr; }
    .tutorial-method { min-height: auto; }
    .footer { padding-top: 40px; }
    /* 弹窗适配 */
    .modal-dialog.modal-lg { max-width: 95vw; margin: .5rem auto; }
    .modal-dialog { max-width: 95vw; margin: .5rem auto; }
    /* 字号缩减 */
    h1, .h1 { font-size: 1.6rem; }
    h3, .h3 { font-size: 1.25rem; }
    .fs-1 { font-size: 1.6rem !important; }
    .fs-4 { font-size: 1.15rem !important; }
    /* 页面头部自适应 */
    .page-header { flex-direction: column; align-items: flex-start !important; gap: .75rem; }
    /* 卡片间距 */
    .card { margin-bottom: .75rem; }
    /* 内边距缩减 */
    .p-5 { padding: 1.5rem !important; }
    .p-4 { padding: 1rem !important; }
}

/* 暗色导航栏的移动端菜单背景 */
nav[style*="--primary"] .navbar-collapse,
.navbar-dark .navbar-collapse {
    background: #1e293b !important;
    color: #fff !important;
}
nav[style*="--primary"] .navbar-collapse .nav-link,
.navbar-dark .navbar-collapse .nav-link {
    color: #cbd5e1 !important;
}
nav[style*="--primary"] .navbar-collapse .nav-link:hover,
.navbar-dark .navbar-collapse .nav-link:hover {
    color: #fff !important;
}

/* Commercial polish */
body {
    line-height: 1.6;
}

main {
    background: #f6f8fb !important;
}

.btn {
    border-radius: 8px;
    font-weight: 600;
}

.btn-light {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.btn-success {
    background: var(--accent);
    border-color: var(--accent);
}

.table-responsive {
    border-radius: 10px;
}

.table {
    --bs-table-bg: #fff;
    vertical-align: middle;
}

.table thead th {
    background: #f8fafc;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
    letter-spacing: 0;
}

.table tbody tr:hover > * {
    background: #f8fbff;
}

.form-control,
.form-select {
    min-height: 42px;
    background-color: #fff;
}

.form-control:focus,
.form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.alert {
    border: 1px solid transparent;
}

.alert-success { background: #ecfdf5; color: #047857; border-color: #bbf7d0; }
.alert-danger { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
.alert-warning { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.alert-info { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }

.badge.bg-primary,
.badge.bg-success,
.badge.bg-warning,
.badge.bg-danger,
.badge.bg-secondary {
    border-radius: 999px;
    padding: .38rem .65rem;
}

.section {
    background: #fff;
}

.section.bg-light,
.bg-light {
    background: #f6f8fb !important;
}

.section-header h2,
.page-title,
h3,
h4,
h5 {
    letter-spacing: 0;
}

.feature-card,
.download-card,
.plan-card {
    background: #fff;
    box-shadow: 0 1px 2px rgba(15,23,42,.06);
}

.feature-card:hover,
.download-card:hover,
.plan-card:hover,
.purchase-plan-card:hover,
.dash-card:hover,
.sub-card:hover,
.config-card:hover {
    box-shadow: 0 16px 40px rgba(15,23,42,.11) !important;
}

.auth-container {
    background:
        linear-gradient(135deg, rgba(15,23,42,.92), rgba(30,64,175,.84)),
        linear-gradient(45deg, #0f172a, #2563eb);
}

.auth-card {
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 28px 80px rgba(2,6,23,.28);
}

.purchase-plan-card.selected {
    background: #eff6ff;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.purchase-plan-group {
    background: #fff;
    border: 1px solid #dbe3ef;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 1px 2px rgba(15,23,42,.06);
}

.purchase-plan-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #e2e8f0;
}

.purchase-plan-group .purchase-plan-card + .purchase-plan-card {
    margin-top: 14px;
}

.purchase-plan-group .purchase-plan-card {
    background: #fff;
}

.dash-balance,
.purchase-plan-card .price,
.stats-number {
    color: var(--primary) !important;
}

.progress-bar.bg-success,
.badge-status.active {
    background-color: var(--accent) !important;
}

aside.d-none.d-lg-block,
#adminSidebar.offcanvas,
#adminSidebar .offcanvas-header,
#adminSidebar .offcanvas-body {
    background: #0b1220 !important;
}

aside h5,
#adminSidebar h5 {
    letter-spacing: 0;
}

aside .nav-link,
#adminSidebar .nav-link {
    border-radius: 8px !important;
    margin-bottom: 4px;
}

aside .nav-link.active,
#adminSidebar .nav-link.active {
    background: rgba(37,99,235,.22) !important;
    box-shadow: inset 3px 0 0 #60a5fa;
}

@media (max-width: 768px) {
    .navbar {
        height: auto;
        min-height: 60px;
    }
    .hero h1 {
        line-height: 1.18;
    }
    .btn-lg {
        width: 100%;
    }
    .container.py-4 {
        padding-top: 1rem !important;
    }
}
