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

.south_29b2:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.label-fc79):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. */
.label-fc79,
header,
.article_a7a5,
.chip_huge_b471,
.advanced_b7eb,
.green_84e6,
.red-89cc,
.pagination-medium-ce60,
.bronze_a3de {
  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
   ============================================ */
.label-fc79 {
  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);
}

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

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

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

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

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

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

.paragraph-0d33 {
  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;
}

.popup_last_f30e {
  flex: 1;
}

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

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

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

.top_7beb.hero-cdf6 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.dynamic-04a5 {
  position: relative;
}

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

.info-selected-bc7c svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.description_cc40 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.footer_down_7506 {
  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;
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .popup_last_f30e {
    display: none;
  }
  
  .pattern_7e0d {
    display: flex;
  }
  
  .paragraph-0d33 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .description_cc40,
  .footer_down_7506 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .dynamic-04a5 {
    position: relative;
  }
  
  .backdrop_0782 {
    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;
  }
  
  .info-selected-bc7c[aria-expanded="true"] + .backdrop_0782 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tertiary_a59c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .content-8d51 {
    gap: 8px;
  }
  
  .description_cc40 {
    display: none;
  }
  
  .footer_down_7506 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .light_469a img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .footer_down_7506 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .footer_down_7506 svg {
    width: 14px;
    height: 14px;
  }
  
  .hover-e031 {
    gap: var(--space-sm);
  }
}

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

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

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

.message_dynamic_ac00 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.alert-cae2 {
  color: var(--color-text-lighter);
}

.content-48c4 {
  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) {
  .content-48c4 {
    font-size: 2rem;
  }
}

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

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

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

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

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

.bottom-6ddc {
  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;
}

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

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

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

.static-5bfd {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.white-1411 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .rough-40bb {
    grid-template-columns: 1fr;
  }
  
  .content-48c4 {
    font-size: 1.75rem;
  }
  
  .white-1411 {
    order: -1;
    max-width: 100%;
  }
  
  .section_outer_b175 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .content-48c4 {
    font-size: 1.5rem;
  }
  
  .widget-ec88 {
    font-size: 1rem;
  }
  
  .tag_a1cc {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .section_outer_b175 {
    max-width: 250px;
  }
}

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

.border-up-1500 {
  background: var(--color-primary);
  color: white;
}

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

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

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

.element-9d32 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.purple-9008 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;
}

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

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

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

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

.badge-iron-eeda {
  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);
}

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

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

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

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

.shade-over-6007 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.shade-over-6007 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.shade-over-6007 pre,
.shade-over-6007 code {
  overflow-x: auto;
  max-width: 100%;
}

.shade-over-6007 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);
}

.shade-over-6007 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.shade-over-6007 h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.shade-over-6007 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.shade-over-6007 ul,
.shade-over-6007 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.shade-over-6007 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.shade-over-6007 strong {
  font-weight: 600;
  color: var(--color-text);
}

.shade-over-6007 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.shade-over-6007 a:hover {
  color: var(--color-primary-dark);
}

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

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

.panel_9ad0 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) {
  .fluid_07fe {
    grid-template-columns: 1fr;
  }
  
  .dropdown-fdd0 {
    font-size: 1.75rem;
  }
  
  .shade-over-6007 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .dropdown-fdd0 {
    font-size: 1.5rem;
  }
  
  .shade-over-6007 h3 {
    font-size: 1.375rem;
  }
  
  .shade-over-6007 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

.summary-cool-e343 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.form-tiny-fbf3 {
  flex-shrink: 0;
}

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

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

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

.action_f750,
.accent_ffd3,
.east-2f4c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.action_f750 thead,
.accent_ffd3 thead {
  background: var(--color-primary);
  color: white;
}

.action_f750 th,
.action_f750 td,
.accent_ffd3 th,
.accent_ffd3 td,
.east-2f4c th,
.east-2f4c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .action_f750 th,
  .action_f750 td,
  .accent_ffd3 th,
  .accent_ffd3 td,
  .east-2f4c th,
  .east-2f4c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .action_f750,
  .accent_ffd3,
  .east-2f4c {
    min-width: 600px;
  }
}

.action_f750 th,
.accent_ffd3 th,
.east-2f4c th {
  font-weight: 600;
}

.action_f750 tbody tr:hover,
.accent_ffd3 tbody tr:hover,
.east-2f4c tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.gallery-light-c52d {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.outline-898d h4 {
  color: white;
}

.banner-dynamic-3f25 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.shade-840d:last-child {
  border-bottom: none;
}

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

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

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

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

.texture-d6e4:hover {
  text-decoration: underline;
}

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

.carousel-24d9 {
  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);
}

.carousel-24d9 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

.paragraph-2312 {
  list-style: none;
  padding: 0;
}

