:root {
      --primary: #6d5dfc;
      --accent: #22d3ee;
      --bg: #0f1020;
      --text: #e8eaf6;
      --card-bg: #1b1c30;
      --border: #2d2e4a;
      --shadow: rgba(0, 0, 0, 0.4);
      --radius: 8px;
    }
    * { box-sizing: border-box; }
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      letter-spacing: 0.2px;
      line-height: 1.7;
      overflow-x: hidden;
    }
    h1,h2,h3,h4,h5,h6 { font-weight: 700; }
    a { color: var(--accent); text-decoration: none; transition: 0.2s; }
    a:hover { color: var(--primary); }
    .navbar {
      background: rgba(15, 16, 32, 0.75);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      padding: 0.8rem 0;
    }
    .navbar-brand {
      font-weight: 900;
      font-size: 1.5rem;
      letter-spacing: -0.5px;
      color: var(--text) !important;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .navbar-brand i { color: var(--accent); font-size: 1.6rem; }
    .navbar .nav-link {
      color: var(--text);
      font-weight: 500;
      margin: 0 0.5rem;
    }
    .navbar .nav-link:hover { color: var(--accent); }
    .hero-section {
      position: relative;
      padding: 4rem 0 3rem;
      background: radial-gradient(circle at 30% 20%, rgba(109, 93, 252, 0.15), transparent 40%);
      overflow: hidden;
    }
    .hero-title {
      font-size: calc(2.2rem + 1vw);
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
      margin-bottom: 0.5rem;
      animation: floatGlow 4s ease-in-out infinite alternate;
    }
    @keyframes floatGlow {
      0% { text-shadow: 0 0 10px rgba(109, 93, 252, 0.2); }
      100% { text-shadow: 0 0 20px rgba(34, 211, 238, 0.4); }
    }
    .floating-decoration {
      position: absolute;
      font-size: 4rem;
      opacity: 0.08;
      color: var(--primary);
      animation: float 8s infinite;
      pointer-events: none;
    }
    .fd1 { top: 10%; left: 5%; animation-delay: 0s; }
    .fd2 { top: 60%; right: 8%; animation-delay: 1.5s; }
    .fd3 { bottom: 10%; left: 15%; animation-delay: 3s; }
    @keyframes float {
      0% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(8deg); }
      100% { transform: translateY(0px) rotate(-5deg); }
    }
    .section-title {
      font-weight: 800;
      font-size: 1.75rem;
      margin: 2rem 0 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text);
    }
    .section-title i { color: var(--accent); }
    .card-movie {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.3s;
      height: 100%;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 12px var(--shadow);
      cursor: pointer;
      animation: cardFadeIn 0.6s ease both;
    }
    .card-movie:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.5);
      border-color: var(--primary);
    }
    .card-img-wrapper {
      position: relative;
      overflow: hidden;
      aspect-ratio: 2 / 3;
      background: #20213a;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .card-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
      background: linear-gradient(135deg, #282a44, #1a1c30);
    }
    .card-movie:hover .card-img-wrapper img { transform: scale(1.03); }
    .play-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15,16,32,0.9) 0%, rgba(15,16,32,0.1) 60%, transparent 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .card-movie:hover .play-overlay { opacity: 1; }
    .play-overlay i {
      font-size: 3rem;
      color: white;
      background: rgba(109, 93, 252, 0.7);
      border-radius: 50%;
      padding: 1rem;
      box-shadow: 0 0 20px var(--primary);
    }
    .card-body { padding: 0.85rem; }
    .movie-title { font-weight: 700; font-size: 1.05rem; line-height: 1.3; }
    .movie-meta { font-size: 0.8rem; color: #b0b6cf; display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
    .rating { color: #ffb93c; font-weight: 700; }
    .movie-tags { font-size: 0.75rem; background: rgba(109,93,252,0.2); padding: 0.2rem 0.5rem; border-radius: 4px; }
    .section-panel {
      background: rgba(20, 21, 40, 0.5);
      border-radius: 12px;
      padding: 1.2rem;
      margin-top: 1.5rem;
      border: 1px solid var(--border);
    }
    .side-filter {
      position: sticky;
      top: 80px;
      border-radius: 12px;
      background: rgba(27,28,48,0.6);
      padding: 1.2rem;
      backdrop-filter: blur(4px);
    }
    .side-filter .filter-item {
      display: block;
      padding: 0.5rem 0.7rem;
      margin-bottom: 0.25rem;
      color: var(--text);
      border-radius: var(--radius);
      font-weight: 500;
      transition: 0.2s;
    }
    .side-filter .filter-item:hover { background: rgba(109,93,252,0.2); color: white; }
    .side-filter .filter-item.active { background: var(--primary); color: white; }
    .filter-head { font-weight: 800; margin-bottom: 0.5rem; color: var(--accent); font-size: 1.2rem; }
    .btn-accent {
      background: var(--primary);
      color: white;
      border-radius: 8px;
      padding: 0.45rem 1rem;
      font-weight: 600;
      transition: 0.2s;
    }
    .btn-accent:hover { background: #8b7bff; }
    .bottom-sheet {
      position: fixed;
      bottom: -100%;
      left: 0;
      right: 0;
      background: #171a2b;
      border-radius: 24px 24px 0 0;
      border-top: 2px solid var(--primary);
      box-shadow: 0 -10px 40px rgba(0,0,0,0.7);
      padding: 1.5rem 1.8rem 2rem;
      transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      z-index: 1050;
      max-height: 85vh;
      overflow-y: auto;
      backdrop-filter: blur(10px);
    }
    .bottom-sheet.show { bottom: 0; }
    .sheet-close { position: absolute; top: 1rem; right: 1.5rem; font-size: 2rem; cursor: pointer; color: var(--text); }
    .overlay-bg {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(2px);
      z-index: 1040;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .overlay-bg.show { opacity: 1; pointer-events: auto; }
    .timeline {
      border-left: 3px solid var(--primary);
      margin-left: 12px;
      padding-left: 1.5rem;
    }
    .timeline-item { position: relative; margin-bottom: 1.5rem; }
    .timeline-item::before {
      content: "";
      position: absolute;
      left: -1.9rem;
      top: 0.3rem;
      width: 14px;
      height: 14px;
      background: var(--accent);
      border-radius: 50%;
      border: 2px solid var(--bg);
    }
    .timeline-title { font-weight: 700; color: var(--accent); }
    .footer-links a { margin: 0 0.6rem; }
    .stagger-anim { animation: cardFadeIn 0.5s ease both; }
    @keyframes cardFadeIn {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    .friend-links { border-top: 1px solid var(--border); margin-top: 2rem; padding-top: 1.5rem; }
    .img-lazy { background: linear-gradient(110deg, #22243c 8%, #2e3150 18%, #22243c 33%); background-size: 200% 100%; animation: shimmer 1.2s linear infinite; }
    @keyframes shimmer { to { background-position: -200% 0; } }

/* --- 子页面追加 --- */
.about-hero {
            background: linear-gradient(135deg, rgba(109, 93, 252, 0.15) 0%, rgba(34, 211, 238, 0.08) 50%, transparent 100%);
            padding: 100px 0 60px;
            position: relative;
            overflow: hidden;
        }
.about-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
.about-hero p {
            font-size: 1.15rem;
            max-width: 700px;
            color: var(--text);
            opacity: 0.9;
        }
.about-section {
            padding: 70px 0;
        }
.about-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 25px;
            position: relative;
            padding-left: 20px;
        }
.about-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 28px;
            background: linear-gradient(180deg, var(--primary), var(--accent));
            border-radius: 3px;
        }
.about-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--accent);
            margin: 25px 0 12px;
        }
.about-section p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 15px;
            opacity: 0.92;
        }
.feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 30px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px var(--shadow);
        }
.feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: #fff;
        }
