/* ============================================================
   鳟帝皇科技集团 - 企业官网样式
   设计风格：专业企业行政风
   ============================================================ */

/* ---------- CSS变量 ---------- */
:root {
    --gold-primary: #C9A84C;
    --gold-light: #DFC278;
    --gold-dark: #9B8030;
    --bg-deep: #0D0D0D;
    --bg-mid: #1A1A1A;
    --bg-card: #222222;
    --bg-hover: #2A2A2A;
    --text-primary: #E8E8E8;
    --text-secondary: #A0A0A0;
    --text-dim: #666666;
    --border-color: #333333;
    --danger: #C0392B;
    --success: #27AE60;
    --info: #2980B9;
    --overlay-bg: rgba(0, 0, 0, 0.75);
    --header-height: 260px;
    --ticker-height: 72px;
    --nav-width: 200px;
    --max-content-width: 960px;
    --transition-speed: 0.3s;
    --font-heading: 'Microsoft YaHei', 'PingFang SC', 'Noto Sans SC', sans-serif;
    --font-body: 'Microsoft YaHei', 'PingFang SC', 'Noto Sans SC', sans-serif;
}

/* ---------- 全局重置 ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color var(--transition-speed);
}
a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   背景滚动层
   ============================================================ */

.bg-scroll-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-scroll-track {
    display: flex;
    flex-direction: column;
    animation: bgScrollUp 120s linear infinite;
    will-change: transform;
}

.bg-scroll-item {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
}

@keyframes bgScrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* ---------- 半透明遮罩 ---------- */
.content-overlay {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.15) 0%,
        rgba(13, 13, 13, 0.30) 50%,
        rgba(13, 13, 13, 0.45) 100%
    );
}

/* ============================================================
   顶部标题区
   ============================================================ */

.site-header {
    text-align: center;
    padding: 60px 20px 30px;
    position: relative;
}

.badge-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 28px;
    border: 2px solid rgba(201, 168, 76, 0.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.badge-placeholder:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}

.badge-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge-empty {
    color: var(--text-dim);
    font-size: 14px;
    letter-spacing: 4px;
}

.company-name {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 8px;
    margin-bottom: 8px;
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
}

.company-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    letter-spacing: 4px;
    font-weight: 300;
}

.header-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 24px auto 0;
}

/* ============================================================
   新闻滚动栏（与背景反向）
   ============================================================ */

.news-ticker-wrapper {
    display: flex;
    align-items: center;
    max-width: var(--max-content-width);
    margin: 36px auto;
    padding: 0 24px;
    height: var(--ticker-height);
    background: rgba(26, 26, 26, 0.45);
    border: 1px solid rgba(51, 51, 51, 0.5);
    border-left: 5px solid var(--gold-primary);
    border-radius: 4px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.news-ticker-label {
    flex-shrink: 0;
    padding: 0 28px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold-primary);
    border-right: 1px solid var(--border-color);
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.news-ticker-viewport {
    flex: 1;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.news-ticker-track {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: tickerScrollRight 30s linear infinite;
    will-change: transform;
}

.news-ticker-track:hover {
    animation-play-state: paused;
}

@keyframes tickerScrollRight {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.news-ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 36px;
    font-size: 15px;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: color var(--transition-speed);
    letter-spacing: 1px;
}

.news-ticker-item:hover {
    color: var(--gold-light);
}

.news-ticker-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--gold-primary);
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(201, 168, 76, 0.5);
}

.ticker-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 14px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.ticker-title {
    color: var(--text-secondary);
    transition: color var(--transition-speed);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 360px;
}

.news-ticker-item:hover .ticker-title {
    color: var(--gold-light);
}

.news-ticker-item:hover {
    color: var(--gold-light);
}

.news-ticker-loading {
    color: var(--text-dim);
    font-size: 13px;
    padding: 0 30px;
}

/* ============================================================
   板块导航
   ============================================================ */

.section-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 20px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(34, 34, 34, 0.5);
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 1px;
    transition: all var(--transition-speed);
    cursor: pointer;
}

.nav-item:hover {
    background: var(--bg-hover);
    border-color: var(--gold-dark);
    color: var(--gold-light);
}

.nav-item.active {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(201, 168, 76, 0.08);
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-dim);
    transition: background var(--transition-speed);
}

.nav-item:hover .nav-dot,
.nav-item.active .nav-dot {
    background: var(--gold-primary);
}

.admin-dot {
    background: var(--danger) !important;
}

.nav-admin-btn {
    border-color: rgba(192, 57, 43, 0.3);
}

.nav-admin-btn:hover {
    border-color: var(--danger);
    color: #E74C3C;
    background: rgba(192, 57, 43, 0.08);
}

/* ============================================================
   内容区域
   ============================================================ */

.sections-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 20px 60px;
}

