/* ================================================================
   Header
   ================================================================ */
header.sticky { box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.aura-primary-menu,
.aura-primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.aura-primary-menu {
    gap: 30px;
}
.aura-primary-menu li {
    position: relative;
}
.aura-primary-menu > li + li {
    margin-left: 0 !important;
}
.aura-primary-menu a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}
.aura-primary-menu .aura-menu-icon {
    flex: 0 0 auto;
    font-size: .95em;
    line-height: 1;
}
.aura-primary-menu .aura-menu-text {
    line-height: 1.2;
}
.aura-primary-menu .aura-menu-blue > a { color: #2563eb; }
.aura-primary-menu .aura-menu-purple > a { color: #7c3aed; }
.aura-primary-menu .aura-menu-gold > a { color: #b45309; }
.aura-primary-menu .aura-menu-red > a { color: #e11d48; }
.aura-primary-menu .aura-menu-green > a { color: #059669; }
.aura-primary-menu .aura-menu-orange > a { color: #ea580c; }
.aura-primary-menu .aura-menu-pink > a { color: #db2777; }
.aura-primary-menu .aura-menu-cyan > a { color: #0891b2; }
.aura-primary-menu .aura-menu-teal > a { color: #0f766e; }
.aura-primary-menu .aura-menu-slate > a { color: #475569; }
.aura-primary-menu .aura-menu-blue > a:hover { color: #1d4ed8; }
.aura-primary-menu .aura-menu-purple > a:hover { color: #6d28d9; }
.aura-primary-menu .aura-menu-gold > a:hover { color: #92400e; }
.aura-primary-menu .aura-menu-red > a:hover { color: #be123c; }
.aura-primary-menu .aura-menu-green > a:hover { color: #047857; }
.aura-primary-menu .aura-menu-orange > a:hover { color: #c2410c; }
.aura-primary-menu .aura-menu-pink > a:hover { color: #be185d; }
.aura-primary-menu .aura-menu-cyan > a:hover { color: #0e7490; }
.aura-primary-menu .aura-menu-teal > a:hover { color: #115e59; }
.aura-primary-menu .aura-menu-slate > a:hover { color: #334155; }
.aura-primary-menu a:hover,
.aura-primary-menu .current-menu-item > a,
.aura-primary-menu .current-menu-ancestor > a {
    color: #2563eb;
}
.aura-primary-menu > li > a.aura-nav-link {
    min-height: 32px;
    border-radius: 999px;
    padding: 6px 10px;
    line-height: 1;
    transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.aura-primary-menu > li > a.aura-nav-link.is-normal-style:hover {
    background: #eff6ff;
    color: #2563eb;
}
.aura-primary-menu > li > a.aura-nav-link.is-active-style {
    background: #eff6ff;
    color: #2563eb;
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, .12);
}
.aura-primary-menu > li > a.aura-nav-link.is-active-style i {
    color: #2563eb;
}
.aura-primary-menu > li > a.aura-nav-link.is-active-style:hover {
    background: #dbeafe;
    color: #1d4ed8;
}
.aura-primary-menu > li > a.aura-nav-link.is-vip-style {
    background: #fffbeb;
    color: #b45309;
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, .22);
}
.aura-primary-menu > li > a.aura-nav-link.is-vip-style i {
    color: #f59e0b;
}
.aura-primary-menu > li > a.aura-nav-link.is-vip-style:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    box-shadow: 0 10px 22px rgba(217, 119, 6, .20);
    transform: translateY(-1px);
}
.aura-primary-menu > li > a.aura-nav-link.is-vip-style:hover i {
    color: #fff;
}
.aura-primary-menu .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 80;
    width: max-content;
    min-width: 100px;
    max-width: min(200px, calc(100vw - 32px));
    display: block;
    padding: 5px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.aura-primary-menu .sub-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}
.aura-primary-menu li:hover > .sub-menu,
.aura-primary-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.aura-primary-menu .sub-menu .sub-menu {
    top: 0;
    left: calc(100% + 8px);
    transform: translate(6px, 0);
}
.aura-primary-menu .sub-menu .sub-menu::before {
    top: 0;
    left: -10px;
    right: auto;
    width: 10px;
    height: 100%;
}
.aura-primary-menu .sub-menu li:hover > .sub-menu,
.aura-primary-menu .sub-menu li:focus-within > .sub-menu {
    transform: translate(0, 0);
}
.aura-primary-menu .sub-menu a {
    width: auto;
    min-width: 100%;
    padding: 8px 9px;
    border-radius: 8px;
    color: #475569;
    white-space: nowrap;
}
.aura-primary-menu .sub-menu a:hover {
    background: #eff6ff;
    color: #2563eb;
}
.aura-user-dropdown {
    position: relative;
    padding: 6px 0;
}
.aura-user-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 999px;
    transition: background .18s ease, transform .18s ease;
}
.aura-user-dropdown-trigger:hover {
    background: #f1f5f9;
}
.aura-user-dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    z-index: 60;
    width: min(286px, calc(100vw - 24px));
    display: none;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    transform: translateY(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    visibility: hidden;
}
.aura-user-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 22px;
}
.aura-user-dropdown:hover .aura-user-dropdown-menu,
.aura-user-dropdown:focus-within .aura-user-dropdown-menu,
.aura-user-dropdown.is-open .aura-user-dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}
.aura-user-card-head {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}
.aura-user-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    border: 3px solid #f1f5f9;
    background: #f8fafc;
    flex: 0 0 auto;
}
.aura-user-card-main {
    min-width: 0;
    flex: 1;
}
.aura-user-card-name {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}
.aura-user-card-name span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.aura-header-username {
    margin: 2px 0 0;
    color: #0f172a;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
}
.aura-user-card-main p {
    margin: 3px 0 0;
    color: #94a3b8;
    font-size: 10px;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.aura-user-card-bell {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    background: #f8fafc;
    text-decoration: none;
    flex: 0 0 auto;
}
.aura-user-card-bell span {
    position: absolute;
    top: 7px;
    right: 8px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #ef4444;
    border: 2px solid #fff;
}
.aura-user-card-vip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
    max-width: 100%;
    padding: 4px 8px;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    color: #2563eb;
    text-decoration: none;
    overflow: hidden;
    background: linear-gradient(135deg, #eff6ff, #f5f3ff);
}
.aura-user-card-vip.is-vip {
    border-color: #fde68a;
    color: #b45309;
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}
.aura-user-card-vip span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.aura-user-card-vip em {
    padding: 2px 6px;
    border-radius: 999px;
    background: #fff;
    color: #fb923c;
    font-style: normal;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    flex: 0 0 auto;
}
.aura-user-card-assets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 9px;
}
.aura-user-card-assets a {
    position: relative;
    min-width: 0;
    padding: 9px;
    border-radius: 10px;
    background: #f8fafc;
    text-decoration: none;
    overflow: hidden;
}
.aura-user-card-assets span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 700;
}
.aura-user-card-assets strong {
    display: block;
    margin-top: 4px;
    color: #2563eb;
    font-size: 13px;
    line-height: 1;
}
.aura-user-card-assets a > i {
    position: absolute;
    right: 9px;
    bottom: 9px;
    color: #f59e0b;
    font-size: 19px;
    opacity: .86;
}
.aura-user-card-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 8px;
    margin-top: 11px;
    padding-top: 11px;
    border-top: 1px solid #f1f5f9;
}
.aura-user-dropdown-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 0;
    padding: 0;
    border-radius: 0;
    color: #475569;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
}
.aura-user-dropdown-link i {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: #2563eb;
    font-size: 15px;
    transition: transform .18s ease, background .18s ease;
}
.aura-user-dropdown-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}
.aura-user-dropdown-link:hover i {
    transform: translateY(-2px);
}
.aura-user-dropdown-link.is-blue {
    color: #2563eb;
}
.aura-user-dropdown-link.is-purple {
    color: #d946ef;
}
.aura-user-dropdown-link.is-purple i {
    background: #fdf4ff;
    color: #d946ef;
}
.aura-user-dropdown-link.is-green {
    color: #16a34a;
}
.aura-user-dropdown-link.is-green i {
    background: #ecfdf5;
    color: #16a34a;
}
.aura-user-dropdown-link.is-orange {
    color: #f97316;
}
.aura-user-dropdown-link.is-orange i {
    background: #fff7ed;
    color: #f97316;
}
.aura-user-dropdown-link.is-danger {
    color: #f43f5e;
}
.aura-user-dropdown-link.is-danger i {
    background: #fff1f2;
    color: #f43f5e;
}
.aura-user-dropdown-link.is-danger:hover {
    color: #e11d48;
}
@media (max-width: 480px) {
    .aura-user-dropdown-menu {
        right: -8px;
        width: min(286px, calc(100vw - 20px));
        padding: 12px;
    }
    .aura-user-card-actions {
        grid-template-columns: repeat(3, 1fr);
    }
    .aura-user-card-name {
        font-size: 16px;
    }
}

/* ================================================================
   Submit Software Page
   ================================================================ */
.aura-submit-page {
    color: #1e293b;
}
.aura-submit-card {
    background: #fff;
}
.aura-submit-hero {
    position: relative;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 86% 18%, rgba(255,255,255,.24), transparent 28%),
        linear-gradient(135deg, #2563eb 0%, #4f46e5 48%, #7c3aed 100%);
}
.aura-submit-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,23,42,.18), transparent 70%);
    pointer-events: none;
}
.aura-submit-kicker,
.aura-submit-hero h1,
.aura-submit-hero p {
    position: relative;
    z-index: 1;
}
.aura-submit-kicker {
    margin: 0 0 12px;
    color: rgba(255,255,255,.9);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
}
.aura-submit-hero h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.18;
    font-weight: 900;
}
.aura-submit-hero p {
    max-width: 780px;
    margin: 0;
    color: rgba(239,246,255,.96);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 600;
}
.aura-submit-page .aura-field-label {
    color: #334155;
    font-weight: 800;
}
.aura-submit-page .aura-field {
    border-radius: 12px;
    background-color: #fff;
}
.aura-submit-page select.aura-field[multiple] {
    min-height: 120px;
    padding-block: 8px;
}
.aura-submit-page select.aura-field[multiple] option {
    padding: 7px 9px;
    border-radius: 7px;
}
.aura-submit-page textarea.aura-field {
    line-height: 1.7;
}
[data-theme="dark"] .aura-submit-card {
    background: #1e293b;
    border-color: #334155;
}
[data-theme="dark"] .aura-submit-page .aura-field-label {
    color: #e2e8f0;
}
[data-theme="dark"] .aura-submit-page aside .bg-slate-50 {
    background: #0f172a !important;
    border-color: #334155 !important;
}

/* ================================================================
   Footer
   ================================================================ */
footer { margin-top: auto; }

footer .aura-footer-logo {
    display: block;
    max-width: 90px;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
}

footer ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

footer li::marker {
    content: "";
}

footer li > a {
    display: inline-flex;
    align-items: center;
}

/* ================================================================
   Breadcrumbs
   ================================================================ */
.aura-breadcrumbs {
    font-size: 12px;
    color: var(--color-slate-500);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.aura-breadcrumbs a { color: var(--color-slate-500); }
.aura-breadcrumbs a:hover { color: var(--color-blue-600); }
.aura-breadcrumbs span { color: var(--color-slate-800); font-weight: 500; }

/* ================================================================
   Pagination
   ================================================================ */
.page-numbers {
    display: flex;
    gap: 4px;
    align-items: center;
}
.page-numbers li {
    list-style: none;
    margin: 0;
}
.page-numbers a, .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    font-size: 12px;
    border-radius: var(--radius);
    text-decoration: none;
    border: 1px solid var(--color-slate-200);
    color: var(--color-slate-600);
    background: var(--color-white);
    transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.page-numbers a:hover {
    background: var(--color-blue-50);
    border-color: var(--color-blue-200);
    color: var(--color-blue-600);
}
.page-numbers .current {
    background: var(--color-blue-600);
    border-color: var(--color-blue-600);
    color: white;
    font-weight: 600;
}
.page-numbers .dots {
    border: none;
    background: transparent;
    color: var(--color-slate-400);
}

/* ================================================================
   Software Card
   ================================================================ */
.aura-software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 280px));
    justify-content: flex-start;
    gap: 16px;
}
.aura-software-archive-grid {
    justify-content: flex-start;
    column-gap: 24px;
    row-gap: 20px;
}

@media (min-width: 1200px) {
    .aura-software-filter-sidebar {
        width: 280px !important;
    }

    .aura-software-archive-grid.has-sidebar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: stretch;
    }
}
.aura-software-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 13px;
    min-height: 279px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15,23,42,0.04);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.aura-software-card:hover,
.aura-software-card:focus-visible {
    border-color: #bfdbfe;
    box-shadow: 0 18px 34px rgba(37,99,235,0.12);
    transform: translateY(-3px);
    background: #fff;
    outline: none;
}
.aura-software-card-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}
.aura-software-card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.aura-software-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: #dbeafe;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 24px;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.65), 0 6px 16px rgba(15,23,42,0.10);
}
.aura-software-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.aura-software-icon-xl {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    border-radius: 12px;
}
.aura-software-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
}
.aura-software-card-title {
    margin: 0;
    padding-right: 32px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.18s ease, transform 0.18s ease;
}
.aura-software-card:hover .aura-software-card-title {
    color: #2563eb;
    transform: none;
}
.aura-software-card:focus-visible .aura-software-card-title {
    color: #2563eb;
}
.aura-software-card-title span {
    margin-left: 4px;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 500;
}
.aura-software-card:hover .aura-software-card-title span,
.aura-software-card:focus-visible .aura-software-card-title span {
    color: rgba(255,255,255,0.82);
}
.aura-software-card-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
}
.aura-software-card-sub span + span {
    position: relative;
    padding-left: 12px;
}
.aura-software-card-sub span + span::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #cbd5e1;
}
.aura-software-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    margin: 0;
    color: #94a3b8;
    font-size: 10px;
    letter-spacing: 0;
}
.aura-software-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #64748b;
    font-size: 9px;
    font-weight: 700;
}
.aura-software-card-rating i,
.aura-software-card-rating strong {
    color: #f59e0b;
}
.aura-software-card-rating i {
    font-size: 10px;
}
.aura-software-card-rating strong {
    font-size: 10px;
}
.aura-software-card-desc {
    display: -webkit-box;
    min-height: 48px;
    margin: 0;
    overflow: hidden;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
    text-wrap: wrap;
    overflow-wrap: anywhere;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.aura-software-card-divider {
    height: 1px;
    margin: auto 0 0;
    background: #e2e8f0;
}
.aura-software-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 30px;
    margin-bottom: 0;
}
.aura-software-card-size {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}
.aura-software-tags {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    gap: 6px;
    min-width: 0;
    margin: 0;
    overflow: hidden;
}
.aura-software-tags span {
    display: inline-flex;
    flex: 0 1 auto;
    align-items: center;
    min-width: 0;
    max-width: calc(50% - 3px);
    min-height: 28px;
    padding: 0 8px;
    overflow: hidden;
    border-radius: 8px;
    background: #f8fafc;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.aura-software-badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    max-width: 68px;
    padding: 5px 9px;
    overflow: hidden;
    border-radius: 0 14px 0 12px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.aura-software-badge.is-free { background: #10b981; }
.aura-software-badge.is-login { background: #0ea5e9; }
.aura-software-badge.is-points { background: #8b5cf6; }
.aura-software-badge.is-paid,
.aura-software-badge.is-member { background: #f59e0b; }
.aura-software-card-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    width: 100%;
    margin-top: 0;
    border-radius: 9px;
    background: #dbeafe;
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
}
.aura-software-card-download i {
    font-size: 12px;
}
.aura-software-card:hover .aura-software-card-download,
.aura-software-card:focus-visible .aura-software-card-download {
    background: #2563eb;
    color: #fff;
    transform: translateY(-1px);
}
.aura-software-card:hover .aura-software-card-body,
.aura-software-card:focus-visible .aura-software-card-body,
.aura-software-card:hover .aura-software-meta,
.aura-software-card:focus-visible .aura-software-meta,
.aura-software-card:hover .aura-software-tags span,
.aura-software-card:focus-visible .aura-software-tags span,
.aura-software-card:hover .aura-software-card-sub,
.aura-software-card:focus-visible .aura-software-card-sub {
    color: #64748b;
}
.aura-software-card:hover .aura-software-tags span,
.aura-software-card:focus-visible .aura-software-tags span {
    background: #eff6ff;
    color: #2563eb;
}
.aura-software-card:hover .aura-software-icon,
.aura-software-card:focus-visible .aura-software-icon {
    background: #eff6ff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 10px 22px rgba(37,99,235,0.12);
    color: #2563eb;
}

/* ================================================================
   Modal / Auth Overlay
   ================================================================ */
.backdrop-blur-xs {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
#aura-modal-overlay {
    transition: opacity 0.2s;
}

/* ================================================================
   Components — Buttons / Icons / Modal
   ================================================================ */
.aura-icon-btn,
.aura-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.15s, border-color 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.aura-icon-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 999px;
    flex: 0 0 auto;
}
.aura-icon-btn i,
.aura-btn i,
.aura-pay-method-icon i {
    line-height: 1;
}
.aura-icon-btn-lg {
    width: 56px;
    height: 56px;
    font-size: 20px;
}
.aura-icon-btn-sm {
    width: 32px;
    height: 32px;
    font-size: 13px;
}
.aura-btn {
    min-height: 38px;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}
.aura-btn-sm {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 10px;
    border-radius: 9px;
}
.aura-btn-primary {
    background: #7c3aed;
    color: #fff;
}
.aura-btn-primary:hover { background: #6d28d9; }
.aura-btn-muted {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}
.aura-btn-muted:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}
.aura-btn-ghost {
    background: transparent;
    color: #94a3b8;
}
.aura-btn-ghost:hover {
    background: #f8fafc;
    color: #475569;
}
.aura-auth-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(15,23,42,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.aura-auth-overlay.hidden,
.aura-auth-box.hidden,
.aura-auth-form.hidden {
    display: none;
}
.aura-auth-box {
    position: relative;
    width: 100%;
    max-width: 384px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(15,23,42,0.25);
}
.aura-auth-box > * + * {
    margin-top: 16px;
}
.aura-auth-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #94a3b8;
    line-height: 1;
    cursor: pointer;
}
.aura-auth-close:hover {
    background: #f8fafc;
    color: #475569;
}
.aura-auth-title {
    margin: 0;
    color: #0f172a;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}
.aura-auth-hint {
    margin: 0;
    color: #94a3b8;
    font-size: 10px;
    line-height: 1.6;
}
.aura-auth-hint.is-center {
    text-align: center;
}
.aura-auth-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.aura-auth-social-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.15s;
}
.aura-auth-social-btn:hover {
    opacity: 0.86;
    transform: translateY(-1px);
}
.aura-auth-social-btn i {
    line-height: 1;
}
.aura-auth-social-btn.is-qq { background: #12b7f5; }
.aura-auth-social-btn.is-wechat { background: #07c160; }
.aura-auth-social-btn.is-github { background: #24292f; }
.aura-auth-social-btn.is-weibo { background: #e6162d; }
.aura-auth-social-btn.is-baidu { background: #4e6ef2; }
.aura-auth-social-btn.is-google { background: #4285f4; }
.aura-auth-social-btn.is-alipay { background: #1677ff; }
.aura-login-standard {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.aura-login-standard.hidden {
    display: none;
}
.aura-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 12px;
}
.aura-auth-divider::before,
.aura-auth-divider::after {
    content: '';
    height: 1px;
    flex: 1;
    background: #e2e8f0;
}
.aura-wechat-keyword-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
}
.aura-wechat-keyword-login.hidden {
    display: none;
}
.aura-wechat-keyword-qrcode {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
}
.aura-wechat-keyword-qrcode img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    padding: 8px;
}
.aura-wechat-keyword-empty {
    width: 100%;
    padding: 24px 12px;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    color: #94a3b8;
    text-align: center;
    font-size: 13px;
}
.aura-wechat-keyword-tip {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    text-align: center;
}
.aura-wechat-keyword-login .aura-auth-field {
    gap: 8px;
}
.aura-wechat-keyword-login .aura-auth-submit {
    margin-top: 2px;
}
.aura-wechat-back {
    margin-top: 0;
}
.aura-auth-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
}
.aura-auth-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.aura-password-policy {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin: 2px 2px 0;
    color: #64748b;
    font-size: 10px;
    line-height: 1.55;
}
.aura-password-policy i {
    margin-top: 2px;
    color: #6366f1;
}
.aura-auth-label {
    color: #475569;
}
.aura-auth-input {
    width: 100%;
    min-height: 40px;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #334155;
    font-size: 12px;
    outline: none;
    transition: border-color 0.15s, background-color 0.15s, box-shadow 0.15s;
}
.aura-auth-input:focus {
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.aura-auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #64748b;
    font-size: 10px;
}
.aura-auth-check {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.aura-auth-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: #2563eb;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
}
.aura-auth-link:hover {
    text-decoration: underline;
}
.aura-auth-link.is-block {
    width: 100%;
    display: block;
    text-align: center;
}
.aura-auth-msg {
    padding: 6px 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    text-align: center;
    font-size: 10px;
}
.aura-auth-msg.is-success {
    border-color: #a7f3d0;
    background: #ecfdf5;
    color: #059669;
}
.aura-auth-msg.is-error {
    border-color: #fecdd3;
    background: #fff1f2;
    color: #e11d48;
}
.aura-auth-submit {
    width: 100%;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 0;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s;
}
.aura-auth-submit:hover {
    background: #1d4ed8;
}
.aura-auth-submit.is-dark {
    background: #1e293b;
}
.aura-auth-submit.is-dark:hover {
    background: #0f172a;
}
.aura-auth-inline {
    margin: 8px 0 0;
    color: #94a3b8;
    text-align: center;
    font-size: 10px;
}
.aura-auth-legal {
    margin: -2px 0 0;
    color: #94a3b8;
    text-align: center;
    font-size: 10px;
    line-height: 1.7;
}
.aura-auth-legal a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}
.aura-auth-legal a:hover {
    text-decoration: underline;
}
.aura-legal-page {
    position: relative;
}
.aura-legal-hero {
    background: linear-gradient(135deg, rgba(239,246,255,.96), rgba(255,255,255,.98), rgba(250,245,255,.96));
}
.aura-legal-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
}
.aura-legal-sidebar {
    top: 96px;
    align-self: start;
}
.aura-legal-reader {
    min-width: 0;
    outline: none;
}
.aura-legal-section {
    scroll-margin-top: 112px;
}
.aura-legal-content {
    color: var(--color-slate-700);
    font-size: 14px;
    line-height: 1.9;
    overflow-x: auto;
    overflow-y: hidden;
}
.aura-legal-content p {
    margin: 0 0 12px;
}
.aura-legal-content h2,
.aura-legal-content h3,
.aura-legal-content h4 {
    margin: 24px 0 12px;
    color: var(--color-slate-900);
    font-weight: 700;
    line-height: 1.4;
}
.aura-legal-content ul,
.aura-legal-content ol {
    margin: 0 0 12px;
    padding-left: 20px;
}
.aura-legal-content li + li {
    margin-top: 6px;
}
.aura-legal-content a {
    color: var(--color-blue-600);
    text-decoration: none;
}
.aura-legal-content a:hover {
    text-decoration: underline;
}
.aura-legal-content img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
}
.aura-legal-content figure {
    max-width: 100%;
    margin: 24px 0;
}
.aura-legal-content figure img {
    margin-top: 0;
    margin-bottom: 10px;
}
.aura-legal-content figcaption,
.aura-legal-content .wp-caption-text {
    color: var(--color-slate-500);
    font-size: 12px;
    line-height: 1.65;
    text-align: center;
}
.aura-legal-content table {
    width: 100%;
    min-width: 560px;
    margin: 20px 0;
    border: 1px solid var(--color-slate-200);
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}
.aura-legal-content caption {
    margin-bottom: 10px;
    color: var(--color-slate-600);
    font-weight: 700;
    text-align: left;
}
.aura-legal-content th,
.aura-legal-content td {
    padding: 12px 14px;
    border-right: 1px solid var(--color-slate-200);
    border-bottom: 1px solid var(--color-slate-200);
    text-align: left;
    vertical-align: top;
}
.aura-legal-content th {
    background: var(--color-slate-50);
    color: var(--color-slate-900);
    font-weight: 700;
}
.aura-legal-content tr:nth-child(even) td {
    background: rgba(248, 250, 252, 0.72);
}
.aura-legal-content tr > :last-child {
    border-right: 0;
}
.aura-legal-content tbody tr:last-child > *,
.aura-legal-content table > tr:last-child > * {
    border-bottom: 0;
}
.aura-legal-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--color-slate-200);
    border-radius: 14px;
    background: linear-gradient(135deg, #fff, #f8fbff);
    color: var(--color-slate-700);
    text-decoration: none;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.aura-legal-nav-link:hover {
    border-color: rgba(37, 99, 235, 0.28);
    color: var(--color-blue-700);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}
.aura-legal-nav-link.is-active {
    border-color: rgba(99, 102, 241, 0.35);
    background: linear-gradient(135deg, rgba(219,234,254,0.9), rgba(243,232,255,0.9));
    color: var(--color-indigo-700);
    box-shadow: inset 3px 0 0 var(--color-blue-600), 0 8px 20px rgba(37, 99, 235, 0.08);
}
.aura-legal-quick-link.is-active {
    border-color: rgba(37, 99, 235, 0.35);
    background: var(--color-blue-600);
    color: #fff;
}
.aura-legal-nav-link .aura-legal-nav-text {
    min-width: 0;
    font-weight: 600;
}
.aura-legal-nav-link .aura-legal-nav-pill {
    flex-shrink: 0;
    padding: 3px 8px;
    border-radius: 9999px;
    background: rgba(99, 102, 241, 0.08);
    color: var(--color-indigo-600);
    font-size: 10px;
    font-weight: 700;
}
.aura-cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9998;
    display: flex;
    justify-content: center;
    pointer-events: none;
}
.aura-cookie-banner-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: min(100%, 980px);
    padding: 14px 18px;
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,246,255,.98));
    box-shadow: 0 20px 40px rgba(15, 23, 42, .12);
    pointer-events: auto;
}
.aura-cookie-banner-content p {
    margin: 0;
    color: #475569;
    font-size: 13px;
    line-height: 1.7;
}
.aura-cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.aura-cookie-banner-actions a {
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}
.aura-cookie-banner-actions a:hover {
    text-decoration: underline;
}
.aura-cookie-banner-actions button {
    min-height: 36px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.aura-cookie-banner-actions button:hover {
    filter: brightness(1.02);
}
[data-theme="dark"] .aura-cookie-banner-content {
    border-color: rgba(96, 165, 250, .2);
    background: linear-gradient(135deg, rgba(15, 23, 42, .98), rgba(30, 41, 59, .96));
}
[data-theme="dark"] .aura-cookie-banner-content p {
    color: #cbd5e1;
}
[data-theme="dark"] .aura-cookie-banner-actions a {
    color: #93c5fd;
}
.aura-auth-code-row {
    display: flex;
    gap: 8px;
}
.aura-auth-code-row .aura-auth-input {
    flex: 1;
}
.aura-auth-code-btn {
    min-height: 40px;
    flex: 0 0 auto;
    padding: 8px 12px;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.15s;
}
.aura-auth-code-btn:hover {
    background: #dbeafe;
}
.aura-auth-slider {
    width: 100%;
}
.aura-auth-slider-track {
    position: relative;
    height: 46px;
    overflow: hidden;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    background: linear-gradient(135deg, #eff6ff, #f8fafc);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
    user-select: none;
    touch-action: none;
}
.aura-auth-slider-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(124,58,237,.18));
    transition: width .12s ease;
    z-index: 1;
}
.aura-auth-slider-handle {
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 4;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    box-shadow: 0 8px 18px rgba(37,99,235,.24);
    cursor: grab;
    transition: box-shadow .15s ease, background .15s ease;
}
.aura-auth-slider-handle:active {
    cursor: grabbing;
}
.aura-auth-slider-handle:focus-visible {
    outline: 3px solid rgba(37,99,235,.25);
    outline-offset: 2px;
}
.aura-auth-slider-text {
    position: absolute;
    inset: 0 14px 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    pointer-events: none;
    z-index: 2;
}
.aura-auth-captcha.is-loading .aura-auth-slider-handle,
.aura-auth-captcha.is-verified .aura-auth-slider-handle {
    cursor: default;
}
.aura-auth-captcha.is-verified .aura-auth-slider-track {
    border-color: #86efac;
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}
.aura-auth-captcha.is-verified .aura-auth-slider-fill {
    background: linear-gradient(135deg, rgba(34,197,94,.24), rgba(37,99,235,.14));
    width: calc(100% - 46px) !important;
}
.aura-auth-captcha.is-verified .aura-auth-slider-handle {
    background: linear-gradient(135deg, #16a34a, #2563eb);
    box-shadow: 0 7px 16px rgba(22,163,74,.24);
}
.aura-auth-challenge {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}
.aura-auth-challenge-prompt {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    background: #f8fafc;
    color: #334155;
    font-weight: 700;
    letter-spacing: .04em;
}
.aura-auth-click-options {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.aura-auth-click-option {
    min-height: 42px;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    background: #fff;
    color: #334155;
    cursor: pointer;
}
.aura-auth-click-option:hover,
.aura-auth-click-option:focus-visible,
.aura-auth-click-option.is-selected {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1d4ed8;
}
.aura-auth-captcha.is-verified .aura-auth-slider-text {
    color: #15803d;
}
.aura-auth-captcha.is-error .aura-auth-slider-track {
    border-color: #fecdd3;
    background: #fff1f2;
}
.aura-auth-captcha.is-error .aura-auth-slider-text {
    color: #e11d48;
}
.aura-auth-tabs {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    font-size: 12px;
}
.aura-auth-login-tabs {
    padding: 4px;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    background: #f8fbff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}
.aura-auth-tab {
    flex: 1;
    padding: 10px 8px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #94a3b8;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}
.aura-auth-login-tabs .aura-auth-tab {
    border-bottom: 0;
    border-radius: 10px;
    color: #64748b;
}
.aura-auth-tab.is-active {
    border-bottom-color: #2563eb;
    color: #2563eb;
}
.aura-auth-login-tabs .aura-auth-tab.is-active {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    box-shadow: 0 8px 20px rgba(79, 70, 229, .18);
}
[data-theme="dark"] .aura-auth-box {
    background: #1e293b;
}
[data-theme="dark"] .aura-auth-title {
    color: #f8fafc;
}
[data-theme="dark"] .aura-auth-label,
[data-theme="dark"] .aura-auth-row,
[data-theme="dark"] .aura-auth-inline,
[data-theme="dark"] .aura-auth-hint {
    color: #cbd5e1;
}
[data-theme="dark"] .aura-auth-input {
    border-color: #334155;
    background: #0f172a;
    color: #e2e8f0;
}
[data-theme="dark"] .aura-auth-input:focus {
    border-color: #60a5fa;
    background: #111827;
}
[data-theme="dark"] .aura-auth-divider::before,
[data-theme="dark"] .aura-auth-divider::after {
    background: #334155;
}
[data-theme="dark"] .aura-auth-code-btn {
    border-color: rgba(37,99,235,0.45);
    background: rgba(37,99,235,0.16);
    color: #93c5fd;
}
[data-theme="dark"] .aura-auth-slider-track {
    border-color: #334155;
    background: #0f172a;
}
[data-theme="dark"] .aura-auth-slider-text {
    color: #94a3b8;
}
[data-theme="dark"] .aura-auth-captcha.is-verified .aura-auth-slider-track {
    border-color: rgba(34,197,94,.45);
    background: rgba(22,163,74,.13);
}
[data-theme="dark"] .aura-auth-captcha.is-error .aura-auth-slider-track {
    border-color: rgba(244,63,94,.55);
    background: rgba(127,29,29,.28);
}
[data-theme="dark"] .aura-auth-close:hover {
    background: rgba(148,163,184,0.12);
    color: #e2e8f0;
}
[data-theme="dark"] .aura-auth-tabs {
    border-bottom-color: #334155;
}
[data-theme="dark"] .aura-auth-login-tabs {
    border-color: #334155;
    background: #0f172a;
}
[data-theme="dark"] .aura-auth-legal {
    color: #64748b;
}
[data-theme="dark"] .aura-auth-legal a {
    color: #93c5fd;
}
[data-theme="dark"] .aura-legal-hero {
    background: linear-gradient(135deg, rgba(15,23,42,.94), rgba(15,23,42,.88), rgba(30,41,59,.94));
}
[data-theme="dark"] .aura-legal-sidebar,
[data-theme="dark"] .aura-legal-section {
    background: #0f172a;
}
[data-theme="dark"] .aura-legal-content {
    color: #cbd5e1;
}
[data-theme="dark"] .aura-legal-content h2,
[data-theme="dark"] .aura-legal-content h3,
[data-theme="dark"] .aura-legal-content h4 {
    color: #f8fafc;
}
[data-theme="dark"] .aura-legal-content img {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}
[data-theme="dark"] .aura-legal-content table {
    border-color: #334155;
    background: #0f172a;
}
[data-theme="dark"] .aura-legal-content th,
[data-theme="dark"] .aura-legal-content td {
    border-color: #334155;
}
[data-theme="dark"] .aura-legal-content th {
    background: #1e293b;
    color: #f8fafc;
}
[data-theme="dark"] .aura-legal-content tr:nth-child(even) td {
    background: rgba(30, 41, 59, 0.55);
}
[data-theme="dark"] .aura-legal-nav-link {
    border-color: #334155;
    background: linear-gradient(135deg, rgba(15,23,42,.92), rgba(30,41,59,.92));
    color: #cbd5e1;
}
[data-theme="dark"] .aura-legal-nav-link:hover {
    border-color: rgba(96,165,250,.35);
    color: #e0f2fe;
}
[data-theme="dark"] .aura-legal-nav-link.is-active {
    background: linear-gradient(135deg, rgba(30,64,175,.25), rgba(91,33,182,.22));
    color: #dbeafe;
}
[data-theme="dark"] .aura-legal-quick-link.is-active {
    border-color: rgba(96,165,250,.45);
    background: #2563eb;
    color: #fff;
}
[data-theme="dark"] .aura-legal-nav-link .aura-legal-nav-pill {
    background: rgba(96,165,250,.14);
    color: #bfdbfe;
}
@media (max-width: 1024px) {
    .aura-legal-layout {
        grid-template-columns: 1fr;
    }
    .aura-legal-sidebar {
        position: static;
        top: auto;
    }
    .aura-legal-sidebar nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}
@media (max-width: 640px) {
    .aura-legal-page {
        padding-top: 28px;
        padding-bottom: 40px;
    }
    .aura-legal-sidebar nav {
        grid-template-columns: 1fr;
    }
    .aura-legal-section {
        padding: 20px;
    }
}
.aura-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(15,23,42,0.45);
    overscroll-behavior: contain;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.aura-modal-overlay.hidden {
    display: none !important;
}
.aura-modal-overlay:not(.hidden):not(.is-closing) {
    animation: aura-modal-overlay-in .2s ease-out both;
}
.aura-modal-overlay:not(.hidden):not(.is-closing) .aura-modal-card {
    animation: aura-modal-card-in .24s cubic-bezier(.2,.8,.2,1) both;
    transform-origin: center;
}
.aura-modal-overlay.is-closing {
    animation: aura-modal-overlay-out .18s ease-in both;
}
.aura-modal-overlay.is-closing .aura-modal-card {
    animation: aura-modal-card-out .18s ease-in both;
    transform-origin: center;
}
@keyframes aura-modal-overlay-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes aura-modal-overlay-out {
    from { opacity: 1; }
    to { opacity: 0; }
}
@keyframes aura-modal-card-in {
    from { opacity: 0; transform: translateY(12px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes aura-modal-card-out {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(6px) scale(.99); }
}
.aura-modal-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    max-height: 90vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-sizing: border-box;
    padding: 24px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
body.aura-modal-open {
    overflow: hidden;
}
.aura-modal-close {
    position: absolute;
    right: 14px;
    top: 12px;
    color: #94a3b8;
    background: transparent;
    z-index: 10;
}
.aura-modal-close:hover {
    color: #475569;
    background: #f8fafc;
}

/* ================================================================
   Detail Tab System
   ================================================================ */
.aura-detail-tab {
    border: none !important;
    border-bottom: 2px solid transparent !important;
    color: var(--color-slate-500);
    transition: color 0.15s;
    outline: none !important;
    box-shadow: none !important;
}
.aura-detail-tab:hover { color: var(--color-slate-800); }
.aura-detail-tab[aria-selected="true"] {
    border-bottom-color: var(--color-slate-400) !important;
    color: var(--color-slate-800);
}
.aura-install-guide {
    font-size: 13px;
    line-height: 1.85;
    color: #475569;
}
.aura-install-guide ol {
    margin: 14px 0 0;
    padding-left: 1.35em;
}
.aura-install-guide li {
    margin: 10px 0;
}
.aura-install-guide strong {
    color: #0f172a;
}
.aura-install-tip {
    padding: 12px 14px;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    background: #eff6ff;
    color: #1e40af;
}

/* ================================================================
   Theme Widgets / Sidebar
   ================================================================ */
.aura-widget-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.aura-widget {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}
.aura-widget-title {
    margin: 0 0 12px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.aura-widget :where(ul, ol) {
    margin: 0;
    padding-left: 16px;
}
.aura-widget :where(li) {
    margin: 4px 0;
}
.aura-widget :where(a) {
    color: #2563eb;
    text-decoration: none;
}
.aura-widget :where(a:hover) {
    text-decoration: underline;
}
.aura-widget-soft-head {
    margin-bottom: 12px;
}
.aura-widget-soft-title {
    margin: 0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}
.aura-widget-soft-desc {
    margin: 6px 0 0;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.5;
}
.aura-widget-soft-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.aura-widget-soft-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: inherit;
    text-decoration: none !important;
    transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.aura-widget-soft-item:hover {
    border-color: #a855f7;
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(124,58,237,0.08);
}
.aura-widget-soft-thumb {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #eef2ff, #e2e8f0);
    color: #64748b;
}
.aura-widget-soft-thumb.is-mini {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
}
.aura-widget-soft-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.aura-widget-soft-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 auto;
}
.aura-widget-soft-name {
    color: #1f2937;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}
.aura-widget-soft-meta {
    color: #94a3b8;
    font-size: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
}
.aura-widget-soft-meta em {
  font-style: normal;
}

.aura-config-sidebar-component {
  margin-top: 18px;
}

.aura-widget-image-ad {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: #fff;
}

.aura-widget-image-ad img {
  display: block;
  width: 100%;
  height: auto;
}
.aura-widget-soft-ranking {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.aura-widget-soft-rank {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8fafc;
    color: inherit;
    text-decoration: none !important;
    border: 1px solid #e2e8f0;
    transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.aura-widget-soft-rank:hover {
    border-color: #a855f7;
    background: #fff;
    transform: translateY(-1px);
}
.aura-widget-soft-rank-no {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    background: #7c3aed;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 28px;
    text-align: center;
}
.aura-widget-soft-rank-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1 1 auto;
}
.aura-widget-soft-rank-body strong {
    color: #0f172a;
    font-size: 13px;
    line-height: 1.35;
}
.aura-widget-soft-rank-body span {
    color: #94a3b8;
    font-size: 10px;
}
.aura-widget-image-card,
.aura-widget-promo-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.aura-widget-image-card:hover,
.aura-widget-promo-card:hover {
    border-color: #a855f7;
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(124,58,237,0.12);
}
.aura-widget-image-card img {
    display: block;
    width: 100%;
    height: auto;
}
.aura-widget-promo-card {
    gap: 12px;
    padding: 12px;
    background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
}
.aura-widget-promo-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #ede9fe, #f8fafc);
    color: #7c3aed;
}
.aura-widget-promo-thumb.is-placeholder {
    font-size: 28px;
}
.aura-widget-promo-thumb img {
    display: block;
    width: 100%;
    height: auto;
}
.aura-widget-promo-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.aura-widget-promo-body strong {
    color: #1f2937;
    font-size: 13px;
    font-weight: 800;
}
.aura-widget-promo-body span {
    color: #64748b;
    font-size: 10px;
    line-height: 1.5;
}