.feature-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 12px;
            text-align: left;
        }
.feature-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
.value-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
.value-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            color: var(--text);
            border-bottom: 1px solid var(--border);
            line-height: 1.7;
        }
.value-list li:last-child {
            border-bottom: none;
        }
.value-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent);
        }
.timeline-about {
            position: relative;
            padding-left: 30px;
            margin: 25px 0;
        }
.timeline-about::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary), var(--accent));
            border-radius: 3px;
        }
.timeline-about .timeline-item {
            position: relative;
            padding: 15px 0 15px 25px;
        }
.timeline-about .timeline-item::before {
            content: '';
            position: absolute;
            left: -32px;
            top: 22px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            border: 2px solid var(--bg);
        }
.timeline-about .timeline-item h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 5px;
        }
.timeline-about .timeline-item p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
.mission-box {
            background: linear-gradient(135deg, rgba(109, 93, 252, 0.12), rgba(34, 211, 238, 0.08));
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 40px;
            text-align: center;
            margin: 40px 0;
        }
.mission-box h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 15px;
        }
.mission-box p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
.stat-row {
            margin: 40px 0;
        }
.stat-item {
            text-align: center;
            padding: 25px 15px;
        }
.stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 8px;
        }
.stat-label {
            font-size: 0.9rem;
            color: var(--text);
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
.about-hero {
                padding: 70px 0 40px;
            }
.about-hero h1 {
                font-size: 2rem;
            }
.about-section {
                padding: 50px 0;
            }
.about-section h2 {
                font-size: 1.5rem;
            }

/* --- 子页面追加 --- */
/* 榜单页专属样式 */
        .top100-hero {
            background: linear-gradient(135deg, rgba(109, 93, 252, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
            border-bottom: 1px solid var(--border);
            padding: 60px 0 40px;
        }
.top100-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
        }
.top100-hero p {
            color: rgba(232, 234, 246, 0.7);
            font-size: 1rem;
            max-width: 700px;
        }
.rank-panel {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 20px;
        }
.rank-filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
            padding: 16px;
            background: rgba(27, 28, 48, 0.7);
            border: 1px solid var(--border);
            border-radius: var(--radius);
        }
.rank-filter-bar .filter-chip {
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--text);
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
.rank-filter-bar .filter-chip:hover,
        .rank-filter-bar .filter-chip.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
.rank-list-item {
            display: flex;
            align-items: center;
            padding: 16px;
            border-bottom: 1px solid var(--border);
            transition: background 0.3s ease;
            cursor: pointer;
        }
.rank-list-item:last-child {
            border-bottom: none;
        }
.rank-list-item:hover {
            background: rgba(109, 93, 252, 0.08);
        }
.rank-num {
            width: 48px;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--accent);
            text-align: center;
            flex-shrink: 0;
        }
