/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.photo-soft-c718 {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.photo-soft-c718:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.liquid_acdc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .liquid_acdc {
    padding: 0 var(--space-sm);
  }
}

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.banner_copper_16d2):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.banner_copper_16d2,
header,
.picture_3b44,
.gradient_1af4,
.progress_new_9bda,
.slow_e274,
.pro_2da2,
.inner_dd84,
.section_easy_f778 {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.banner_copper_16d2 {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

.focused_48cb {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.banner_copper_16d2.shadow-cc77 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.aside-pressed-2d55 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.under_9f22 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.light-d109 img {
  height: 36px;
  width: auto;
  display: block;
}

.chip_5dbb {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #e8f5e9;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.item-bf29 {
  flex: 1;
}

.complex_7215 {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.hover-up-a732 {
  display: block;
  padding: 8px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.hover-up-a732:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.hover-up-a732.fn-active-552c {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.button_883d {
  position: relative;
}

.filter_right_2e2a {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.filter_right_2e2a svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.button_883d:hover .filter_right_2e2a svg,
.filter_right_2e2a[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.dim-924c {
  position: absolute;
  top: calc(100% + 8px); /* 距离父元素8px，更自然 */
  left: 0;
  min-width: 200px;
  width: max-content; /* 自动适应内容宽度 */
  max-width: 300px; /* 最大宽度限制 */
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
  /* 关键：确保没有overflow，内容完全可见 */
  overflow: visible;
  max-height: none;
  height: auto;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.button_883d:hover .dim-924c {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.dim-924c::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.image_wood_bfa6 {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.image_wood_bfa6:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.image_wood_bfa6[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.narrow_de77 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.highlight_south_018c {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.highlight_south_018c:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.highlight_south_018c svg {
  flex-shrink: 0;
}

/* Header Download Button */
.frame_0ecb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
  white-space: nowrap;
}

.frame_0ecb:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #0d47a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

.frame_0ecb svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

.section_old_029c {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.highlight-2319 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.section_old_029c[aria-expanded="true"] .highlight-2319:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.section_old_029c[aria-expanded="true"] .highlight-2319:nth-child(2) {
  opacity: 0;
}

.section_old_029c[aria-expanded="true"] .highlight-2319:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .item-bf29 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px;
    transition: right 0.3s ease-out;
    z-index: 999;
    overflow-y: auto; /* 移动端菜单内容过多时可滚动 */
    overflow-x: visible; /* 水平方向不滚动，确保下拉菜单可见 */
    /* 隐藏滚动条外观，但保留可滚动能力，视觉上更自然 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .item-bf29::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .item-bf29.text_rough_14f2 {
    display: block;
    right: 0;
  }
  
  .complex_7215 {
    flex-direction: column;
    gap: 0;
  }
  
  .hover-up-a732 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .item-bf29::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  
  .item-bf29.text_rough_14f2::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .item-bf29 {
    display: none;
  }
  
  .section_old_029c {
    display: flex;
  }
  
  .chip_5dbb {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .highlight_south_018c,
  .frame_0ecb {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .button_883d {
    position: relative;
  }
  
  .dim-924c {
    position: static; /* 移动端不浮动，直接堆叠 */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
    margin-top: 0;
    /* 用 max-height 过渡实现自然展开/收起，而不是生硬的 display 切换 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
  
  .filter_right_2e2a[aria-expanded="true"] + .dim-924c {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .image_wood_bfa6 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .narrow_de77 {
    gap: 8px;
  }
  
  .highlight_south_018c {
    display: none;
  }
  
  .frame_0ecb {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .light-d109 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .frame_0ecb {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .frame_0ecb svg {
    width: 14px;
    height: 14px;
  }
  
  .aside-pressed-2d55 {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.picture_3b44 {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.old-9c15 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.lite_a8da {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lite_a8da svg {
  flex-shrink: 0;
}

.lite_a8da a {
  color: var(--color-primary);
  text-decoration: none;
}

.lite_a8da a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .old-9c15 {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.gradient_1af4 {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.link_612f {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .link_612f {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.in-27e4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.in-27e4 a {
  color: var(--color-primary);
  text-decoration: none;
}

.in-27e4 a:hover {
  text-decoration: underline;
}

.shade-static-dc25 {
  color: var(--color-text-lighter);
}

.layout_2a6a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .layout_2a6a {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .layout_2a6a {
    font-size: 1.5rem;
  }
}

.row-6ba8 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.action-d5cf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .action-d5cf {
    grid-template-columns: 1fr;
  }
}

.hard-a7a9 {
  display: flex;
  gap: var(--space-sm);
}

.feature-22a4 {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.item_focused_5f4e {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.item_focused_5f4e strong {
  font-weight: 600;
  color: var(--color-text);
}

.item_focused_5f4e span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.lower_1ce4 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.dynamic-b49e {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tooltip-wide-c3b6 {
  position: relative;
  text-align: center;
}

.tooltip-wide-c3b6 img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.logo_2487 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hover_4a14 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.warm_cfdd {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.description-a64c {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.fast_37eb {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.thumbnail-fast-daac {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .link_612f {
    grid-template-columns: 1fr;
  }
  
  .layout_2a6a {
    font-size: 1.75rem;
  }
  
  .dynamic-b49e {
    order: -1;
    max-width: 100%;
  }
  
  .tooltip-wide-c3b6 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .layout_2a6a {
    font-size: 1.5rem;
  }
  
  .row-6ba8 {
    font-size: 1rem;
  }
  
  .in-27e4 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tooltip-wide-c3b6 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.tabs-6f7c {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.highlight_a3d7 {
  background: var(--color-primary);
  color: white;
}

.highlight_a3d7:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hidden-6620 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.hidden-6620:hover {
  background: var(--color-primary);
  color: white;
}

.grid-copper-1158 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.grid-copper-1158:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.current-899c {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.description_8d78 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.progress_new_9bda {
  padding: var(--space-xl) 0;
  background: white;
}

.container-easy-568b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.box_8981 {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.box_8981:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.alert_b7a8 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.container-448b {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.right-d144 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.slow_e274 {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.wrapper-03b9 {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.mask-over-2b07 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.sort-east-ae57 {
  list-style: none;
  counter-reset: toc-counter;
}

.sort-east-ae57 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.sort-east-ae57 li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.sort-east-ae57 li a:before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

.sort-east-ae57 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.pro_2da2 {
  padding: var(--space-xxl) 0;
}

.aside-d153 {
  background: var(--color-bg-section);
}

.frame-5413 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.outer-1298 {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

.pagination_orange_ca8f {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.element_fixed_048b {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.label_c563 {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .label_c563 {
    grid-template-columns: 1fr 300px;
  }
}

.brown-6af0 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.brown-6af0 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.brown-6af0 pre,
.brown-6af0 code {
  overflow-x: auto;
  max-width: 100%;
}

.brown-6af0 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-text);
}

.brown-6af0 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.brown-6af0 h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.brown-6af0 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.brown-6af0 ul,
.brown-6af0 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.brown-6af0 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.brown-6af0 strong {
  font-weight: 600;
  color: var(--color-text);
}

.brown-6af0 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.brown-6af0 a:hover {
  color: var(--color-primary-dark);
}

.huge_db26 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.huge_db26 li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.huge_db26 li:before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

@media (max-width: 968px) {
  .label_c563 {
    grid-template-columns: 1fr;
  }
  
  .pagination_orange_ca8f {
    font-size: 1.75rem;
  }
  
  .brown-6af0 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .pagination_orange_ca8f {
    font-size: 1.5rem;
  }
  
  .brown-6af0 h3 {
    font-size: 1.375rem;
  }
  
  .brown-6af0 h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.soft_d390 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.steel_20cb {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.outline_f7f2 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.footer_outer_72a7 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tooltip-prev-d5af strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.bottom-0f9a {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #f1f8ff;
  border: 2px solid #0366d6;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.pattern_next_127e {
  flex-shrink: 0;
}

.texture_d037 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.static_7dfa {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .static_7dfa {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.thick-7c99,
.west_49a2,
.south-98fc {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.thick-7c99 thead,
.west_49a2 thead {
  background: var(--color-primary);
  color: white;
}

.thick-7c99 th,
.thick-7c99 td,
.west_49a2 th,
.west_49a2 td,
.south-98fc th,
.south-98fc td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .thick-7c99 th,
  .thick-7c99 td,
  .west_49a2 th,
  .west_49a2 td,
  .south-98fc th,
  .south-98fc td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .thick-7c99,
  .west_49a2,
  .south-98fc {
    min-width: 600px;
  }
}

.thick-7c99 th,
.west_49a2 th,
.south-98fc th {
  font-weight: 600;
}

.thick-7c99 tbody tr:hover,
.west_49a2 tbody tr:hover,
.south-98fc tbody tr:hover {
  background: var(--color-bg-alt);
}

.widget-9f2a {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.dirty-f3dd {
  position: sticky;
  top: 80px;
  align-self: start;
}

.breadcrumb_b023 {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.breadcrumb_b023 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.header-ced3 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.header-ced3 h4 {
  color: white;
}

.large_3f35 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.full-9a46 {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.full-9a46:last-child {
  border-bottom: none;
}

.full-9a46 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.full-9a46 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.panel-black-712b {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.soft-d819 {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.soft-d819:hover {
  text-decoration: underline;
}

.element-f6d0 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.pressed-3406 {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.pressed-3406 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.tooltip-west-4d15 {
  font-weight: 600;
  color: white;
}

.small-c387 {
  list-style: none;
  padding: 0;
}

.small-c387 li {
  padding: var(--space-xs) 0;
}

.tiny_ee36 {
  color: #4caf50;
}

.complex_4820 {
  color: #ff9800;
}

.picture-dynamic-3969 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.search-wood-8c30 {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.feature-0d97 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.status_be6e {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.backdrop_ac93 {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.hidden_08c4 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.input_action_1923 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .input_action_1923 {
    grid-template-columns: 1fr;
  }
}

.notice_e779 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.notice_e779:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.aside_black_5ef9 {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  opacity: 0.3;
}

.notice_e779 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.notice_e779 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.breadcrumb_8818 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.tooltip-west-4d15 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.item_action_0ef8 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.layout_hard_c101 {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.layout_hard_c101 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.first-aaac {
  max-width: 900px;
  margin: 0 auto;
}

.accent_fixed_d605 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.pressed-8ce8 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .pressed-8ce8 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.disabled_04a8 {
  margin-top: var(--space-xxl);
}

.disabled_04a8 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pagination-02ee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .pagination-02ee {
    grid-template-columns: 1fr;
  }
}

.box-stone-4587 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.in_be35 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.title-5a0b {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.box-stone-4587 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.box-stone-4587 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.box-stone-4587 li {
  padding: var(--space-xs) 0;
  color: white;
}

.box-stone-4587 .tabs-6f7c {
  width: 100%;
  background: white;
}

.in_be35 .tabs-6f7c {
  color: #667eea;
}

.title-5a0b .tabs-6f7c {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.accent-c67d {
  max-width: 900px;
  margin: 0 auto;
}

.advanced_66eb {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.title-motion-6584 {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.panel_soft_031d {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.title-motion-6584 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.outline-14f5 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .title-motion-6584 {
    padding: var(--space-md);
  }
  
  .outline-14f5 {
    padding: var(--space-md);
  }
  
  .shade-43ae {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.pattern-fluid-82b6 ol,
.pattern-fluid-82b6 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.pattern-fluid-82b6 li {
  margin-bottom: var(--space-sm);
}

.pattern-fluid-82b6 code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.glass-ba68 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.stale_5a8b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.shade-43ae {
  margin-top: var(--space-lg);
  text-align: center;
}

.shade-43ae img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.feature_48cf,
.pagination_left_5824,
.table-fast-e0cf,
.accordion_7021 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.box-1e56 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.secondary_5445 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.north_2aac {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

@media (max-width: 480px) {
  .north_2aac {
    font-size: 0.625rem;
  }
}

.blue_d822 {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.blue_d822:hover {
  background: var(--color-primary-dark);
}

.search-lower-027a {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.search-lower-027a h4 {
  margin-bottom: var(--space-md);
}

.section-mini-bd0e {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.overlay-under-1f21 {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.item_center_167a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .item_center_167a {
    grid-template-columns: 1fr;
  }
}

.north-1d8f {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.current_c7cd {
  border-color: var(--color-success);
}

.wide-09f6 {
  border-color: var(--color-warning);
}

.purple_253d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.current_c7cd .purple_253d {
  background: #e8f5e9;
  color: var(--color-success);
}

.wide-09f6 .purple_253d {
  background: #fff3e0;
  color: var(--color-warning);
}

.north-1d8f h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.north-1d8f p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.primary-stale-5afb {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.hot_13c8 {
  margin: var(--space-xxl) 0;
}

.hot_13c8 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.hot_13c8 > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.clean_e4bc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .clean_e4bc {
    grid-template-columns: 1fr;
  }
}

.accent-huge-4237 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.accent-huge-4237 h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.media-black-5f67 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.media-black-5f67 input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.motion-3e06 {
  margin-top: var(--space-xxl);
}

.caption-active-625c {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form_black_e8ab {
  text-align: center;
}

.over_6cd2 {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.thumbnail-a829 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.over_6cd2 .tooltip-west-4d15 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.menu_yellow_5be6 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.cool_7624 p {
  margin-bottom: var(--space-md);
}

.hovered_f0af {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .caption-active-625c {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.notice-b397 {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.grid_fixed_1d3b {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.message_liquid_050c {
  margin-bottom: var(--space-xl);
}

.thumbnail-89fc {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.sort_996a {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.cool_7dc4 {
  color: var(--color-text-light);
}

.surface_warm_838d {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.green_21ea {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.paper-4f00 {
  font-weight: 600;
  color: var(--color-text);
}

.breadcrumb_5203 {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.card_baa9 {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.warm_8f7c {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.backdrop-plasma-93e2 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.picture-19b7 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.highlight-0b2a {
  border: 2px solid #4caf50;
}

.hero_full_74a0 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.out_4825 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.tag-paper-f5ca {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.tertiary_liquid_602e {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.status_f2a0 {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.module-88af {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.image-last-a420 {
  text-align: right;
}

.image-last-a420 .logo_3978 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.info_orange_7063 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.surface-6d7c h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.surface-6d7c p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.lite_e195 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.brown-e5a3 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-huge-66c4 {
  background: #e8f5e9;
  color: #2e7d32;
}

.focus-top-de8a {
  background: #e3f2fd;
  color: #1565c0;
}

.border-silver-46d2 {
  background: #fff3e0;
  color: #e65100;
}

.orange-96af {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.orange-96af span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.summary-74da {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.summary-74da:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.outline-41c6 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.shade-33b2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.shade-33b2 strong {
  color: var(--color-primary);
}

.frame_1244 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.focus-4567 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.hover-fresh-7f4d {
  max-width: 900px;
  margin: 0 auto;
}

.dropdown-9860 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.dynamic-a294 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dynamic-a294:hover {
  background: var(--color-bg-alt);
}

.logo_ac97 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.dynamic-a294[aria-expanded="true"] .logo_ac97 {
  transform: rotate(180deg);
}

.overlay_0f4d {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.overlay_0f4d h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.overlay_0f4d ul,
.overlay_0f4d ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.overlay_0f4d li {
  margin-bottom: var(--space-xs);
}

.large-7220 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.wrapper_stale_b35e {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.large-7220 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.label-lower-3361 {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.nav-ba25 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.hard-2474 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.mini_aab8 {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.disabled_current_deb0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .disabled_current_deb0 {
    grid-template-columns: 1fr;
  }
}

.main-fixed-c39c,
.surface_1ccb {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.main-fixed-c39c {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.surface_1ccb {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.main-fixed-c39c h4,
.surface_1ccb h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.main-fixed-c39c ul,
.surface_1ccb ul {
  list-style: none;
  padding: 0;
}

.main-fixed-c39c li,
.surface_1ccb li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.down-8b6a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .down-8b6a {
    grid-template-columns: 1fr;
  }
}

.picture_wide_d5e3 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.notification_569b {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.image-small-8890 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.picture_wide_d5e3 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.picture_wide_d5e3 ul {
  list-style: none;
  padding: 0;
}

.picture_wide_d5e3 li {
  padding: var(--space-xs) 0;
  color: white;
}

.aside_smooth_1a00 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.aside_smooth_1a00 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.aside_smooth_1a00 p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.nav_motion_6e6f {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.wrapper_9e25 {
  font-style: italic;
}

.motion-41eb {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.detail_2dd2 {
  margin-top: var(--space-xxl);
  padding: var(--space-xxl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
}

.detail_2dd2 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.detail_2dd2 p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.prev-b9a1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.inner_dd84 {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.background-old-a0f0 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.accent_iron_caeb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .accent_iron_caeb {
    grid-template-columns: 1fr;
  }
}

.hard-8697 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition-base);
}

.hard-8697:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.caption-2c29 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.hard-8697 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.hard-8697 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.section_easy_f778 {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.red_7dd6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
  .red_7dd6 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.full-e5d7 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.feature-9318 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.accordion-thick-f14e {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.accordion-thick-f14e .hard-a7a9 {
  color: #4caf50;
  font-size: 0.875rem;
}

.button-b291 {
  list-style: none;
  padding: 0;
}

.button-b291 li {
  margin-bottom: var(--space-xs);
}

.button-b291 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.button-b291 a:hover {
  color: white;
}

.feature-wide-01be {
  list-style: none;
  padding: 0;
}

.feature-wide-01be li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.feature-wide-01be a {
  color: #b0b0b0;
  text-decoration: none;
}

.feature-wide-01be a:hover {
  color: white;
}

.tall_003d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid #424242;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.silver_06f0 p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.silver_06f0 a {
  color: #4caf50;
  text-decoration: none;
}

.article_blue_c9d0 {
  font-size: 0.75rem;
  color: #666666;
}

.carousel_under_e645 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.old-a8f9 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.old-a8f9:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tall_003d {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .layout_2a6a {
    font-size: 2rem;
  }
  
  .pagination_orange_ca8f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .link_612f,
  .label_c563 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .input_action_1923,
  .item_center_167a,
  .pagination-02ee,
  .clean_e4bc,
  .disabled_current_deb0,
  .down-8b6a,
  .accent_iron_caeb,
  .red_7dd6 {
    grid-template-columns: 1fr;
  }
  
  .container-easy-568b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .pro_2da2 {
    padding: var(--space-lg) 0;
  }
  
  .sort-east-ae57 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .sort-east-ae57 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tabs-6f7c {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .container-easy-568b {
    grid-template-columns: 1fr;
  }
  
  .lower_1ce4,
  .prev-b9a1,
  .section-mini-bd0e {
    flex-direction: column;
    width: 100%;
  }
  
  .current-899c,
  .description_8d78,
  .lower_1ce4 .tabs-6f7c,
  .prev-b9a1 .tabs-6f7c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .layout_2a6a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .pagination_orange_ca8f {
    font-size: 1.375rem;
  }
  
  .alert_b7a8 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .box_8981,
  .notice_e779,
  .breadcrumb_b023,
  .picture-19b7,
  .advanced_66eb {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .north_2aac {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .old-9c15 {
    gap: var(--space-xs);
  }
  
  .lite_a8da {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .pressed-3406 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .over_6cd2 {
    width: 150px;
    height: 150px;
  }
  
  .thumbnail-a829 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .banner_copper_16d2,
  .picture_3b44,
  .lower_1ce4,
  .detail_2dd2,
  .inner_dd84,
  .section_easy_f778,
  .section_old_029c {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .pro_2da2 {
    page-break-inside: avoid;
  }
}

/* css-noise: 45c9 */
.phantom-card-v1 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.1;
}
