:root {
  --primary: #dc2626;
  --accent: #fb923c;
  --bg: #141013;
  --text: #fef2f2;
  --card-bg: rgba(30, 22, 28, 0.9);
  --card-border: rgba(251, 146, 60, 0.2);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  line-height: 1.7;
}
::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 10px; background: #1a1418; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--primary), var(--accent)); border-radius: 5px; }

/* 滚动进度条 */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999; transition: width 0.1s;
}
/* 导航吸顶 */
.navbar-custom {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(20, 16, 19, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 38, 38, 0.15);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar-custom.scrolled {
  background: rgba(10, 8, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.navbar-brand {
  font-family: 'Inter', cursive;
  font-weight: 900; font-size: 1.6rem;
  color: var(--text) !important;
  display: flex; align-items: center; gap: 6px;
}
.brand-grad {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-link { color: rgba(254, 242, 242, 0.8) !important; font-weight: 500; margin: 0 8px; transition: 0.2s; }
.nav-link:hover { color: var(--accent) !important; transform: translateY(-1px); }

/* Hero 关键词云 */
.hero-cloud {
  padding: 80px 0 40px; text-align: center;
  background: radial-gradient(ellipse at 30% 20%, rgba(220,38,38,0.15), transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(251,146,60,0.1), transparent 50%);
}
.tag-cloud { max-width: 900px; margin: 30px auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.tag-item {
  padding: 8px 22px; border-radius: 50px;
  background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.3);
  color: var(--text); font-size: 0.95rem; transition: 0.3s; cursor: default;
}
.tag-item:hover { background: var(--primary); border-color: var(--primary); transform: scale(1.08); box-shadow: 0 0 20px rgba(220,38,38,0.4); }

/* 区块标题 */
.section-title {
  font-family: 'Inter', 'Comic Sans MS', cursive;
  font-weight: 800; font-size: 1.8rem;
  margin: 40px 0 25px; position: relative;
  display: inline-block;
}
.section-title::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 60%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

/* 影片卡片 */
.movie-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  height: 100%;
  display: flex; flex-direction: column;
}
.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(220,38,38,0.3);
}
.movie-card .poster-wrap {
  position: relative; overflow: hidden; aspect-ratio: 2/3;
}
.movie-card .poster-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.movie-card:hover .poster-wrap img { transform: scale(1.08); }
.movie-card .overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 20px 12px 10px;
  opacity: 0; transition: opacity 0.3s;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.movie-card:hover .overlay { opacity: 1; }
.movie-card .overlay .rating {
  font-weight: 700; color: var(--accent); font-size: 1rem;
}
.movie-card .info { padding: 10px 12px; }
.movie-card .info .name { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.movie-card .info .meta { font-size: 0.8rem; color: rgba(254,242,242,0.6); }

/* 分类标签 */
.cat-badge {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-size: 0.75rem; background: rgba(251,146,60,0.15);
  border: 1px solid rgba(251,146,60,0.3); color: var(--accent);
  font-weight: 600; margin: 2px;
}

/* 榜单金银铜 */
.rank-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; border-radius: 50%;
  font-weight: 900; font-size: 1rem; margin-right: 10px;
}
.rank-gold { background: linear-gradient(135deg, #ffd700, #ffaa00); color: #1a1a1a; }
.rank-silver { background: linear-gradient(135deg, #e0e0e0, #b0b0b0); color: #1a1a1a; }
.rank-bronze { background: linear-gradient(135deg, #cd7f32, #a0522d); color: #fff; }
.rank-normal { background: rgba(255,255,255,0.1); color: var(--text); }

/* 对比表格 */
.table-custom { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 12px; overflow: hidden; }
.table-custom th, .table-custom td { padding: 14px 18px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.08); }
.table-custom th { background: rgba(220,38,38,0.2); font-weight: 700; }
.table-custom tr:hover td { background: rgba(255,255,255,0.03); }

/* 编号清单 */
.steps-list { counter-reset: steps; }
.steps-list li { list-style: none; position: relative; padding-left: 50px; margin-bottom: 20px; counter-increment: steps; }
.steps-list li::before {
  content: counter(steps);
  position: absolute; left: 0; top: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}

/* 侧边弹窗 */
.side-drawer {
  position: fixed; top: 0; right: -480px; width: 460px; max-width: 100%;
  height: 100vh; background: #1c1519; z-index: 2000;
  transition: right 0.4s ease;
  overflow-y: auto; box-shadow: -10px 0 40px rgba(0,0,0,0.6);
  padding: 30px; border-left: 2px solid rgba(220,38,38,0.3);
}
.side-drawer.open { right: 0; }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 1999; opacity: 0; pointer-events: none; transition: 0.3s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer-close {
  position: absolute; top: 15px; right: 15px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none;
  color: var(--text); font-size: 1.2rem; cursor: pointer;
  transition: 0.3s;
}
.drawer-close:hover { background: var(--primary); transform: rotate(90deg); }
.drawer-poster { width: 100%; border-radius: 12px; margin-bottom: 20px; }
.drawer-field { margin-bottom: 15px; }
.drawer-field .label { font-size: 0.8rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.drawer-field .value { font-size: 1rem; color: var(--text); }
.drawer-rating { color: var(--accent); font-size: 1.6rem; font-weight: 900; }

/* 友链区 */
.friend-links { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 25px; margin: 50px 0; }
.friend-links a { color: rgba(254,242,242,0.6); text-decoration: none; margin: 0 12px; transition: 0.2s; }
.friend-links a:hover { color: var(--accent); }

/* 页脚 */
.footer {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
  padding: 40px 0 30px; border-top: 1px solid rgba(220,38,38,0.2);
  margin-top: 60px;
}
.footer a { color: rgba(254,242,242,0.6); text-decoration: none; margin: 0 8px; }
.footer a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .section-title { font-size: 1.4rem; }
  .navbar-brand { font-size: 1.2rem; }
  .side-drawer { width: 100%; right: -100%; }
}

/* 海报矩阵 */
.matrix-grid .movie-card { aspect-ratio: auto; }

/* --- 子页面追加 --- */
/* 保证卡片、表单等组件配色与首页一致 (深色) */
    .about-card, .about-card .card-body {
      background: var(--card-bg);
      color: var(--text);
      border: 1px solid var(--card-border);
      border-radius: 16px;
    }
.about-card .card-title {
      color: var(--accent);
    }
.about-card .card-text {
      color: rgba(254, 242, 242, 0.85);
    }
/* 若用到 table 或 list-group 也覆盖 */
    .table-custom, .table-custom th, .table-custom td {
      background: transparent;
      color: var(--text);
      border-color: var(--card-border);
    }
.list-group-item {
      background: var(--card-bg);
      color: var(--text);
      border-color: var(--card-border);
    }
/* 导航高亮当前页 */
    .navbar-nav .nav-link.active {
      color: var(--accent);
      font-weight: 600;
    }
/* 小标题点缀 */
    .about-section-title {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      border-left: 6px solid var(--primary);
      padding-left: 14px;
      margin-top: 2.2rem;
      margin-bottom: 1.5rem;
      color: var(--text);
    }
.about-section-title i {
      color: var(--accent);
      margin-right: 8px;
    }
/* 特色列表 */
    .feature-list i {
      color: var(--accent);
      width: 26px;
    }
.feature-list li {
      margin-bottom: 10px;
      color: rgba(254, 242, 242, 0.92);
    }
/* 团队/联系方式等 */
    .contact-badge {
      background: rgba(251, 146, 60, 0.12);
      color: var(--accent);
      padding: 6px 18px;
      border-radius: 30px;
      border: 1px solid var(--card-border);
      display: inline-block;
      font-weight: 500;
    }

/* --- 子页面追加 --- */
.disclaimer-hero {
            padding: 60px 0 30px;
            text-align: center;
            position: relative;
        }
.disclaimer-hero h1 {
            font-size: 2.4rem;
            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: 15px;
        }
.disclaimer-hero p {
            color: rgba(254, 242, 242, 0.7);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.05rem;
        }
.disclaimer-section {
            padding: 30px 0;
        }
.disclaimer-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 14px;
            padding: 30px 35px;
            margin-bottom: 30px;
            backdrop-filter: blur(6px);
        }
.disclaimer-card h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(251, 146, 60, 0.25);
            position: relative;
        }
.disclaimer-card h2 i {
            color: var(--accent);
            margin-right: 10px;
        }
.disclaimer-card h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }
.disclaimer-card p {
            color: rgba(254, 242, 242, 0.82);
            line-height: 1.85;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
.disclaimer-card p:last-child {
            margin-bottom: 0;
        }
.disclaimer-card ul, .disclaimer-card ol {
            color: rgba(254, 242, 242, 0.82);
            line-height: 1.9;
            padding-left: 20px;
            margin-bottom: 15px;
        }
.disclaimer-card li {
            margin-bottom: 6px;
        }
.disclaimer-card li strong {
            color: var(--accent);
        }
.highlight-box {
            background: rgba(220, 38, 38, 0.08);
            border-left: 4px solid var(--primary);
            padding: 15px 20px;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
        }
.highlight-box p {
            margin-bottom: 0;
            font-style: italic;
        }
.date-line {
            color: rgba(254, 242, 242, 0.5);
            font-size: 0.85rem;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
.disclaimer-hero h1 {
                font-size: 1.8rem;
            }
.disclaimer-card {
                padding: 20px 18px;
            }

/* --- 子页面追加 --- */
/* 本页专属微调，保持整体风格一致 */
    .movie-card .card-body { padding: 0.8rem 0.5rem; }
.section-title i { margin-right: 0.5rem; }
.cat-hero { background: linear-gradient(145deg, rgba(220,38,38,0.15) 0%, rgba(251,146,60,0.05) 100%); border-bottom: 1px solid var(--card-border); }
.cat-hero h1 { font-size: 2.2rem; }
.cat-hero p { color: rgba(254,242,242,0.7); }
.badge-new { background: var(--primary); color: #fff; font-size: 0.7rem; padding: 0.2rem 0.6rem; border-radius: 20px; margin-left: 0.5rem; vertical-align: middle; }

/* --- 子页面追加 --- */
/* 仅补充本页特有布局，不改动全局变量 */
    .tv-hero { padding: 3.5rem 0 2rem; border-bottom: 1px solid var(--card-border); }
.episode-badge { background: rgba(220, 38, 38, 0.15); color: var(--accent); padding: 0.2rem 0.9rem; border-radius: 30px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; border: 1px solid rgba(251,146,60,0.2); }
.daily-update-card { transition: transform 0.2s; }
.daily-update-card:hover { transform: translateY(-4px); }
/* 由于首页样式表可能未覆盖bootstrap表格，这里强制 */
    .table-custom { --bs-table-bg: transparent; --bs-table-color: var(--text); }
.table-custom td, .table-custom th { background: transparent; color: var(--text); border-color: rgba(251,146,60,0.15); }

/* --- 子页面追加 --- */
/* 本页专属微调 */
        .anime-hero {
            background: linear-gradient(135deg, rgba(20,16,19,0.92) 0%, rgba(30,22,28,0.85) 60%, rgba(251,146,60,0.15) 100%);
            border-bottom: 1px solid var(--card-border);
            padding: 4rem 0 3rem;
        }
.anime-hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--text), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.6rem;
        }
.anime-hero p {
            color: rgba(254,242,242,0.75);
            max-width: 720px;
            margin: 0 auto;
            font-size: 1.05rem;
        }
.season-tag {
            display: inline-block;
            background: rgba(251,146,60,0.12);
            color: var(--accent);
            border: 1px solid var(--card-border);
            padding: 0.3rem 1.2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-top: 1.2rem;
        }
.anime-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
.anime-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(220,38,38,0.15);
        }
.anime-poster {
            position: relative;
            padding-top: 140%;
            background-size: cover;
            background-position: center;
        }
.anime-poster .cat-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 0.75rem;
            padding: 0.2rem 0.7rem;
        }
.anime-poster .rank-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            font-size: 0.8rem;
            padding: 0.15rem 0.6rem;
        }
.anime-info {
            padding: 1rem;
        }
.anime-info h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.35rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.anime-meta {
            font-size: 0.8rem;
            color: rgba(254,242,242,0.6);
            margin-bottom: 0.5rem;
            display: flex;
            gap: 0.8rem;
        }
.anime-desc {
            font-size: 0.85rem;
            color: rgba(254,242,242,0.65);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.5;
        }
.schedule-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.schedule-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.7rem 1rem;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            margin-bottom: 0.5rem;
            transition: background 0.2s;
        }
.schedule-list li:hover {
            background: rgba(251,146,60,0.08);
        }
.schedule-day {
            font-weight: 700;
            color: var(--accent);
            min-width: 48px;
            font-size: 0.9rem;
        }
.schedule-title {
            flex: 1;
            margin: 0 1rem;
            font-size: 0.92rem;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
.schedule-time {
            font-size: 0.8rem;
            color: rgba(254,242,242,0.55);
        }
.pickup-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1rem;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 10px;
            margin-bottom: 0.8rem;
        }
.pickup-rank {
            font-size: 1.6rem;
            font-weight: 900;
            min-width: 42px;
            text-align: center;
            line-height: 1.2;
        }
.pickup-body h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }
.pickup-body p {
            font-size: 0.85rem;
            color: rgba(254,242,242,0.65);
            margin-bottom: 0.3rem;
            line-height: 1.5;
        }
