/* ============================================
   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)
   ============================================ */
.article_warm_e662 {
  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;
}

.article_warm_e662:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.prev-0373,
header,
.motion_9fda,
.breadcrumb-out-6372,
.overlay_645c,
.primary_rough_6d96,
.chip-52aa,
.carousel-bronze-3237,
.simple-0da7 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* 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
   ============================================ */
.prev-0373 {
  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);
}

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

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

/* Scrolled state */
.prev-0373.banner-lite-cd06 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.media_warm_e88c img {
  height: 36px;
  width: auto;
  display: block;
}

.paragraph-inner-6c3a {
  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;
}

.border-3ddd {
  flex: 1;
}

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

.input_39f4 {
  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);
}

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

.input_39f4.chip-3c8b {
  background: var(--color-primary);
  color: white;
}

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

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

.list-up-4ca8 svg {
  transition: transform 0.2s ease;
}

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

.smooth-5423 {
  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;
}

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

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

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

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

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

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

/* Header Login Button */
.tabs-006e {
  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;
}

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

.tabs-006e svg {
  flex-shrink: 0;
}

/* Header Download Button */
.notification-south-202c {
  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;
}

.notification-south-202c: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);
}

.notification-south-202c svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .border-3ddd {
    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 */
  }

  .border-3ddd::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .border-3ddd.fresh_c5ff {
    display: block;
    right: 0;
  }
  
  .image-bf76 {
    flex-direction: column;
    gap: 0;
  }
  
  .input_39f4 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .border-3ddd::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;
  }
  
  .border-3ddd.fresh_c5ff::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .border-3ddd {
    display: none;
  }
  
  .wide_e8c5 {
    display: flex;
  }
  
  .paragraph-inner-6c3a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .tabs-006e,
  .notification-south-202c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .basic_8590 {
    position: relative;
  }
  
  .smooth-5423 {
    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;
  }
  
  .list-up-4ca8[aria-expanded="true"] + .smooth-5423 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .aside-26a4 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .grid_58e3 {
    gap: 8px;
  }
  
  .tabs-006e {
    display: none;
  }
  
  .notification-south-202c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .media_warm_e88c img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .notification-south-202c {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .notification-south-202c svg {
    width: 14px;
    height: 14px;
  }
  
  .header_eaf6 {
    gap: var(--space-sm);
  }
}

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

.chip-iron-6955 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

.message_0aec svg {
  flex-shrink: 0;
}

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

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

@media (max-width: 768px) {
  .chip-iron-6955 {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

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

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

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

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

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

.slow-fbc0 a:hover {
  text-decoration: underline;
}

.first-53ff {
  color: var(--color-text-lighter);
}

.steel-74e8 {
  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) {
  .steel-74e8 {
    font-size: 2rem;
  }
}

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

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

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

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

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

.accent-advanced-1491 {
  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;
}

.hero-rough-65c5 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-rough-65c5 strong {
  font-weight: 600;
  color: var(--color-text);
}

.hero-rough-65c5 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

.center-7f35 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pattern_9d02 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .element_gold_a271 {
    grid-template-columns: 1fr;
  }
  
  .steel-74e8 {
    font-size: 1.75rem;
  }
  
  .center-7f35 {
    order: -1;
    max-width: 100%;
  }
  
  .pattern_9d02 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .steel-74e8 {
    font-size: 1.5rem;
  }
  
  .wide-ec8c {
    font-size: 1rem;
  }
  
  .slow-fbc0 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .pattern_9d02 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.new-e7df {
  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;
}

.feature-wide-179f {
  background: var(--color-primary);
  color: white;
}

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

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

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

.smooth-a17b {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.smooth-a17b:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.orange_8369 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

.title-6a08 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.text_d5d3 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.text_d5d3 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);
}

.text_d5d3 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;
}

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

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

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

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

.pattern_old_b366 {
  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);
}

.accordion_4778 {
  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);
}

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

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

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

.button-solid-fe5b {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.button-solid-fe5b img {
  max-width: 100%;
  height: auto;
  display: block;
}

.button-solid-fe5b pre,
.button-solid-fe5b code {
  overflow-x: auto;
  max-width: 100%;
}

.button-solid-fe5b 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);
}

.button-solid-fe5b h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.button-solid-fe5b h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.button-solid-fe5b p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.button-solid-fe5b ul,
.button-solid-fe5b ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.button-solid-fe5b li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.button-solid-fe5b strong {
  font-weight: 600;
  color: var(--color-text);
}

