:root {
    --primary: #06b6d4;
    --accent: #ec4899;
    --bg: #0c0a1a;
    --text: #e0f2fe;
    --border: 2px solid #06b6d4;
    --shadow: 6px 6px 0px 0px rgba(6,182,212,0.5);
    --font-main: 'Inter', sans-serif;
  }
  * { margin:0; padding:0; box-sizing:border-box; border-radius:0 !important; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  a { color: var(--primary); text-decoration: none; }
  a:hover { color: var(--accent); }

  /* 滚动条 */
  ::-webkit-scrollbar { width: 8px; background: #1a1730; }
  ::-webkit-scrollbar-thumb { background: var(--primary); }

  /* 顶部进度条 */
  #progress-bar {
    position: fixed; top: 0; left: 0; width: 0%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 99999;
    transition: width 0.1s linear;
  }

  /* 导航栏 */
  .navbar-kb {
    background: rgba(12,10,26,0.9);
    backdrop-filter: blur(8px);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 4px 0 var(--accent);
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
    z-index: 9990;
  }
  .navbar-kb.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(12,10,26,0.75);
    box-shadow: 0 2px 20px rgba(6,182,212,0.4);
  }
  .navbar-brand-kb {
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--primary) !important;
    text-shadow: 3px 3px 0 var(--accent);
    letter-spacing: -0.02em;
  }
  .navbar-brand-kb i { color: var(--accent); margin-right: 6px; }
  .nav-link-kb {
    color: var(--text) !important;
    font-weight: 600;
    margin: 0 8px;
    position: relative;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
  }
  .nav-link-kb:hover {
    border-bottom-color: var(--accent);
    color: var(--accent) !important;
  }
  .navbar-toggler-kb {
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
  }

  /* Hero 统计区 */
  .hero-stats {
    background: linear-gradient(135deg, #120f2a 0%, #1a1730 100%);
    border: 3px solid var(--primary);
    border-top: none;
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .hero-stats::before {
    content: "";
    position: absolute; top:0; right:0; width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(236,72,153,0.3) 0%, transparent 70%);
  }
  .stat-number {
    font-family: 'Courier New', monospace;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(224,242,254,0.7);
  }
  .hero-title {
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--text);
    text-transform: uppercase;
    border-left: 8px solid var(--accent);
    padding-left: 1rem;
  }

  /* 区块标题 */
  .section-title {
    font-weight: 900;
    font-size: 1.6rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 2.5rem 0 1.2rem;
    color: var(--text);
  }
  .section-title::before {
    content: "";
    display: inline-block;
    width: 18px; height: 18px;
    background: var(--accent);
    border: 2px solid var(--primary);
    transform: rotate(45deg);
  }
  .section-title .badge-kb {
    background: var(--primary);
    color: #0c0a1a;
    font-size: 0.7rem;
    padding: 2px 8px;
    font-weight: 800;
  }

  /* 榜单区 */
  .rank-board {
    border: 3px solid var(--primary);
    background: #120f2a;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 4px 4px 0 var(--accent);
  }
  .rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 6px;
    border-bottom: 1px dashed rgba(6,182,212,0.3);
    cursor: pointer;
    transition: background 0.2s;
  }
  .rank-item:hover { background: rgba(6,182,212,0.1); }
  .rank-medal {
    font-family: 'Courier New', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid;
  }
  .rank-medal.gold { color: #fbbf24; border-color: #fbbf24; background: rgba(251,191,36,0.1); }
  .rank-medal.silver { color: #cbd5e1; border-color: #cbd5e1; background: rgba(203,213,225,0.1); }
  .rank-medal.bronze { color: #d97706; border-color: #d97706; background: rgba(217,119,6,0.1); }
  .rank-medal.plain { color: var(--primary); border-color: var(--primary); background: rgba(6,182,212,0.1); }
  .rank-title { font-weight: 600; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .rank-score { font-family: 'Courier New', monospace; font-weight: 700; color: var(--accent); }

  /* 影片卡片 */
  .movie-card {
    background: #120f2a;
    border: 2px solid var(--primary);
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
  }
  .movie-card:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 var(--accent);
    border-color: var(--accent);
  }
  .movie-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: #1a1730;
  }
  .movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .play-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(12,10,26,0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .movie-card:hover .play-overlay { opacity: 1; }
  .play-icon {
    font-size: 2.5rem;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent);
    border: 3px solid var(--accent);
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(12,10,26,0.7);
    transform: scale(0.8);
    transition: transform 0.3s;
  }
  .movie-card:hover .play-icon { transform: scale(1); }
  .movie-info {
    padding: 0.6rem 0.7rem;
  }
  .movie-title {
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
    color: var(--text);
  }
  .movie-meta {
    font-size: 0.7rem;
    color: rgba(224,242,254,0.6);
    font-family: 'Courier New', monospace;
  }
  .movie-rating {
    position: absolute;
    top: 6px; right: 6px;
    background: rgba(12,10,26,0.8);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 2px 6px;
    font-weight: 800;
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    z-index: 2;
  }

  /* 分类筛选栏 */
  .category-sidebar {
    border: 3px solid var(--primary);
    background: #120f2a;
    padding: 1rem;
    position: sticky;
    top: 80px;
    box-shadow: 4px 4px 0 var(--accent);
  }
  .category-title {
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
    color: var(--primary);
  }
  .cat-tag {
    display: inline-block;
    padding: 4px 12px;
    border: 2px solid var(--primary);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 600;
    margin: 3px;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
  }
  .cat-tag:hover, .cat-tag.active {
    background: var(--primary);
    color: #0c0a1a;
    box-shadow: 2px 2px 0 var(--accent);
  }

  /* 精选片单 */
  .featured-list-item {
    border-left: 4px solid var(--primary);
    background: rgba(6,182,212,0.05);
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    transition: all 0.2s;
  }
  .featured-list-item:hover { border-left-color: var(--accent); background: rgba(236,72,153,0.05); }
  .featured-list-item .fl-title { font-weight: 700; color: var(--primary); }
  .featured-list-item .fl-comment { font-size: 0.85rem; color: rgba(224,242,254,0.8); }

  /* FAQ */
  .faq-item {
    border: 2px solid rgba(6,182,212,0.3);
    margin-bottom: 1rem;
    background: #120f2a;
  }
  .faq-q {
    padding: 0.8rem 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(6,182,212,0.2);
    background: rgba(6,182,212,0.1);
  }
  .faq-q i { transition: transform 0.3s; color: var(--accent); }
  .faq-a {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    color: rgba(224,242,254,0.85);
  }

  /* 友情链接 */
  .friend-links {
    border: 3px solid var(--primary);
    background: #120f2a;
    padding: 1.2rem;
    margin: 3rem 0 1.5rem;
    box-shadow: 4px 4px 0 var(--accent);
  }
  .friend-links h5 { font-weight: 900; color: var(--primary); text-transform: uppercase; }
  .friend-links a { margin-right: 12px; color: var(--text); font-size: 0.85rem; border-bottom: 1px dashed var(--primary); }
  .friend-links a:hover { color: var(--accent); }

  /* 页脚 */
  .footer-kb {
    border-top: 4px solid var(--primary);
    background: #0a0817;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
  }
  .footer-kb .brand {
    font-size: 2rem; font-weight: 900; color: var(--primary);
    text-shadow: 3px 3px 0 var(--accent);
  }

  /* 弹窗 */
  .modal-kb {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10000;
    background: rgba(12,10,26,0.92);
    backdrop-filter: blur(10px);
    overflow-y: auto;
  }
  .modal-kb.show { display: flex; align-items: center; justify-content: center; }
  .modal-backdrop-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    filter: blur(20px) brightness(0.3);
    z-index: -1;
  }
  .modal-content-kb {
    background: rgba(18,15,42,0.95);
    border: 3px solid var(--primary);
    box-shadow: 8px 8px 0 var(--accent);
    max-width: 600px;
    width: 90%;
    padding: 2rem;
    position: relative;
    z-index: 1;
    margin: 2rem auto;
  }
  .modal-close {
    position: absolute; top: 12px; right: 16px;
    font-size: 2rem;
    color: var(--accent);
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    font-weight: 900;
  }
  .modal-close:hover { transform: scale(1.2); }
  .modal-title { font-weight: 900; font-size: 1.6rem; color: var(--primary); margin-bottom: 0.5rem; }
  .modal-sub { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 1rem; }
  .modal-tag { background: rgba(6,182,212,0.2); padding: 2px 10px; font-size: 0.75rem; border: 1px solid var(--primary); }
  .modal-score { font-family: 'Courier New', monospace; font-size: 2rem; font-weight: 900; color: var(--accent); }
  .modal-desc { font-size: 0.9rem; line-height: 1.7; margin: 1rem 0; color: rgba(224,242,254,0.9); }
  .modal-staff { font-size: 0.8rem; color: rgba(224,242,254,0.6); }

  /* 等宽字体数据 */
  .mono { font-family: 'Courier New', monospace; }

  /* 步骤条 */
  .steps-row { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
  .step-item { flex: 1; min-width: 180px; border: 2px solid var(--primary); padding: 1rem; background: #120f2a; position: relative; }
  .step-num { font-size: 2rem; font-weight: 900; color: var(--accent); font-family: 'Courier New', monospace; }
  .step-text { font-size: 0.85rem; color: rgba(224,242,254,0.8); }

  /* 通用 */
  .box-shadow-kb { box-shadow: 4px 4px 0 var(--accent); }
  .border-kb { border: 2px solid var(--primary); }
  .bg-dark-kb { background: #120f2a; }
  .text-accent { color: var(--accent); }
  .text-primary-kb { color: var(--primary); }

  @media (max-width: 768px) {
    .navbar-brand-kb { font-size: 1.4rem; }
    .stat-number { font-size: 2rem; }
    .hero-title { font-size: 1.6rem; }
    .section-title { font-size: 1.2rem; }
    .category-sidebar { position: static; margin-bottom: 1rem; }
  }

/* --- 子页面追加 --- */
/* 页面专属补充样式 */
        .about-hero {
            padding: 60px 0 30px;
            border-bottom: var(--border);
            margin-bottom: 40px;
        }
.about-hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text);
        }
.about-hero h1 span {
            color: var(--accent);
        }
.about-hero .lead {
            font-size: 1.05rem;
            color: rgba(224, 242, 254, 0.8);
            max-width: 720px;
            line-height: 1.8;
            margin-top: 16px;
        }
.about-section {
            margin-bottom: 50px;
        }
.about-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.about-section h2 i {
            color: var(--accent);
        }
.about-section p {
            color: rgba(224, 242, 254, 0.9);
            line-height: 1.85;
            margin-bottom: 12px;
        }
.about-list {
            list-style: none;
            padding-left: 0;
        }
.about-list li {
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            color: rgba(224, 242, 254, 0.9);
            line-height: 1.7;
        }
.about-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 8px;
            color: var(--primary);
            font-size: 0.9rem;
        }
.about-highlight {
            background: rgba(6, 182, 212, 0.08);
            border-left: 3px solid var(--primary);
            padding: 16px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
.about-highlight p {
            margin-bottom: 0;
            font-style: italic;
        }
.about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
.about-card {
            background: rgba(6, 182, 212, 0.05);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 12px;
            padding: 24px;
            transition: transform 0.2s, box-shadow 0.2s;
        }
.about-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
.about-card .card-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 14px;
        }
.about-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
        }
