:root {
    --card-glass-bg: rgba(255, 255, 255, 0.07);
    --card-glass-border: rgba(255, 255, 255, 0.15);
    --card-text-main: #ffffff;
    --card-text-dim: rgba(255, 255, 255, 0.65);
    --card-accent: #7dd3fc;
    --card-font-main: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    --primary-blue: #3498db;
    --acc-glass-bg: rgba(255, 255, 255, 0.75);
    --anim-speed: 2.0s;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body, html {
    margin: 0; padding: 0; width: 100%; min-height: 100%;
    overflow-x: hidden; overflow-y: auto; scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #533483 100%) fixed;
    background-size: cover;
    transition: background 0.6s ease;
}

body.bg-loaded {
    background: url('https://v2.api.yunbai.icu/api/acg/api.php') no-repeat center center fixed;
    background-size: cover;
}

body::after {
    content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.35); z-index: 1; pointer-events: none;
}

body::before {
    content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.06; z-index: 1; pointer-events: none;
}

/* ===== Welcome Section (欢迎卡片) ===== */
#welcome-section {
    position: relative; height: 100dvh;
    display: flex; align-items: center; justify-content: center; z-index: 2;
}

.glass-container {
    position: relative; z-index: 10; width: 90%; max-width: 440px; height: 85dvh;
    background: var(--card-glass-bg); backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid var(--card-glass-border); border-radius: 40px;
    display: flex; flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4); color: var(--card-text-main);
}

.glass-container .header { padding: 40px 30px 20px; flex-shrink: 0; text-align: left; margin-bottom: 0; }
.glass-container .header h1 {
    font-weight: 800; letter-spacing: 2px; margin: 0; font-size: 1.8rem;
    background: linear-gradient(135deg, #fff 0%, var(--card-accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.tagline { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 4px; color: var(--card-accent); margin-top: 8px; font-weight: 600; }

.scroll-content {
    flex: 1; overflow-y: auto; padding: 0 30px 40px; scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
}
.scroll-content::-webkit-scrollbar { display: none; }

.glass-container section { margin-top: 30px; }

.glass-container h2 {
    font-size: 0.85rem; color: var(--card-text-dim); letter-spacing: 2px; margin-bottom: 15px;
    display: flex; align-items: center; border-left: none; padding-left: 0;
    background: none; margin-top: 0; padding-top: 0; padding-bottom: 0;
}
.glass-container h2::after { content: ""; flex: 1; height: 1px; background: rgba(255, 255, 255, 0.1); margin-left: 12px; }

.about-p { line-height: 1.8; font-size: 0.92rem; color: rgba(255, 255, 255, 0.9); font-weight: 300; }
.about-p p { margin-bottom: 18px; text-align: left; }
.highlight { color: var(--card-accent); font-weight: 500; }

/* ===== Countdown Styles ===== */
.countdown-wrapper {
    display: flex; justify-content: space-around; gap: 12px; padding: 20px 0;
    background: rgba(125, 211, 252, 0.08); border-radius: 20px; padding: 20px;
    border: 1px solid rgba(125, 211, 252, 0.15);
}

.countdown-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.countdown-value {
    font-size: 1.8rem; font-weight: 700; color: var(--card-accent); font-variant-numeric: tabular-nums;
    font-family: 'Courier New', monospace; letter-spacing: 2px;
}

.countdown-label {
    font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); letter-spacing: 1px; text-transform: uppercase;
}

.glass-container .footer {
    padding: 20px; text-align: center; font-size: 0.7rem; color: var(--card-text-dim);
    letter-spacing: 2px; flex-shrink: 0; font-style: italic;
}

/* ===== About Section (关于我们卡片) ===== */
#about-section { 
    position: relative; z-index: 2; width: 100%; padding-top: 0; 
    display: flex; flex-direction: column; align-items: center; 
}

#about-section .glass-container {
    width: 90%; max-width: 440px; height: 85dvh; margin-top: 40px; margin-bottom: 60px;
}

#about-section .online-section-header {
    margin-top: 60px; margin-bottom: 30px; width: 100%;
}

/* ===== Announcement Section ===== */
#announcement-section, #footer-section {
    position: relative; z-index: 2; width: 100%; padding-top: 2vh;
    background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
    display: flex; flex-direction: column; align-items: center;
}

.main-container {
    position: relative; z-index: 2; width: 92%; max-width: 820px;
    animation: slowFadeIn 2.5s cubic-bezier(0.22, 1, 0.36, 1); padding-bottom: 60px;
}

