/**
 * 授权站首页 · 现代布局主题（固定蓝白配色）
 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-padding-top: 4.5rem;
}

.neon-body {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --primary-light: #6ea8fe;
    --primary-soft: #dbeafe;
    --primary-pale: #eff6ff;
    --success: #198754;
    --success-bg: #d1e7dd;
    --success-text: #0f5132;
    --success-border: #badbcc;
    --danger: #dc3545;
    --danger-bg: #f8d7da;
    --danger-text: #842029;
    --danger-border: #f5c2c7;
    --info-bg: #e7f1ff;
    --info-border: #9ec5fe;
    --bg: #f0f7ff;
    --card: #ffffff;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #bfdbfe;
    --shadow: 0 4px 24px rgba(13, 110, 253, 0.1);
    --input-placeholder: #94a3b8;
    --tabs-bg: #eff6ff;
    --version-tag-bg: #dbeafe;
    --version-tag-text: #1d4ed8;
    --badge-permanent-bg: #d1e7dd;
    --badge-permanent-text: #0f5132;
    --focus-ring: rgba(13, 110, 253, 0.18);

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    min-height: 100vh;
    color-scheme: light;
    overflow-x: hidden;
}

.neon-app {
    position: relative;
    min-height: 100vh;
}

.neon-bg {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 20%, rgba(13, 110, 253, 0.12), transparent 55%),
        radial-gradient(ellipse 55% 45% at 80% 15%, rgba(110, 168, 254, 0.15), transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(219, 234, 254, 0.9), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f0f7ff 45%, #e8f2ff 100%);
}

.neon-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13, 110, 253, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 110, 253, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 10%, transparent 78%);
}

.neon-header,
.neon-main,
.neon-footer {
    position: relative;
    z-index: 1;
}

.neon-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 12px rgba(13, 110, 253, 0.08);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .neon-header { background: #ffffff; }
}

.neon-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.neon-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    margin-right: auto;
}

.neon-brand-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: -0.04em;
    color: #fff;
    background: var(--primary);
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(13, 110, 253, 0.28);
}

.neon-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.1rem;
}

.neon-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s;
}

.neon-nav a:hover { color: var(--primary); }

.neon-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.neon-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.neon-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.4rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background: #fff;
    cursor: pointer;
}

.neon-nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
}

.neon-nav-toggle[aria-expanded="true"] .neon-nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.neon-nav-toggle[aria-expanded="true"] .neon-nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.neon-nav-toggle[aria-expanded="true"] .neon-nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.neon-nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.5rem 1.25rem 0.85rem;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
}

.neon-nav-mobile.is-open {
    display: flex;
}

.neon-nav-mobile a {
    display: block;
    padding: 0.65rem 0.5rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9375rem;
    border-radius: 0.45rem;
}

.neon-nav-mobile a:hover {
    color: var(--primary);
    background: var(--primary-pale);
}

.neon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    border-radius: 0.55rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
}

.neon-btn-primary {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.28);
}

.neon-btn-primary:hover {
    transform: translateY(-1px);
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.34);
}

.neon-btn-ghost {
    color: var(--primary);
    background: #fff;
    border: 1px solid var(--border);
}

.neon-btn-ghost:hover {
    border-color: var(--primary);
    background: var(--primary-pale);
}

.neon-btn-glow {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.28);
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.neon-btn-glow:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.neon-main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 5.75rem 1.25rem 3rem;
}

.neon-hero {
    text-align: center;
    padding: 2.5rem 0 3rem;
}

.neon-hero-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    border: 4px solid #fff;
    box-shadow: 0 10px 28px rgba(13, 110, 253, 0.28);
}

.neon-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--primary-dark);
    background: #fff;
    border: 1px solid var(--border);
    margin-bottom: 1.25rem;
}

.neon-hero-title {
    font-size: clamp(1.75rem, 1.2rem + 2.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 0.85rem;
}

.neon-gradient-text {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.neon-hero-sub {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 0.5rem;
}

.neon-hero-hint {
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 32rem;
    margin: 0 auto 1.5rem;
}

.neon-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.neon-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
    padding: 0 0 1.15rem;
    margin-bottom: 1.15rem;
    border-bottom: 1px solid var(--border);
}

.neon-highlight-panel {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.35rem 1.35rem 1.2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(13, 110, 253, 0.08);
}

.neon-highlight-intro {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.65;
    text-align: center;
    margin-bottom: 1.15rem;
}

.neon-highlight-foot {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.55;
}

.neon-cardkey-tip {
    padding: 0.85rem 1rem;
    border-radius: 0.65rem;
    background: var(--info-bg);
    border: 1px solid var(--info-border);
    font-size: 0.8125rem;
    color: #334155;
    line-height: 1.6;
    text-align: left;
}

.neon-cardkey-tip strong { color: var(--primary-dark); }

.neon-cardkey-tip a {
    display: inline-block;
    margin-left: 0.35rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.neon-cardkey-tip a:hover { text-decoration: underline; }

.neon-cardkey-tip--inline {
    margin-bottom: 0.85rem;
}

.neon-screenshot-tip {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: -0.65rem 0 1rem;
}

.neon-screenshot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 680px;
    margin: 0 auto;
}

.neon-screenshot-item {
    margin: 0;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.neon-screenshot-zoom {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: #f8fafc;
    cursor: zoom-in;
    position: relative;
    text-align: center;
}

.neon-screenshot-zoom:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.neon-screenshot-zoom img {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 520px;
    height: auto;
    object-fit: contain;
    object-position: center top;
    margin: 0 auto;
}

.neon-screenshot-zoom-hint {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.2rem 0.55rem;
    font-size: 0.75rem;
    color: #fff;
    background: rgba(15, 23, 42, 0.58);
    border-radius: 999px;
    pointer-events: none;
}

.neon-screenshot-item figcaption {
    padding: 0.65rem 0.85rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    border-top: 1px solid var(--border);
}

.neon-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.neon-lightbox[hidden] {
    display: none;
}

.neon-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
    cursor: zoom-out;
}

.neon-lightbox-panel {
    position: relative;
    z-index: 1;
    width: min(96vw, 1200px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.neon-lightbox-close {
    position: absolute;
    top: -0.25rem;
    right: 0;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #1e293b;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.neon-lightbox-close:hover {
    background: #fff;
}

.neon-lightbox-img {
    display: block;
    max-width: 100%;
    max-height: calc(92vh - 3.5rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.neon-lightbox-caption {
    margin: 0;
    padding: 0.35rem 0.75rem;
    font-size: 0.875rem;
    color: #f8fafc;
    text-align: center;
}

.neon-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.neon-feature-card {
    padding: 1rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid var(--border);
}

.neon-feature-card-head {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-bottom: 0.65rem;
}

.neon-feature-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    background: var(--primary-pale);
    border: 1px solid var(--border);
}

.neon-feature-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.neon-feature-summary {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.neon-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.neon-feature-list li {
    padding: 0.45rem 0;
    border-top: 1px dashed color-mix(in srgb, var(--border) 80%, transparent);
}

.neon-feature-list li:first-child {
    border-top: none;
    padding-top: 0;
}

.neon-feature-name {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.15rem;
}

.neon-feature-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.neon-stat { text-align: center; }

.neon-stat-val {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.neon-stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.neon-section {
    margin-top: 2.5rem;
}

.neon-section-tag {
    text-align: center;
    font-size: 0.6875rem;
    letter-spacing: 0.28em;
    color: var(--primary);
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.neon-section-title {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.neon-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 280px));
    gap: 1rem;
    justify-content: center;
    max-width: 920px;
    margin: 0 auto;
}

.neon-tool-card {
    display: block;
    padding: 1.1rem 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--border);
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}

.neon-tool-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-light);
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.12);
}

.neon-tool-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
    background: var(--primary-pale);
    border: 1px solid var(--border);
    overflow: hidden;
}

.neon-tool-icon img { width: 100%; height: 100%; object-fit: cover; }

.neon-tool-name {
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.neon-tool-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.neon-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    border: 1px dashed var(--border);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
}

.neon-core-card {
    max-width: 520px;
    margin: 0 auto;
    padding: 1.5rem 1.35rem 1.2rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.neon-core-card .title {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.neon-core-card .subtitle {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.neon-core-meta {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
}

.version-tag {
    display: inline-block;
    padding: 0.06rem 0.3rem;
    border-radius: 0.2rem;
    font-size: 0.75rem;
    background: var(--version-tag-bg);
    color: var(--version-tag-text);
    font-weight: 600;
}

/* —— 授权表单（与 index-portal.js 共用类名）—— */
.tabs {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    padding: 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
}