.about-card p {
            font-size: 0.95rem;
            color: rgba(224, 242, 254, 0.85);
            line-height: 1.7;
        }
.about-hero h1 {
                font-size: 1.8rem;
            }
.about-section h2 {
                font-size: 1.25rem;
            }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .disclaimer-section {
            padding: 60px 0;
        }
.disclaimer-card {
            background: rgba(12, 10, 26, 0.8);
            border: 2px solid #06b6d4;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 6px 6px 0px 0px rgba(6, 182, 212, 0.5);
        }
.disclaimer-card h2 {
            color: #06b6d4;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            border-left: 4px solid #ec4899;
            padding-left: 15px;
        }
.disclaimer-card h3 {
            color: #ec4899;
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 25px;
            margin-bottom: 15px;
        }
.disclaimer-card p, .disclaimer-card li {
            color: #e0f2fe;
            line-height: 1.8;
            font-size: 0.95rem;
        }
.disclaimer-card ul, .disclaimer-card ol {
            padding-left: 20px;
            margin-bottom: 15px;
        }
.disclaimer-card li {
            margin-bottom: 8px;
        }
.disclaimer-highlight {
            background: rgba(236, 72, 153, 0.1);
            border: 1px solid #ec4899;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }
.disclaimer-highlight p {
            margin-bottom: 0;
        }
.disclaimer-date {
            color: rgba(224, 242, 254, 0.6);
            font-size: 0.85rem;
            text-align: right;
            margin-top: 20px;
            font-style: italic;
        }
.contact-info {
            background: rgba(6, 182, 212, 0.1);
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
        }
.contact-info p {
            margin-bottom: 5px;
        }
.disclaimer-card {
                padding: 20px;
            }
.disclaimer-card h2 {
                font-size: 1.2rem;
            }

/* --- 子页面追加 --- */
/* 页面专属少量样式 */
        .privacy-hero {
            padding: 80px 0 40px;
            text-align: center;
        }
.privacy-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            text-shadow: 3px 3px 0px rgba(6,182,212,0.3);
            margin-bottom: 15px;
        }