.content-section {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(51, 51, 51, 0.6);
    border-radius: 6px;
    backdrop-filter: blur(8px);
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.content-section:hover {
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ========== 首页板块入口卡片 ========== */
.section-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 32px 40px;
    background: rgba(26, 26, 26, 0.35);
    border: 1px solid rgba(51, 51, 51, 0.4);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: border-color var(--transition-speed),
                box-shadow var(--transition-speed),
                transform var(--transition-speed);
    cursor: pointer;
}

.section-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(4px);
}

.section-card-header {
    flex: 1;
}

.section-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.section-card-arrow {
    flex-shrink: 0;
    font-size: 28px;
    color: var(--gold-primary);
    opacity: 0.4;
    transition: opacity var(--transition-speed), transform var(--transition-speed);
}

.section-card:hover .section-card-arrow {
    opacity: 1;
    transform: translateX(6px);
}

/* ========== 保留旧样式兼容板块详情页 ========== */

.section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.section-title-underline {
    width: 50px;
    height: 2px;
    background: var(--gold-primary);
    margin-bottom: 28px;
}

.section-content {
    color: var(--text-secondary);
    line-height: 1.9;
}

/* 文章卡片 */
.article-card {
    padding: 24px;
    margin-bottom: 20px;
    background: rgba(34, 34, 34, 0.35);
    border-left: 2px solid var(--gold-dark);
    border-radius: 3px;
    transition: all var(--transition-speed);
    backdrop-filter: blur(6px);
}

.article-card:hover {
    background: rgba(42, 42, 42, 0.8);
    border-left-color: var(--gold-primary);
}

.article-card:last-child {
    margin-bottom: 0;
}

.article-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.article-card-subtitle {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.article-card-body {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* 文章卡片内图片响应式 */
.article-card-body img,
.article-card-media img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.article-card-body h1, .article-card-body h2,
.article-card-body h3, .article-card-body h4 {
    color: var(--gold-light);
    margin: 16px 0 8px;
}

.article-card-body p {
    margin-bottom: 12px;
}

.article-card-body ul, .article-card-body ol {
    padding-left: 24px;
    margin-bottom: 12px;
}

.article-card-body blockquote {
    border-left: 3px solid var(--gold-dark);
    padding-left: 16px;
    margin: 16px 0;
    color: var(--text-dim);
    font-style: italic;
}

.article-card-media {
    margin: 16px 0;
    border-radius: 4px;
    overflow: hidden;
}

.article-card-media img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.article-card-media video {
    width: 100%;
    max-height: 500px;
    border-radius: 4px;
}

.article-card-date {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 12px;
}

.article-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-dim);
    font-size: 14px;
    letter-spacing: 2px;
}

/* ============================================================
   加载动画
   ============================================================ */

.loading-spinner {
    text-align: center;
    padding: 40px 20px;
}

.loading-spinner.small {
    padding: 20px;
}

.spinner-ring {
    width: 36px;
    height: 36px;
    margin: 0 auto 12px;
    border: 3px solid var(--border-color);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.small .spinner-ring {
    width: 24px;
    height: 24px;
    border-width: 2px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner p {
    color: var(--text-dim);
    font-size: 13px;
}

/* ============================================================
   页脚
   ============================================================ */

.site-footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--border-color);
    margin: 0 auto 24px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.footer-motto {
    font-size: 13px;
    color: var(--gold-dark);
    letter-spacing: 3px;
    margin-top: 8px;
}

.footer-links {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 10px;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px dotted var(--gold);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* ============================================================
   后台管理面板
   ============================================================ */

.admin-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.admin-overlay.active {
    display: flex;
}

.admin-panel {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: var(--bg-mid);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* 登录视图 */
.admin-login-view {
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.admin-logo h3 {
    font-size: 24px;
    color: var(--gold-primary);
    letter-spacing: 4px;
    margin-bottom: 6px;
}

.admin-logo p {
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-bottom: 36px;
}

.admin-key-input-group {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}

.admin-key-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-deep);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 14px;
    letter-spacing: 2px;
    outline: none;
    transition: border-color var(--transition-speed);
}

.admin-key-input:focus {
    border-color: var(--gold-primary);
}

.admin-key-input::placeholder {
    color: var(--text-dim);
    letter-spacing: 1px;
}

.admin-login-hint {
    margin-top: 18px;
    font-size: 11px;
    color: var(--text-dim);
}

/* 管理仪表盘 */
.admin-dashboard-view {
    position: relative;
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-deep);
    position: sticky;
    top: 0;
    z-index: 10;
}

.admin-toolbar h3 {
    font-size: 18px;
    color: var(--gold-primary);
    letter-spacing: 2px;
}

.admin-toolbar-actions {
    display: flex;
    gap: 10px;
}

/* 文章列表 */
.admin-article-list {
    padding: 20px 24px;
    max-height: 50vh;
    overflow-y: auto;
}

.admin-article-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    margin-bottom: 8px;
    background: var(--bg-card);
    border-radius: 4px;
    transition: background var(--transition-speed);
}

