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

.fluid_28f1:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.picture_paper_f528):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. */
.picture_paper_f528,
header,
.accordion-dim-6e95,
.next-0357,
.up_6f9d,
.pagination_hot_c985,
.element_cbdc,
.clean-9631,
.fast-eb93 {
  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
   ============================================ */
.picture_paper_f528 {
  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);
}

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

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

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

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

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

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

.element-east-3a69 {
  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;
}

.video_clean_fba5 {
  flex: 1;
}

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

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

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

.wide_2da0.pattern-ca2f {
  background: var(--color-primary);
  color: white;
}

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

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

.paragraph-silver-9624 svg {
  transition: transform 0.2s ease;
}

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

.dirty-94b4 {
  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;
}

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

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

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

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

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

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

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

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

.right_f602 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .video_clean_fba5 {
    display: none;
  }
  
  .dark_c617 {
    display: flex;
  }
  
  .element-east-3a69 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .right_f602,
  .easy-8373 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .widget_7f7d {
    position: relative;
  }
  
  .dirty-94b4 {
    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;
  }
  
  .paragraph-silver-9624[aria-expanded="true"] + .dirty-94b4 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .header-prev-1170 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .accent-df13 {
    gap: 8px;
  }
  
  .right_f602 {
    display: none;
  }
  
  .easy-8373 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hidden_iron_6e75 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .easy-8373 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .easy-8373 svg {
    width: 14px;
    height: 14px;
  }
  
  .title-226b {
    gap: var(--space-sm);
  }
}

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

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

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

.search_middle_c227 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

.paragraph-9498 {
  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) {
  .paragraph-9498 {
    font-size: 2rem;
  }
}

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

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

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

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

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

.button-hard-5b49 {
  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;
}