.privacy-hero p {
            color: var(--text);
            opacity: 0.85;
            max-width: 600px;
            margin: 0 auto;
        }
.privacy-section {
            padding: 30px 0;
            border-bottom: 1px solid rgba(6,182,212,0.2);
        }
.privacy-section:last-child {
            border-bottom: none;
        }
.privacy-section h2 {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 18px;
            position: relative;
            padding-left: 18px;
        }
.privacy-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 22px;
            background: var(--accent);
            border-radius: 2px;
        }
.privacy-section p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 15px;
            opacity: 0.9;
        }
.privacy-section ul {
            color: var(--text);
            padding-left: 20px;
            margin-bottom: 15px;
        }
.privacy-section li {
            margin-bottom: 8px;
            line-height: 1.7;
            opacity: 0.9;
        }
.privacy-highlight {
            background: rgba(6,182,212,0.08);
            border-left: 4px solid var(--primary);
            padding: 20px 25px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
.privacy-highlight p {
            margin-bottom: 0;
            font-size: 0.95rem;
        }
.privacy-update {
            margin-top: 40px;
            padding: 20px;
            background: rgba(236,72,153,0.08);
            border: 1px solid rgba(236,72,153,0.3);
            border-radius: 8px;
            text-align: center;
            color: var(--text);
            font-size: 0.9rem;
        }
.privacy-contact {
            color: var(--primary);
            font-weight: 600;
        }
.privacy-hero h1 {
                font-size: 2rem;
            }
.privacy-section h2 {
                font-size: 1.3rem;
            }

/* --- 子页面追加 --- */
/* 页面专属样式 - 网站地图页 */
        .sitemap-hero {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, rgba(6,182,212,0.08) 0%, rgba(236,72,153,0.05) 100%);
            border-bottom: 1px solid rgba(6,182,212,0.15);
        }