.pickup-body .tag-item {
            font-size: 0.7rem;
            padding: 0.15rem 0.6rem;
        }
.notice-box {
            background: rgba(220,38,38,0.08);
            border-left: 3px solid var(--primary);
            border-radius: 0 8px 8px 0;
            padding: 1rem 1.2rem;
            margin: 1.5rem 0;
        }
.notice-box p {
            margin: 0;
            font-size: 0.9rem;
            color: rgba(254,242,242,0.75);
        }
.anime-hero h1 { font-size: 2rem; }
.schedule-list li { flex-wrap: wrap; }
.schedule-title { width: 100%; order: 3; margin: 0.3rem 0 0; }

/* --- 子页面追加 --- */
/* 覆盖bootstrap默认组件配色, 确保与劳拉的性放荡HD中文字幕深色主题一致 */
        .card, .card-body, .card-header, .card-footer {
            background: var(--card-bg);
            color: var(--text);
            border-color: var(--card-border);
        }
.card-title, .card-text {
            color: var(--text);
        }
.form-control, .form-select {
            background: rgba(0,0,0,0.35);
            color: var(--text);
            border-color: var(--card-border);
        }
.form-control::placeholder {
            color: rgba(255,255,255,0.45);
        }
.accordion-item, .accordion-button {
            background: var(--card-bg);
            color: var(--text);
            border-color: var(--card-border);
        }