.admin-article-item:hover {
    background: var(--bg-hover);
}

.admin-article-info {
    flex: 1;
    min-width: 0;
}

.admin-article-info .article-section-badge {
    display: inline-block;
    font-size: 11px;
    padding: 2px 10px;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-primary);
    border-radius: 2px;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.admin-article-info .article-title-text {
    font-size: 14px;
    color: var(--text-primary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-article-info .article-meta-text {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 4px;
}

.admin-article-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.status-badge {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 1px;
}

.status-badge.published {
    background: rgba(39, 174, 96, 0.2);
    color: var(--success);
}

.status-badge.draft {
    background: rgba(102, 102, 102, 0.2);
    color: var(--text-dim);
}

/* 编辑器 */
.admin-editor {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-deep);
}

.admin-editor h4 {
    font-size: 16px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.editor-form label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    margin-top: 16px;
    letter-spacing: 1px;
}

.editor-form label:first-child {
    margin-top: 0;
}

.required {
    color: var(--danger);
}

.admin-input,
.admin-select,
.admin-textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition-speed);
}

.admin-input:focus,
.admin-select:focus,
.admin-textarea:focus {
    border-color: var(--gold-primary);
}

.admin-select {
    cursor: pointer;
}

.admin-textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.6;
}

.file-upload-area {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.admin-file-input {
    flex-shrink: 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.file-preview {
    flex: 1;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.file-preview img {
    max-width: 200px;
    max-height: 120px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.editor-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* 按钮 */
.admin-btn {
    padding: 9px 22px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-family: var(--font-body);
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.admin-btn.primary {
    background: var(--gold-primary);
    color: var(--bg-deep);
    font-weight: 600;
}

.admin-btn.primary:hover {
    background: var(--gold-light);
}

.admin-btn.secondary {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.admin-btn.secondary:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.admin-btn.danger {
    background: transparent;
    color: var(--danger);
    border: 1px solid rgba(192, 57, 43, 0.4);
}

.admin-btn.danger:hover {
    background: rgba(192, 57, 43, 0.1);
    border-color: var(--danger);
}

.admin-btn.small {
    padding: 5px 12px;
    font-size: 11px;
}

.admin-close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-dim);
    cursor: pointer;
    line-height: 1;
    z-index: 20;
    transition: color var(--transition-speed);
}

.admin-close-btn:hover {
    color: var(--text-primary);
}

/* ============================================================
   通知提示
   ============================================================ */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 1px;
    animation: toastIn 0.3s ease-out;
    max-width: 380px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.toast.success {
    background: rgba(39, 174, 96, 0.9);
    color: #fff;
}

.toast.error {
    background: rgba(192, 57, 43, 0.9);
    color: #fff;
}

.toast.info {
    background: rgba(41, 128, 185, 0.9);
    color: #fff;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   响应式适配
   ============================================================ */

@media (max-width: 768px) {
    .company-name {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .company-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .badge-placeholder {
        width: 80px;
        height: 80px;
    }

    /* 移动端正文字体缩小 */
    .article-card-body {
        font-size: 13px;
        line-height: 1.7;
    }

    .article-detail-body {
        font-size: 14px;
        line-height: 1.8;
    }

    .section-card-title {
        font-size: 16px;
    }

    .news-ticker-item {
        font-size: 12px;
    }

    .section-nav {
        gap: 4px;
        padding: 12px;
    }

    .nav-item {
        padding: 6px 12px;
        font-size: 11px;
    }

    .content-section {
        padding: 24px 18px;
        margin-bottom: 30px;
    }

    .section-card {
        padding: 24px 20px;
        margin-bottom: 16px;
    }

    .section-card-title {
        font-size: 18px;
    }

    .section-card-arrow {
        font-size: 22px;
    }

    .section-title {
        font-size: 20px;
    }

    .news-ticker-wrapper {
        margin: 20px 12px;
        height: 56px;
    }

    .news-ticker-label {
        padding: 0 14px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .news-ticker-item {
        padding: 0 16px;
        font-size: 13px;
    }

    .ticker-thumb {
        width: 36px;
        height: 36px;
    }

    .ticker-title {
        max-width: 180px;
    }

    .admin-panel {
        width: 96%;
        max-height: 90vh;
    }

    .admin-toolbar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .admin-key-input-group {
        flex-direction: column;
    }

    .admin-article-item {
        flex-direction: column;
        gap: 10px;
    }

    .admin-article-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* 打印样式 */
@media print {
    .bg-scroll-layer,
    .news-ticker-wrapper,
    .section-nav,
    .admin-overlay {
        display: none !important;
    }
    .content-overlay {
        background: #fff;
    }
    .content-section {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
}