.rank-num.top3 {
            color: var(--primary);
            font-size: 1.8rem;
        }
.rank-thumb {
            width: 56px;
            height: 56px;
            border-radius: 6px;
            object-fit: cover;
            margin-right: 16px;
            background: var(--border);
            flex-shrink: 0;
        }
.rank-info {
            flex: 1;
            min-width: 0;
        }
.rank-title {
            font-weight: 600;
            color: var(--text);
            font-size: 1rem;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.rank-meta {
            display: flex;
            gap: 12px;
            font-size: 0.78rem;
            color: rgba(232, 234, 246, 0.6);
        }
.rank-meta i {
            color: var(--accent);
            margin-right: 3px;
        }
.rank-score {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-left: 16px;
            flex-shrink: 0;
        }
.rank-tag {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            background: rgba(109, 93, 252, 0.15);
            color: var(--accent);
            margin-left: 8px;
        }
.rank-list-footer {
            text-align: center;
            padding: 20px;
            color: rgba(232, 234, 246, 0.5);
            font-size: 0.9rem;
        }
.rank-pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 20px 0;
        }
.rank-pagination .page-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--card-bg);
            color: var(--text);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
.rank-pagination .page-btn:hover,
        .rank-pagination .page-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
.rank-pagination .page-btn.disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
.rank-side-panel {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 20px;
        }
.rank-side-panel h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 14px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
        }
.rank-side-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.rank-side-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid rgba(45, 46, 74, 0.5);
            font-size: 0.88rem;
            color: var(--text);
        }
.rank-side-list li:last-child {
            border-bottom: none;
        }