.accordion-button:not(.collapsed) {
            background: rgba(220,38,38,0.2);
            color: var(--text);
        }
.navbar, .navbar-brand, .nav-link {
            color: var(--text) !important;
        }
.navbar-toggler {
            border: 1px solid var(--card-border);
        }
/* 短剧卡片专用微调 */
        .short-card {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
.short-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
.short-badge {
            background: var(--primary);
            color: #fff;
            font-size: 0.7rem;
            padding: 0.3em 0.7em;
            border-radius: 20px;
            letter-spacing: 0.03em;
        }
.episode-tag {
            background: rgba(251,146,60,0.15);
            color: var(--accent);
            padding: 0.2em 0.8em;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 500;
        }
.section-title span {
            border-bottom: 3px solid var(--accent);
            padding-bottom: 6px;
        }
/* 短剧页特有banner */
        .short-hero {
            background: linear-gradient(145deg, rgba(220,38,38,0.25) 0%, rgba(20,16,19,0.9) 70%);
            border: 1px solid var(--card-border);
            border-radius: 24px;
            padding: 2rem 2rem;
        }
.short-hero h1 {
            font-weight: 800;
            letter-spacing: -0.02em;
        }
.short-hero .tag-cloud {
            margin-top: 0.8rem;
        }

/* --- 子页面追加 --- */
/* 强制覆盖 Bootstrap 组件默认白底黑字 (为保险, 尽管尽量不用 .card, 但这里做防御) */
        .card, .card-body, .form-control, .list-group-item, .accordion-item, .accordion-button,
        .accordion-body, .modal-content, .dropdown-menu, .dropdown-item, .table {
            background-color: var(--card-bg) !important;
            color: var(--text) !important;
            border-color: var(--card-border) !important;
        }
.card-title, .card-text, .accordion-button, .form-label {
            color: var(--text) !important;
        }
/* 隐私政策专有细节 */
        .privacy-block {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 1.8rem 1.8rem;
            margin-bottom: 1.8rem;
            backdrop-filter: blur(4px);
        }
.privacy-block h2 {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary);
            padding-left: 0.9rem;
        }