.grid-narrow-b27f {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.grid-narrow-b27f strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.grid-cold-b7ec {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .paper_22f7 {
    grid-template-columns: 1fr;
  }
  
  .paragraph-9498 {
    font-size: 1.75rem;
  }
  
  .header_daf2 {
    order: -1;
    max-width: 100%;
  }
  
  .grid-cold-b7ec {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .paragraph-9498 {
    font-size: 1.5rem;
  }
  
  .mask-light-6f62 {
    font-size: 1rem;
  }
  
  .description_96c4 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .grid-cold-b7ec {
    max-width: 250px;
  }
}

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

.up-78f1 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.tag-outer-b9ac {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element-large-3f70 {
  background: var(--color-bg-section);
}

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

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

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

.form-huge-3fc3 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

.link_ce7f img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

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

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

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

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

.link_ce7f a {
  color: var(--color-primary);
  text-decoration: underline;
}

.link_ce7f a:hover {
  color: var(--color-primary-dark);
}

.sidebar-pro-f07f {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.sidebar-pro-f07f 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) {
  .down_337f {
    grid-template-columns: 1fr;
  }
  
  .static-c0ee {
    font-size: 1.75rem;
  }
  
  .link_ce7f {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .static-c0ee {
    font-size: 1.5rem;
  }
  
  .link_ce7f h3 {
    font-size: 1.375rem;
  }
  
  .link_ce7f h4 {
    font-size: 1.125rem;
  }
}

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

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

.filter-73d1 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.slider-orange-a626 {
  flex-shrink: 0;
}

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

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

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

.texture-wide-3b4c,
.surface_ed0d,
.title-7f28 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.texture-wide-3b4c thead,
.surface_ed0d thead {
  background: var(--color-primary);
  color: white;
}

.texture-wide-3b4c th,
.texture-wide-3b4c td,
.surface_ed0d th,
.surface_ed0d td,
.title-7f28 th,
.title-7f28 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .texture-wide-3b4c th,
  .texture-wide-3b4c td,
  .surface_ed0d th,
  .surface_ed0d td,
  .title-7f28 th,
  .title-7f28 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .texture-wide-3b4c,
  .surface_ed0d,
  .title-7f28 {
    min-width: 600px;
  }
}

.texture-wide-3b4c th,
.surface_ed0d th,
.title-7f28 th {
  font-weight: 600;
}

.texture-wide-3b4c tbody tr:hover,
.surface_ed0d tbody tr:hover,
.title-7f28 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.lite_a8b5 h4 {
  color: white;
}

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

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

.label-0ecf:last-child {
  border-bottom: none;
}

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

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

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

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

.border-south-dce6:hover {
  text-decoration: underline;
}

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

.carousel_basic_43d8 {
  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_basic_43d8 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.secondary-in-d63c {
  font-weight: 600;
  color: white;
}

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

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

.pro-99ba {
  color: #4caf50;
}

.notification_white_d377 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-light-3c6f h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

.article-upper-4f74 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.article-upper-4f74 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.article-upper-4f74 li {
  padding: var(--space-xs) 0;
  color: white;
}

.article-upper-4f74 .feature_216c {
  width: 100%;
  background: white;
}

.avatar_26ee .feature_216c {
  color: #667eea;
}

.video-focused-575f .feature_216c {
  color: #f5576c;
}

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

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

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

.avatar-hot-c57b {
  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);
}

.basic-4dbc h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .basic-4dbc {
    padding: var(--space-md);
  }
  
  .copper_92ac {
    padding: var(--space-md);
  }
  
  .down-fcdb {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.alert_west_b8d3,
.new_266b,
.accordion_f7b3,
.yellow-91b4 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.dynamic-2d99:hover {
  background: var(--color-primary-dark);
}

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

.input-motion-0fd6 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.small-0aaf {
  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);
}

.filter_cool_d82e .small-0aaf {
  background: #e8f5e9;
  color: var(--color-success);
}

.top_5b94 .small-0aaf {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.title-cold-252e {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.west-d6b3 {
  text-align: center;
}

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

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

.hero_smooth_4437 .secondary-in-d63c {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.modal-wide-fb0c p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview-active-6d61 {
  border: 2px solid #4caf50;
}

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

.accent-inner-187a {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.banner-gas-d3c9 {
  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;
}

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

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

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

.image_dark_da70 {
  text-align: right;
}

.image_dark_da70 .component-upper-c974 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.form-bright-0ad3 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

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

.status-f066 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.secondary-selected-1b99 {
  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);
}

.secondary-selected-1b99:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.progress-93ed {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.dropdown_754d[aria-expanded="true"] .progress-93ed {
  transform: rotate(180deg);
}

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

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

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

.south-5cdf li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.row_4eb6 ul,
.focus_pro_3c23 ul {
  list-style: none;
  padding: 0;
}

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

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

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

.texture-clean-4e1d {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.texture-clean-4e1d ul {
  list-style: none;
  padding: 0;
}

.texture-clean-4e1d li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.tertiary-4a43 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.static_2a91 .action_4365 {
  color: #4caf50;
  font-size: 0.875rem;
}

.texture-advanced-c2fd {
  list-style: none;
  padding: 0;
}

.texture-advanced-c2fd li {
  margin-bottom: var(--space-xs);
}

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

.texture-advanced-c2fd a:hover {
  color: white;
}

.list-slow-bb0b {
  list-style: none;
  padding: 0;
}

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

.list-slow-bb0b a {
  color: #b0b0b0;
  text-decoration: none;
}

.list-slow-bb0b a:hover {
  color: white;
}

.chip-inner-8034 {
  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);
}

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

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

.box-active-7989 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.mask-e221:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .chip-inner-8034 {
    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;
  }
  
  .paragraph-9498 {
    font-size: 2rem;
  }
  
  .static-c0ee {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .paper_22f7,
  .down_337f {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .layout-down-bbf2,
  .grid-9617,
  .wrapper-5430,
  .row_stone_e0ca,
  .small_1e6b,
  .motion-7ca1,
  .white_3810,
  .solid-f157 {
    grid-template-columns: 1fr;
  }
  
  .grid_dim_d85b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .element_cbdc {
    padding: var(--space-lg) 0;
  }
  
  .info_6326 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .info_6326 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .feature_216c {
    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;
  }
  
  .grid_dim_d85b {
    grid-template-columns: 1fr;
  }
  
  .current-fd41,
  .large_b012,
  .alert_95e6 {
    flex-direction: column;
    width: 100%;
  }
  
  .tag_bronze_b033,
  .tag-outer-b9ac,
  .current-fd41 .feature_216c,
  .large_b012 .feature_216c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .paragraph-9498 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .static-c0ee {
    font-size: 1.375rem;
  }
  
  .form_d2cf {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .easy-4d07,
  .gas-9ded,
  .icon-smooth-225c,
  .next_60b4,
  .footer_bronze_50ec {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .small_bf37 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .thumbnail_c45f {
    gap: var(--space-xs);
  }
  
  .search_middle_c227 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .carousel_basic_43d8 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hero_smooth_4437 {
    width: 150px;
    height: 150px;
  }
  
  .action-4f48 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .picture_paper_f528,
  .accordion-dim-6e95,
  .current-fd41,
  .outer_c662,
  .clean-9631,
  .fast-eb93,
  .dark_c617 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .element_cbdc {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 7894 */
.widget-item-q7 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.1;
}