@keyframes slowFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.accordion-item {
    background: var(--acc-glass-bg); margin-bottom: 25px; border-radius: 28px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.15); overflow: hidden;
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.accordion-header {
    padding: 28px 35px; font-size: 1.25rem; font-weight: 600; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    color: #2c3e50; user-select: none;
}

.icon { font-size: 1.5rem; transition: transform var(--anim-speed) cubic-bezier(0.16, 1, 0.3, 1); color: var(--primary-blue); }

.accordion-content {
    max-height: 0; overflow: hidden; background: rgba(255, 255, 255, 0.98);
    transition: max-height var(--anim-speed) cubic-bezier(0.16, 1, 0.3, 1), opacity var(--anim-speed) ease;
    opacity: 0;
}

.accordion-item.active .accordion-content { max-height: 5000px; opacity: 1; border-top: 1px solid rgba(0,0,0,0.05); }
.accordion-item.active .icon { transform: rotate(180deg); }

.inner-text { padding: 40px 50px; }
.inner-text .header { text-align: center; margin-bottom: 30px; }
.inner-text h1 { font-size: 20pt; margin: 0; font-weight: bold; color: #2c3e50; }
.inner-text .subtitle { color: #7f8c8d; font-size: 10pt; margin-top: 8px; }
.inner-text h2 { font-size: 13pt; border-left: 5px solid; padding-left: 12px; margin-top: 30px; margin-bottom: 15px; padding-top: 5px; padding-bottom: 5px; font-weight: bold; display: block; letter-spacing: normal; }
.inner-text p, .inner-text li { font-size: 10.5pt; text-align: justify; line-height: 1.7; color: #333; margin-bottom: 12px; }
.inner-text ul, .inner-text ol { padding-left: 25px; margin-bottom: 15px; color: #333; }
.inner-text a { color: var(--primary-blue); text-decoration: none; font-weight: bold; }
.inner-text a:hover { text-decoration: underline; }

.warning-box { border: 1px solid #e74c3c; background-color: #fdf2f2; padding: 15px; border-radius: 5px; margin: 20px 0; font-size: 10.5pt; line-height: 1.6; }
.warning-title { color: #c0392b; font-weight: bold; margin-bottom: 5px; display: block; }
.warning-red { color: #d32f2f; font-weight: bold; }
.footer-note { margin-top: 50px; font-size: 9pt; color: #bdc3c7; text-align: center; border-top: 1px solid #eee; padding-top: 20px; }

.doc-1 h2 { color: #2980b9; border-left-color: #2980b9; background-color: #eff7fd; }
.doc-2 h1 { color: #1a237e; } .doc-2 h2 { color: #1a237e; border-left-color: #1a237e; background: #f0f2f5; }
.doc-3 h1 { color: #16a085; } .doc-3 h2 { color: #2c3e50; border-left-color: #16a085; background: #f0fdfa; }
.doc-4 h1 { color: #8e44ad; } .doc-4 h2 { color: #8e44ad; border-left-color: #8e44ad; background: #f4ecf7; }
.doc-5 h1 { color: #d35400; } .doc-5 h2 { color: #d35400; border-left-color: #d35400; background: #fdf2e9; }

/* ===== Project Link Grid ===== */
.project-link-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; margin: 18px 0 28px 0; }
.project-link-card {
    display: flex; align-items: center; gap: 14px; padding: 16px;
    background: #ffffff; border: 1px solid #e0e6ed; border-radius: 14px;
    text-decoration: none; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03); cursor: pointer;
}
.project-link-card:hover { border-color: #3498db; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(52, 152, 219, 0.12); }
.project-link-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(52, 152, 219, 0.08); color: #3498db; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.project-link-icon svg { width: 22px; height: 22px; }
.project-link-body { flex: 1; min-width: 0; }
.project-link-title { font-size: 10.5pt; font-weight: 600; color: #2c3e50; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 5px; }
.project-link-desc { font-size: 8.5pt; color: #7f8c8d; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.project-link-arrow { width: 28px; height: 28px; border-radius: 50%; background: #f8f9fa; color: #bdc3c7; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.project-link-card:hover .project-link-arrow { background: #3498db; color: #fff; }
.project-link-arrow svg { width: 14px; height: 14px; }

/* ===== Copyable Code Box ===== */
.copyable-code-box {
    background-color: #21252b; color: #abb2bf; border: 1px solid #181a1f;
    padding: 15px; margin: 15px 0; border-radius: 8px; font-size: 10.5pt;
    font-family: Consolas, monospace; word-break: break-all; position: relative;
    cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.copyable-code-box:hover { box-shadow: 0 6px 16px rgba(0,0,0,0.15); border-color: #16a085; transform: translateY(-1px); }
.copyable-code-box::after { content: "点击复制"; position: absolute; right: 12px; top: 12px; background: rgba(255,255,255,0.12); color: #fff; padding: 4px 8px; border-radius: 4px; font-size: 8pt; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.copyable-code-box:hover::after { opacity: 1; }

#custom-copy-toast {
    position: fixed; top: 40px; left: 50%; transform: translateX(-50%);
    background: rgba(39, 174, 96, 0.9); color: white; padding: 12px 24px;
    border-radius: 50px; font-size: 14px; font-weight: 500; z-index: 999999;
    opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3); display: flex; align-items: center; gap: 8px;
}
#custom-copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(10px); }

/* ===== Section Header Divider ===== */
.online-section-header {
    width: 92%; max-width: 820px; display: flex; align-items: center;
    gap: 14px; margin: 60px 0 30px;
}
.online-section-header .divider-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent); }
.online-section-header .label { font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; white-space: nowrap; }
.online-section-header .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--card-accent); animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0; }

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* ===== Timer Section ===== */
#timer-section { position: relative; z-index: 2; width: 100%; padding-top: 0; display: flex; flex-direction: column; align-items: center; }
.timer-container { position: relative; z-index: 2; width: 92%; max-width: 820px; padding-bottom: 20px; display: flex; flex-direction: column; gap: 18px; }
.timer-card {
    background: rgba(255, 255, 255, 0.08); border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25); overflow: hidden;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 24px 28px; display: flex; align-items: center; gap: 18px;
    transition: border-color 0.3s; min-height: 24px;
}
.timer-card:hover { border-color: rgba(125, 211, 252, 0.3); }
.timer-card-icon { width: 46px; height: 46px; border-radius: 14px; background: rgba(125,211,252,0.12); border: 1px solid rgba(125,211,252,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--card-accent); }
.timer-card-icon svg { width: 22px; height: 22px; }
.timer-card-body { flex: 1; min-width: 0; }
.timer-card-title { font-size: 0.78rem; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 10px; font-weight: 600; }
.timer-card-value { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; }
.timer-days { font-size: 1.8rem; font-weight: 700; color: rgba(255,255,255,0.94); font-variant-numeric: tabular-nums; }
.timer-days-unit { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-right: 4px; }
.timer-clock { font-size: 0.95rem; color: rgba(255,255,255,0.62); font-variant-numeric: tabular-nums; letter-spacing: 1px; font-family: Consolas, monospace; }

/* ===== Timer Accordion Variant（安全漏洞卡片：可点击展开/收起） ===== */
.timer-card.timer-accordion { display: block; padding: 0; }
.timer-accordion .timer-card-header { display: flex; align-items: center; gap: 14px; padding: 24px 28px; cursor: pointer; user-select: none; }
.timer-accordion .timer-card-icon { margin: 0; }
.timer-chevron { width: 20px; height: 20px; color: var(--card-accent); flex-shrink: 0; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.timer-accordion.active .timer-chevron { transform: rotate(180deg); }
.timer-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease; opacity: 0; }
.timer-accordion.active .timer-accordion-content { max-height: 400px; opacity: 1; }
.timer-accordion-inner { padding: 0 28px 26px 28px; }
.timer-accordion-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 18px; }
.timer-accordion-text { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.78); white-space: pre-wrap; }

/* ===== Online Section ===== */
#online-section { position: relative; z-index: 2; width: 100%; padding-top: 0; display: flex; flex-direction: column; align-items: center; }
.online-container { position: relative; z-index: 2; width: 92%; max-width: 820px; padding-bottom: 60px; }

.online-loading { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.skeleton-card { height: 70px; border-radius: 28px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); animation: skeleton-shimmer 1.5s ease-in-out infinite; }
@keyframes skeleton-shimmer { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } }

.online-accordion-item {
    background: rgba(255, 255, 255, 0.08); margin-bottom: 18px; border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25); overflow: hidden;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.14); transition: border-color 0.3s;
}
.online-accordion-item:hover { border-color: rgba(125, 211, 252, 0.3); }

.online-accordion-header { padding: 22px 28px; font-size: 1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.92); user-select: none; }
.online-accordion-header .title-wrap { display: flex; align-items: center; gap: 10px; }

.online-tag { font-size: 0.6rem; letter-spacing: 2px; padding: 3px 8px; border-radius: 20px; font-weight: 700; text-transform: uppercase; }
.online-tag.notice { background: rgba(230,126,34,0.2); color: #f39c12; border: 1px solid rgba(243,156,18,0.3); }
.online-tag.link   { background: rgba(39,174,96,0.2);  color: #2ecc71; border: 1px solid rgba(46,204,113,0.3); }
.online-tag.ad     { background: rgba(231,76,60,0.2);  color: #e74c3c; border: 1px solid rgba(231,76,60,0.3); }

.online-chevron-icon { width: 20px; height: 20px; color: var(--card-accent); flex-shrink: 0; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.online-accordion-item.active .online-chevron-icon { transform: rotate(180deg); }

.online-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease; opacity: 0; }
.online-accordion-item.active .online-accordion-content { max-height: 3000px; opacity: 1; }

.online-inner { padding: 5px 28px 28px; }
.online-inner-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 20px; }
.online-meta { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 14px; letter-spacing: 0.5px; }
.online-content-text { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.78); white-space: pre-wrap; }

.online-link-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.online-link-card { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; text-decoration: none; color: inherit; transition: background 0.25s, border-color 0.25s, transform 0.2s; }
.online-link-card:hover { background: rgba(46, 204, 113, 0.12); border-color: rgba(46, 204, 113, 0.35); transform: translateY(-2px); }
.online-link-card:active { transform: translateY(0); }
.online-link-card-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(46, 204, 113, 0.12); border: 1px solid rgba(46, 204, 113, 0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.online-link-card-body { flex: 1; min-width: 0; }
.online-link-card-name { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.92); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.online-link-card-domain { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.online-link-card-arrow { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: rgba(255,255,255,0.4); transition: background 0.2s, color 0.2s; }
.online-link-card:hover .online-link-card-arrow { background: rgba(46, 204, 113, 0.2); color: #2ecc71; }

.online-ad-list { display: flex; flex-direction: column; gap: 16px; }
.online-ad-item { padding: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; }
.online-ad-title { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 6px; }
.online-ad-meta { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.online-ad-intro { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 12px; }
.online-ad-btn { display: inline-flex; align-items: center; gap: 6px; background: rgba(231,76,60,0.8); color: #fff !important; padding: 6px 16px; font-size: 0.8rem; font-weight: bold; border-radius: 50px; text-decoration: none !important; transition: background 0.3s, transform 0.2s; box-shadow: 0 4px 14px rgba(231,76,60,0.3); }
.online-ad-btn:hover { background: rgba(192,57,43,0.9); transform: translateY(-1px); }

/* 赞助项目/广告链接：与「计时器」分割线一致的外观，图标点击展开/收回链接 */
.online-ad-link-divider { width: 100%; display: flex; align-items: center; gap: 14px; margin-top: 14px; }
.online-ad-link-divider .divider-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent); }
.online-ad-link-toggle {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; cursor: pointer; user-select: none;
    background: rgba(231,76,60,0.15); border: 1px solid rgba(231,76,60,0.35); color: #e74c3c;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.online-ad-link-toggle:hover { background: rgba(231,76,60,0.28); }
.online-ad-link-toggle .online-ad-link-toggle-icon { width: 14px; height: 14px; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.online-ad-link-toggle.expanded { transform: rotate(135deg); }
.online-ad-link-reveal { max-height: 0; overflow: hidden; text-align: center; opacity: 0; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease, margin-top 0.3s ease; }
.online-ad-link-reveal.expanded { max-height: 100px; opacity: 1; margin-top: 14px; }

.online-empty { text-align: center; padding: 50px 20px; color: rgba(255,255,255,0.3); font-size: 0.85rem; letter-spacing: 2px; }

/* ===== Footer ===== */
.site-footer { width: 100%; text-align: center; padding: 40px 0; z-index: 2; color: rgba(255, 255, 255, 0.6); font-size: 10pt; letter-spacing: 1.5px; }

/* ===== Effects ===== */
#yinghua { position: fixed !important; top: 0 !important; left: 0 !important; width: 100vw !important; height: 100vh !important; z-index: 99999 !important; pointer-events: none !important; }
.js-cursor-container { position: fixed !important; z-index: 100000 !important; pointer-events: none !important; }
canvas { position: fixed; z-index: 99998; pointer-events: none; }

@media (max-width: 600px) {
    .accordion-header { padding: 22px 25px; font-size: 1.1rem; }
    .inner-text { padding: 25px; }
    .inner-text h1 { font-size: 16pt; }
    .online-link-grid { grid-template-columns: 1fr; }
    .project-link-grid { grid-template-columns: 1fr; }
}