.button-solid-fe5b a {
  color: var(--color-primary);
  text-decoration: underline;
}

.button-solid-fe5b a:hover {
  color: var(--color-primary-dark);
}

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

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

.label_blue_1f33 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) {
  .block-hard-6775 {
    grid-template-columns: 1fr;
  }
  
  .accordion_4778 {
    font-size: 1.75rem;
  }
  
  .button-solid-fe5b {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .accordion_4778 {
    font-size: 1.5rem;
  }
  
  .button-solid-fe5b h3 {
    font-size: 1.375rem;
  }
  
  .button-solid-fe5b h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.last-7c15 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.item-simple-b906 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.status_f2e4 {
  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;
}

.tertiary_6741 {
  flex-shrink: 0;
}

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

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

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

.focus_fdc8,
.banner-ddb9,
.copper_969c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.focus_fdc8 thead,
.banner-ddb9 thead {
  background: var(--color-primary);
  color: white;
}

.focus_fdc8 th,
.focus_fdc8 td,
.banner-ddb9 th,
.banner-ddb9 td,
.copper_969c th,
.copper_969c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .focus_fdc8 th,
  .focus_fdc8 td,
  .banner-ddb9 th,
  .banner-ddb9 td,
  .copper_969c th,
  .copper_969c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .focus_fdc8,
  .banner-ddb9,
  .copper_969c {
    min-width: 600px;
  }
}

.focus_fdc8 th,
.banner-ddb9 th,
.copper_969c th {
  font-weight: 600;
}

.focus_fdc8 tbody tr:hover,
.banner-ddb9 tbody tr:hover,
.copper_969c tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.module-06df {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.article_easy_8301 h4 {
  color: white;
}

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

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

.accordion_advanced_dbbf:last-child {
  border-bottom: none;
}

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

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

.image_d846 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

.border_ca94:hover {
  text-decoration: underline;
}

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

.hidden-middle-ad85 {
  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);
}

.hidden-middle-ad85 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.pagination_short_544d {
  font-weight: 600;
  color: white;
}

.under-1bcc {
  list-style: none;
  padding: 0;
}

.under-1bcc li {
  padding: var(--space-xs) 0;
}

.container_green_17da {
  color: #4caf50;
}

.small-af90 {
  color: #ff9800;
}

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

.sidebar-wide-6d01 {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

.list-7176 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.avatar-thick-b4ff {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.current_3848 .new-e7df {
  width: 100%;
  background: white;
}

.menu-97f7 .new-e7df {
  color: #667eea;
}

.slider_0984 .new-e7df {
  color: #f5576c;
}

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

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

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

.text-steel-040d {
  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);
}

.sort-right-2317 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.accordion-a6d6 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .sort-right-2317 {
    padding: var(--space-md);
  }
  
  .accordion-a6d6 {
    padding: var(--space-md);
  }
  
  .down-6677 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.tabs-huge-38ff ol,
.tabs-huge-38ff ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.tabs-huge-38ff li {
  margin-bottom: var(--space-sm);
}

.tabs-huge-38ff code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

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

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

.down-6677 {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.widget-basic-cb11,
.preview_short_bfcc,
.list_dynamic_87aa,
.notification_1bcf {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.article-38f1 {
  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) {
  .article-38f1 {
    font-size: 0.625rem;
  }
}

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

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

.button-middle-eade {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.button-middle-eade h4 {
  margin-bottom: var(--space-md);
}

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

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

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

@media (max-width: 768px) {
  .chip-first-25d5 {
    grid-template-columns: 1fr;
  }
}

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

.hover-in-45c2 {
  border-color: var(--color-success);
}

.disabled_green_9730 {
  border-color: var(--color-warning);
}

.over_58a1 {
  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);
}

.hover-in-45c2 .over_58a1 {
  background: #e8f5e9;
  color: var(--color-success);
}

.disabled_green_9730 .over_58a1 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.hard-11f3 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

.thumbnail_plasma_82f8 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.filter-2cf7 {
  margin-top: var(--space-xxl);
}

.notification_silver_1330 {
  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);
}

.mask_fd5d {
  text-align: center;
}

.glass_e43c {
  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);
}

.disabled-next-2e7b {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.glass_e43c .pagination_short_544d {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.chip-3e0a {
  margin-bottom: var(--space-xl);
}

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

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

.outline-over-fb20 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

.notice-tiny-70de {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.complex_ba04 {
  border: 2px solid #4caf50;
}

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

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

.under-d5d0 {
  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;
}

.border-mini-8a4d {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.motion_b887 {
  text-align: right;
}

.motion_b887 .east-7eb0 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

.tag-last-3e3a h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.tag-last-3e3a p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

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

.breadcrumb-stale-edcc {
  background: #e8f5e9;
  color: #2e7d32;
}

.tiny_85c8 {
  background: #e3f2fd;
  color: #1565c0;
}

.backdrop-31ef {
  background: #fff3e0;
  color: #e65100;
}

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

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

.modal_a3f6 {
  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);
}

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

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

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

.thumbnail_b555 strong {
  color: var(--color-primary);
}

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.box_black_0310 {
  max-width: 900px;
  margin: 0 auto;
}

.sort-brown-0f62 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.over-08af {
  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);
}

.over-08af:hover {
  background: var(--color-bg-alt);
}

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

.over-08af[aria-expanded="true"] .pattern-f086 {
  transform: rotate(180deg);
}

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

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

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

.progress-current-ecd8 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.texture_glass_b137 {
  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);
}

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

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

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

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

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

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

.form_49cf h4,
.smooth_595f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.form_49cf ul,
.smooth_595f ul {
  list-style: none;
  padding: 0;
}

.form_49cf li,
.smooth_595f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

.sort-green-bfeb {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

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

.feature-in-fc80 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.caption-under-add6 {
  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);
}

.aside-1ebb {
  font-style: italic;
}

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

.section_stone_e53a {
  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;
}

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

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

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

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

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

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

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

.icon-purple-ff55 {
  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);
}

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

.icon-e610 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

.icon-purple-ff55 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.gradient_fb24 .thick_d2d7 {
  color: #4caf50;
  font-size: 0.875rem;
}

.texture-1f76 {
  list-style: none;
  padding: 0;
}

.texture-1f76 li {
  margin-bottom: var(--space-xs);
}

.texture-1f76 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.texture-1f76 a:hover {
  color: white;
}

.middle_8c83 {
  list-style: none;
  padding: 0;
}

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

.middle_8c83 a {
  color: #b0b0b0;
  text-decoration: none;
}

.middle_8c83 a:hover {
  color: white;
}

.fresh_960d {
  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);
}

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

.frame-dark-f9c0 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.secondary_8813:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fresh_960d {
    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;
  }
  
  .steel-74e8 {
    font-size: 2rem;
  }
  
  .accordion_4778 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .element_gold_a271,
  .block-hard-6775 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .box-prev-a5d2,
  .chip-first-25d5,
  .banner-557b,
  .badge_black_64ac,
  .carousel_7fdc,
  .card-d7c7,
  .lower-ffff,
  .aside_under_a0d1 {
    grid-template-columns: 1fr;
  }
  
  .breadcrumb_wood_ba6f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .chip-52aa {
    padding: var(--space-lg) 0;
  }
  
  .text_d5d3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .text_d5d3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .new-e7df {
    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;
  }
  
  .breadcrumb_wood_ba6f {
    grid-template-columns: 1fr;
  }
  
  .focus-edca,
  .accordion_6ac1,
  .nav_cb39 {
    flex-direction: column;
    width: 100%;
  }
  
  .orange_8369,
  .menu-4917,
  .focus-edca .new-e7df,
  .accordion_6ac1 .new-e7df {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .steel-74e8 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .accordion_4778 {
    font-size: 1.375rem;
  }
  
  .hero-stale-6e2b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .yellow-56b6,
  .outer_b073,
  .filter_mini_8df7,
  .media_white_b961,
  .table-in-3164 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .article-38f1 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .chip-iron-6955 {
    gap: var(--space-xs);
  }
  
  .message_0aec {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hidden-middle-ad85 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .glass_e43c {
    width: 150px;
    height: 150px;
  }
  
  .disabled-next-2e7b {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .prev-0373,
  .motion_9fda,
  .focus-edca,
  .section_stone_e53a,
  .carousel-bronze-3237,
  .simple-0da7,
  .wide_e8c5 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .chip-52aa {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.yellow-292e {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: df7a */
.promo-block-v2 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.1;
}