.tab-btn {
    flex: 1;
    padding: 0.55rem 0.75rem;
    border: 1px solid transparent;
    border-bottom: none;
    border-radius: 0.45rem 0.45rem 0 0;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: -1px;
    transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.tab-btn:hover:not(.active) {
    color: var(--primary);
    background: var(--primary-pale);
}

.tab-btn.active {
    color: var(--primary);
    font-weight: 600;
    background: #fff;
    border-color: var(--border);
    border-bottom-color: #fff;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.form-group { margin-bottom: 0.85rem; }

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.input {
    width: 100%;
    padding: 0.72rem 0.9rem;
    font-size: 0.9375rem;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.input::placeholder { color: var(--input-placeholder); }

.input:hover {
    border-color: var(--primary-light);
}

.input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--focus-ring);
}

.btn {
    display: inline-block;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.72rem 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background: var(--primary);
    border: 1px solid transparent;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.28);
}

.btn-download {
    color: var(--primary);
    background: var(--primary-pale);
    border: 1px solid var(--border);
    box-shadow: none;
}

.btn-download:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    background: #fff;
}

.result-wrap { margin-top: 1rem; }

.result-box {
    padding: 0.85rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    border-left: 3px solid transparent;
}

.result-box.authorized {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    border-left-color: var(--success);
    color: var(--success-text);
}