.paragraph-2312 li {
  padding: var(--space-xs) 0;
}

.tooltip_29a0 {
  color: #4caf50;
}

.up_c111 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.footer-last-3d7a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.main-action-1121 {
  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;
}

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

.footer-last-3d7a p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo-black-ef90 .out-d15e {
  width: 100%;
  background: white;
}

.outline-fresh-b423 .out-d15e {
  color: #667eea;
}

.detail-e4c2 .out-d15e {
  color: #f5576c;
}

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

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

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

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

.advanced-3266 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.detail-366f {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .advanced-3266 {
    padding: var(--space-md);
  }
  
  .detail-366f {
    padding: var(--space-md);
  }
  
  .breadcrumb_65b0 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.last_48c1 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.liquid_447d,
.column_down_1dbb,
.nav-selected-a183,
.description_a3e2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.image-first-efa1 {
  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) {
  .image-first-efa1 {
    font-size: 0.625rem;
  }
}

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

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

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

.wide_a12d h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

.primary-inner-83cf {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

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

.message-137b {
  border-color: var(--color-warning);
}

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

.header_32b7 .box-3460 {
  background: #e8f5e9;
  color: var(--color-success);
}

.message-137b .box-3460 {
  background: #fff3e0;
  color: var(--color-warning);
}

.primary-inner-83cf h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.primary-inner-83cf p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.title-stale-94de {
  margin-top: var(--space-xxl);
}

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

.wood-ca3d {
  text-align: center;
}

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

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

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

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

.aside-green-a89c p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.grid-dirty-3022 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

.content-ac8a {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.warm-33bd {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.warm_3e97 {
  text-align: right;
}

.warm_3e97 .main-d8ab {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.next_694b {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.search-b713 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.hard-84d6 {
  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);
}

.hard-84d6:hover {
  background: var(--color-bg-alt);
}

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

.hard-84d6[aria-expanded="true"] .tabs_selected_d268 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.chip_ecf3,
.dark-63a4 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.chip_ecf3 h4,
.dark-63a4 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.chip_ecf3 ul,
.dark-63a4 ul {
  list-style: none;
  padding: 0;
}

.chip_ecf3 li,
.dark-63a4 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

.full-3aab {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

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

.filter-next-da1d ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.accordion-down-0f2b {
  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);
}

.bright_5ebb {
  font-style: italic;
}

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

.menu-out-89c9 {
  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;
}

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

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

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

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

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

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

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

.bottom-2ad2 {
  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);
}

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

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

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

.bottom-2ad2 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.preview_bronze_5039 .slider_yellow_09fb {
  color: #4caf50;
  font-size: 0.875rem;
}

.row-9bd7 {
  list-style: none;
  padding: 0;
}

.row-9bd7 li {
  margin-bottom: var(--space-xs);
}

.row-9bd7 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.row-9bd7 a:hover {
  color: white;
}

.out-9486 {
  list-style: none;
  padding: 0;
}

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

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

.out-9486 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .next_6109 {
    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;
  }
  
  .content-48c4 {
    font-size: 2rem;
  }
  
  .dropdown-fdd0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .rough-40bb,
  .fluid_07fe {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .shade_7cc2,
  .over_da72,
  .photo_north_9e48,
  .fast_0d26,
  .hover_cbea,
  .preview_246d,
  .content_fresh_11c9,
  .wrapper_50e0 {
    grid-template-columns: 1fr;
  }
  
  .article_pro_2a94 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .red-89cc {
    padding: var(--space-lg) 0;
  }
  
  .purple-9008 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .purple-9008 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .out-d15e {
    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;
  }
  
  .article_pro_2a94 {
    grid-template-columns: 1fr;
  }
  
  .static-5bfd,
  .tiny_2505,
  .filter-b951 {
    flex-direction: column;
    width: 100%;
  }
  
  .description_motion_f716,
  .under_b98a,
  .static-5bfd .out-d15e,
  .tiny_2505 .out-d15e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .content-48c4 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .dropdown-fdd0 {
    font-size: 1.375rem;
  }
  
  .accent_first_a77e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .prev_736a,
  .footer-last-3d7a,
  .hero_f305,
  .icon-4941,
  .dark_87f6 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .image-first-efa1 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .border_63e7 {
    gap: var(--space-xs);
  }
  
  .message_dynamic_ac00 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .carousel-24d9 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .gallery_right_584c {
    width: 150px;
    height: 150px;
  }
  
  .lower-db57 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .label-fc79,
  .article_a7a5,
  .static-5bfd,
  .menu-out-89c9,
  .pagination-medium-ce60,
  .bronze_a3de,
  .pattern_7e0d {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .red-89cc {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.text-gas-908c {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 314d */
.ghost-box-n8 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.2;
}
