```css
/* ===== 亲亲漫画 全局样式 ===== */
:root {
  --bg: #FFFFFF;
  --bg-soft: #FDF2F6;
  --card-bg: #FFFFFF;
  --text-primary: #1F2937;
  --text-secondary: #4B5563;
  --text-tertiary: #6B7280;
  --heading: #17202A;
  --link: #C2185B;
  --link-hover: #8E0E3F;
  --border: #F3D9E4;
  --nav-bg: rgba(255, 255, 255, 0.92);
  --footer-bg: #1A1D29;
  --footer-text: #E2E8F0;
  --footer-heading: #FFFFFF;
  --btn-bg: #FF4D7D;
  --btn-text: #FFFFFF;
  --btn-hover-bg: #E0406E;
  --tag-bg: #FFE4EC;
  --tag-text: #AD1457;
  --shadow: 0 8px 24px rgba(194, 24, 91, 0.08);
  --shadow-hover: 0 16px 40px rgba(194, 24, 91, 0.16);
  --code-bg: #FDF2F6;
  --gradient: linear-gradient(135deg, #FFE4EC 0%, #FFB3C7 50%, #FF8FAB 100%);
  --gradient-text: linear-gradient(120deg, #C2185B, #FF4D7D);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.8);
  --hero-overlay: linear-gradient(145deg, rgba(255,228,236,0.9), rgba(255,255,255,0.4));
  --scrollbar-thumb: #FFB3C7;
  --scrollbar-track: #FFF0F5;
}

[data-theme="dark"] {
  --bg: #0F1115;
  --bg-soft: #181B25;
  --card-bg: #1E2230;
  --text-primary: #E5E7EB;
  --text-secondary: #9CA3AF;
  --text-tertiary: #6B7280;
  --heading: #F9FAFB;
  --link: #FF8FB2;
  --link-hover: #FFB3C7;
  --border: #2D3446;
  --nav-bg: rgba(15, 17, 21, 0.92);
  --footer-bg: #0B0D14;
  --footer-text: #CBD5E1;
  --footer-heading: #F1F5F9;
  --btn-bg: #FF4D7D;
  --btn-text: #0B0D14;
  --btn-hover-bg: #FF7A9E;
  --tag-bg: #3A2A35;
  --tag-text: #FFB3C7;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.6);
  --code-bg: #1E2230;
  --gradient: linear-gradient(135deg, #1E2230 0%, #2D3446 50%, #3A2A35 100%);
  --gradient-text: linear-gradient(120deg, #FF8FB2, #FFB3C7);
  --glass-bg: rgba(30, 34, 48, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --hero-overlay: linear-gradient(145deg, rgba(30,34,48,0.9), rgba(15,17,21,0.4));
  --scrollbar-thumb: #4B5563;
  --scrollbar-track: #1E2230;
}

/* ===== 基础重置 ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--link-hover);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 0.75em;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5em;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: var(--gradient);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-top: 1.5rem;
}

h4 {
  font-size: 1.1rem;
  margin-top: 1.2rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

::selection {
  background: var(--link);
  color: #fff;
}

/* ===== 滚动条 ===== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 5px;
  border: 2px solid var(--scrollbar-track);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--link);
}

/* ===== 容器 ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ===== 顶部导航 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  gap: 1rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  border-bottom: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--link-hover);
  border-bottom: none;
}

.nav-links a:hover::after {
  width: 100%;
}

.theme-toggle {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.theme-toggle:hover {
  background: var(--tag-bg);
  color: var(--tag-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--heading);
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 1rem;
  border-radius: 16px;
  margin: 0.5rem 1rem 1rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  background: var(--tag-bg);
  color: var(--tag-text);
  border-radius: 8px;
  padding-left: 1.5rem;
}

.mobile-nav .theme-toggle {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: flex;
  }
}

/* ===== 面包屑 ===== */
.breadcrumb {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--link);
  border-bottom: none;
}

.breadcrumb a:hover {
  color: var(--link-hover);
}

/* ===== Hero 区域 ===== */
.hero {
  background: var(--hero-overlay);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
}

.hero:hover {
  box-shadow: var(--shadow-hover);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: var(--gradient);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-text {
  flex: 2;
  min-width: 280px;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  margin-top: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.hero-badge {
  display: inline-block;
  background: var(--glass-bg);
  color: var(--tag-text);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-svg {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-svg svg {
  filter: drop-shadow(0 8px 24px rgba(194, 24, 91, 0.2));
  transition: transform 0.5s ease;
}

.hero-svg svg:hover {
  transform: scale(1.05) rotate(2deg);
}

/* ===== 卡片网格 ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--link);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.card h4 {
  margin-top: 0;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card a {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.card a:hover {
  gap: 0.75rem;
}

/* ===== 标签列表 ===== */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.tag {
  background: var(--glass-bg);
  color: var(--tag-text);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: default;
}

.tag:hover {
  background: var(--tag-bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  transition: background 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  user-select: none;
}

.faq-q:hover {
  color: var(--link);
}

.faq-q span {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--link);
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-q:hover span {
  transform: scale(1.2);
}

.faq-a {
  margin-top: 0.75rem;
  color: var(--text-secondary);
  padding: 0 0.5rem;
  line-height: 1.7;
  border-left: 3px solid var(--link);
  padding-left: 1rem;
}

.faq-a[hidden] {
  display: none;
}

/* ===== 表格 ===== */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.95rem;
}

th {
  background: var(--bg-soft);
  color: var(--heading);
  font-weight: 600;
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid var(--border);
}

td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: var(--bg-soft);
}

/* ===== 按钮 ===== */
.btn {
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(255, 77, 125, 0.3);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover {
  background: var(--btn-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 77, 125, 0.4);
  border-bottom-color: transparent;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:active {
  transform: translateY(0);
}

/* ===== 页脚 ===== */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  margin-top: 4rem;
  padding: 3rem 0 1.5rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  color: var(--footer-heading);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.site-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient);
}

.site-footer p {
  color: var(--footer-text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer a {
  color: var(--footer-text);
  border-bottom: none;
  transition: all 0.3s ease;
}

.site-footer a:hover {
  color: #FFFFFF;
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--footer-text);
  opacity: 0.9;
}

/* ===== 返回顶部 ===== */
.to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--glass-bg);
  color: var(--link);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  z-index: 999;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
}

.to-top:hover {
  background: var(--btn-bg);
  color: var(--btn-text);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* ===== 搜索栏 ===== */
.search-bar {
  display: flex;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.search-input {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--bg);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.search-input:focus {
  border-color: var(--link);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.1);
}

.search-input::placeholder {
  color: var(--text-tertiary);
  opacity: 0.8;
}

/* ===== 文章列表 ===== */
.article-list {
  list-style: none;
  padding-left: 0;
}

.article-list li {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.article-list li:hover {
  padding-left: 1rem;
  background: var(--bg-soft);
  border-radius: 12px;
}

.article-list time {
  color: var(--text-tertiary);
  margin-right: 1rem;
  font-size: 0.875rem;
  display: inline-block;
  min-width: 100px;
}

.article-list a {
  font-weight: 500;
  font-size: 1.05rem;
  border-bottom: none;
}

.article-list p {
  margin-top: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== 引用块 ===== */
blockquote {
  border-left: 4px solid var(--link);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: var(--bg-soft);
  border-radius: 0 12px 12px 0;
}

blockquote p {
  margin-bottom: 0.5rem;
  font-style: italic;
}

blockquote footer {
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

/* ===== 滚动动画 ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 通用工具类 ===== */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.section-title {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.svg-placeholder {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 1rem;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 2rem 1.5rem;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }

  .nav-wrap {
    height: 60px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .hero {
    padding: 2rem 1rem;
    gap: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-svg {
    order: -1;
  }

  .hero-svg svg {
    width: 180px;
    height: 150px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .article-list time {
    display: block;
    margin-bottom: 0.25rem;
    min-width: auto;
  }

  .breadcrumb {
    font-size: 0.8rem;
    margin: 1rem 0;
  }

  .to-top {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .search-bar {
    flex-direction: column;
  }

  .search-input {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .hero {
    padding: 1.5rem 0.75rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }

  .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }

  .tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }

  .card {
    padding: 1.2rem;
  }

  .faq-q {
    font-size: 0.95rem;
  }
}

/* ===== 暗色模式切换动画 ===== */
body,
.site-header,
.card,
.hero,
.footer,
.breadcrumb,
.tag,
.btn,
.search-input,
.faq-item,
.article-list li,
blockquote {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* ===== 打印样式 ===== */
@media print {
  .site-header,
  .to-top,
  .theme-toggle,
  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .hero {
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }
}
```