.result-box.unauthorized {
    background: var(--danger-bg);
    border: 1px solid var(--danger-border);
    border-left-color: var(--danger);
    color: var(--danger-text);
}

.result-box.error {
    background: var(--info-bg);
    border: 1px solid var(--info-border);
    border-left-color: var(--primary);
    color: var(--primary-dark);
}

.result-status { font-weight: 700; margin-bottom: 0.35rem; }
.result-msg { margin-bottom: 0.35rem; }
.result-days { font-size: 0.8125rem; margin-top: 0.25rem; }
.result-warn { color: var(--danger); font-size: 0.8125rem; margin-top: 0.35rem; }

.badge-permanent {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: var(--badge-permanent-bg);
    color: var(--badge-permanent-text);
    font-size: 0.8125rem;
    font-weight: 600;
}

.spinner {
    display: inline-block;
    width: 0.9em;
    height: 0.9em;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    border-radius: 50%;
    animation: neonSpin 0.7s linear infinite;
    vertical-align: -0.1em;
    margin-right: 0.35rem;
}

@keyframes neonSpin { to { transform: rotate(360deg); } }

.neon-footer {
    text-align: center;
    padding: 1.5rem 1rem 2rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .neon-nav-desktop { display: none; }
    .neon-nav-toggle { display: flex; }
    .neon-header-cta { padding: 0.45rem 0.75rem; font-size: 0.75rem; }
    .neon-stats { gap: 1.25rem 2rem; }
    .neon-feature-grid { grid-template-columns: 1fr; }
    .neon-highlight-panel { padding: 1.1rem 1rem; }
}

@media (max-width: 480px) {
    .neon-hero { padding-top: 1.5rem; }
    .neon-tools-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 360px;
    }
}

.neon-notices {
    max-width: 920px;
    margin: 0 auto 1.25rem;
    padding: 0 1.25rem;
}
.neon-notice-item {
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    margin-bottom: 8px;
    overflow: hidden;
}
.neon-notice-toggle {
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 0.875rem;
    color: #1e3a5f;
}
.neon-notice-top {
    display: inline-block;
    margin-right: 6px;
    padding: 1px 6px;
    border-radius: 4px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.75rem;
}
.neon-notice-body {
    display: none;
    padding: 0 14px 12px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
}
.neon-notice-item.open .neon-notice-body {
    display: block;
}