.rank-side-list li span:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
.rank-side-list li span:last-child {
            color: var(--accent);
            font-weight: 600;
            margin-left: 8px;
        }
.rank-genre-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
.rank-genre-tags a {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid var(--border);
            color: var(--text);
            font-size: 0.8rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
.rank-genre-tags a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
.top100-hero h1 {
                font-size: 1.6rem;
            }
.rank-thumb {
                width: 44px;
                height: 44px;
            }
.rank-num {
                width: 36px;
                font-size: 1.1rem;
            }
.rank-score {
                font-size: 0.95rem;
            }

/* --- 子页面追加 --- */
/* 本页仅微调间距与个别组件，完全沿用 CSS 变量 */
        .disclaimer-hero {
            padding: 2.5rem 0 1rem 0;
            border-bottom: 1px solid var(--border);
            margin-bottom: 2rem;
        }
.disclaimer-section {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            margin-bottom: 1.8rem;
            box-shadow: 0 8px 24px var(--shadow);
        }
.disclaimer-section h2 {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            border-left: 4px solid var(--accent);
            padding-left: 1rem;
        }
.disclaimer-section h3 {
            color: var(--text);
            font-weight: 600;
            font-size: 1.2rem;
            margin-top: 1.2rem;
            margin-bottom: .5rem;
        }
.disclaimer-section p, .disclaimer-section li {
            color: rgba(232, 234, 246, 0.85);
            line-height: 1.7;
        }
.disclaimer-section a {
            color: var(--accent);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
.disclaimer-section a:hover {
            color: var(--primary);
        }
.badge-soft {
            background: rgba(109, 93, 252, 0.15);
            color: var(--accent);
            border: 1px solid var(--primary);
            padding: .3rem .9rem;
            border-radius: 30px;
            font-size: .85rem;
            display: inline-block;
            margin-right: .5rem;
            margin-bottom: .5rem;
        }
/* 覆盖 Bootstrap 潜在白底（保险） */
        .disclaimer-section, .disclaimer-section * {
            background: transparent;
            color: var(--text);
            border-color: var(--border);
        }
.disclaimer-section .list-unstyled li {
            background: transparent;
        }

/* --- 子页面追加 --- */
/* 站点地图页专用样式 */
        .sitemap-hero {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, rgba(109, 93, 252, 0.15) 0%, rgba(34, 211, 238, 0.08) 100%);
            border-bottom: 1px solid var(--border);
            margin-bottom: 50px;
        }
.sitemap-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
        }
.sitemap-hero p {
            color: rgba(232, 234, 246, 0.7);
            font-size: 1rem;
            max-width: 700px;
            margin: 0 auto;
        }
.map-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }
.map-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
.map-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px var(--shadow);
        }
.map-card .icon-box {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 16px;
            background: rgba(109, 93, 252, 0.15);
            color: var(--accent);
        }
.map-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }
.map-card p {
            font-size: 0.85rem;
            color: rgba(232, 234, 246, 0.65);
            line-height: 1.6;
            margin-bottom: 12px;
        }
.map-card .links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
.map-card .links a {
            font-size: 0.8rem;
            color: var(--accent);
            text-decoration: none;
            padding: 4px 10px;
            border: 1px solid rgba(34, 211, 238, 0.3);
            border-radius: 20px;
            transition: all 0.2s ease;
        }
.map-card .links a:hover {
            background: rgba(34, 211, 238, 0.1);
            border-color: var(--accent);
        }
.quick-links {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px;
            margin-bottom: 50px;
        }
.quick-links h2 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.quick-links h2 i {
            color: var(--accent);
        }
.quick-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
        }
.quick-grid a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(232, 234, 246, 0.8);
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }
.quick-grid a:hover {
            background: rgba(109, 93, 252, 0.15);
            color: var(--accent);
        }
.quick-grid a i {
            font-size: 0.8rem;
            color: var(--accent);
            width: 16px;
        }
.sitemap-hero {
                padding: 60px 0 30px;
            }
.sitemap-hero h1 {
                font-size: 1.6rem;
            }
.map-grid {
                grid-template-columns: 1fr;
            }
.quick-grid {
                grid-template-columns: 1fr 1fr;
            }