.privacy-block h3 {
            color: var(--text);
            font-weight: 600;
            font-size: 1.2rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            opacity: 0.95;
        }
.privacy-block p, .privacy-block li {
            color: rgba(254, 242, 242, 0.85);
            line-height: 1.7;
            font-weight: 300;
        }
.privacy-block ul, .privacy-block ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
.privacy-block a {
            color: var(--accent);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
.privacy-block a:hover {
            color: #ffb380;
        }
.badge-97 {
            background: rgba(220, 38, 38, 0.2);
            color: var(--accent);
            border: 1px solid var(--card-border);
            border-radius: 30px;
            padding: 0.15rem 0.8rem;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            display: inline-block;
        }
/* 确保导航高亮当前页 */
        .navbar-custom .nav-link.active-privacy {
            color: var(--accent) !important;
            font-weight: 600;
        }
.navbar-custom .nav-link.active-privacy i {
            color: var(--accent);
        }

/* --- 子页面追加 --- */
.sitemap-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 14px;
            padding: 1.5rem 1.8rem;
            margin-bottom: 1.8rem;
            transition: transform .2s ease, box-shadow .2s ease;
        }
.sitemap-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(220, 38, 38, .12);
        }
.sitemap-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1rem;
            padding-left: .9rem;
            border-left: 4px solid var(--primary);
        }
.sitemap-card ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
.sitemap-card ul li {
            margin-bottom: .45rem;
        }
.sitemap-card ul li a {
            color: rgba(254, 242, 242, .82);
            text-decoration: none;
            font-size: .95rem;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: .5rem;
        }
.sitemap-card ul li a i {
            color: var(--accent);
            font-size: .85rem;
            width: 1.2rem;
        }
.sitemap-card ul li a:hover {
            color: var(--accent);
        }
.sitemap-hero {
            padding: 4rem 0 2.5rem;
            text-align: center;
        }
.sitemap-hero h1 {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: .5px;
            color: var(--text);
        }
.sitemap-hero h1 .brand-grad {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
        }
.sitemap-hero p {
            color: rgba(254, 242, 242, .65);
            font-size: 1.05rem;
            max-width: 600px;
            margin: .8rem auto 0;
        }
.sitemap-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
.sitemap-grid { grid-template-columns: 1fr; }
.sitemap-hero h1 { font-size: 1.7rem; }