.sitemap-hero .hero-title {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 15px;
            letter-spacing: -0.02em;
        }
.sitemap-hero .hero-sub {
            color: rgba(224,242,254,0.75);
            font-size: 1.05rem;
            max-width: 700px;
            margin: 0 auto;
        }
.sitemap-section {
            padding: 50px 0;
        }
.sitemap-card {
            background: rgba(6,182,212,0.04);
            border: 1px solid rgba(6,182,212,0.15);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
.sitemap-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }
.sitemap-card .card-icon {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
.sitemap-card h3 {
            color: var(--text);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: -0.01em;
        }
.sitemap-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.sitemap-links li {
            margin-bottom: 10px;
        }
.sitemap-links a {
            color: rgba(224,242,254,0.8);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s ease;
            display: inline-block;
            padding: 4px 0;
        }
.sitemap-links a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
.sitemap-links a i {
            font-size: 0.7rem;
            margin-right: 6px;
            color: var(--accent);
        }
.map-index {
            background: rgba(236,72,153,0.04);
            border: 1px solid rgba(236,72,153,0.12);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
        }
.map-index h2 {
            color: var(--text);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.01em;
        }
.map-index-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 12px;
        }
.map-index-grid a {
            color: rgba(224,242,254,0.8);
            text-decoration: none;
            padding: 10px 15px;
            border: 1px solid rgba(6,182,212,0.12);
            border-radius: 8px;
            transition: all 0.2s ease;
            font-size: 0.92rem;
        }
.map-index-grid a:hover {
            color: var(--primary);
            border-color: var(--primary);
            background: rgba(6,182,212,0.06);
        }
.map-index-grid a i {
            margin-right: 6px;
            font-size: 0.8rem;
            color: var(--accent);
        }
.structure-note {
            background: rgba(6,182,212,0.03);
            border-left: 3px solid var(--primary);
            padding: 18px 22px;
            border-radius: 0 8px 8px 0;
            margin-top: 30px;
            color: rgba(224,242,254,0.7);
            font-size: 0.95rem;
            line-height: 1.7;
        }
.structure-note strong {
            color: var(--text);
        }
.quick-links {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(6,182,212,0.1);
        }
.quick-links h4 {
            color: var(--text);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
.quick-links .btn-kb {
            background: rgba(6,182,212,0.1);
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 8px 22px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all 0.2s ease;
            margin: 0 8px 8px 0;
            display: inline-block;
        }
.quick-links .btn-kb:hover {
            background: var(--primary);
            color: #fff;
            box-shadow: 3px 3px 0px rgba(6,182,212,0.3);
        }
.sitemap-hero .hero-title {
                font-size: 1.8rem;
            }
.map-index-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
.sitemap-card {
                padding: 18px;
            }