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

.header-afcf:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.border_current_76a3):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. */
.border_current_76a3,
header,
.component-next-9de1,
.row_glass_72fc,
.copper_9c43,
.paper_654a,
.old_0814,
.list-large-32f3,
.paragraph-top-dc86 {
  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
   ============================================ */
.border_current_76a3 {
  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);
}

.disabled-72b9 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.preview-28ea img {
  height: 36px;
  width: auto;
  display: block;
}

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

.progress-939e {
  flex: 1;
}

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

.title-6e2c {
  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);
}

.title-6e2c:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.title-6e2c.hidden_a679 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.bottom-38f2 {
  position: relative;
}

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

.info-complex-6b6f svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.slider-0589 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .progress-939e::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .progress-939e.dropdown-85d2 {
    display: block;
    right: 0;
  }
  
  .breadcrumb_2126 {
    flex-direction: column;
    gap: 0;
  }
  
  .title-6e2c {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .progress-939e::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;
  }
  
  .progress-939e.dropdown-85d2::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .progress-939e {
    display: none;
  }
  
  .thumbnail_under_0c22 {
    display: flex;
  }
  
  .hero_110c {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .slider-0589,
  .dirty-b0d4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .bottom-38f2 {
    position: relative;
  }
  
  .white-a93f {
    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-complex-6b6f[aria-expanded="true"] + .white-a93f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .warm-6def {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .layout_af16 {
    gap: 8px;
  }
  
  .slider-0589 {
    display: none;
  }
  
  .dirty-b0d4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .preview-28ea img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.medium_c451 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.detail-inner-2791 a {
  color: var(--color-primary);
  text-decoration: none;
}

.detail-inner-2791 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

.highlight-copper-f1e5 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.under-04ab {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .tabs-large-3634 {
    grid-template-columns: 1fr;
  }
  
  .hover_iron_d2db {
    font-size: 1.75rem;
  }
  
  .highlight-copper-f1e5 {
    order: -1;
    max-width: 100%;
  }
  
  .under-04ab {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hover_iron_d2db {
    font-size: 1.5rem;
  }
  
  .lite-1b42 {
    font-size: 1rem;
  }
  
  .detail-inner-2791 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .under-04ab {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.background-large-248c {
  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;
}

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

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

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

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

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

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

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

.gold-27fb {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

.border-easy-26b0 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

.active-7ee5 {
  background: var(--color-bg-section);
}

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

.message-red-9005 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.west-b858 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) {
  .component_plasma_9766 {
    grid-template-columns: 1fr;
  }
  
  .chip_a7d8 {
    font-size: 1.75rem;
  }
  
  .block_c9fa {
    max-width: 100%;
  }
}

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

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

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

.frame-out-9d4a {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.south-6e53 {
  flex-shrink: 0;
}

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

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

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

.upper_d1ba,
.upper-ced5,
.message_out_e9bc {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.upper_d1ba thead,
.upper-ced5 thead {
  background: var(--color-primary);
  color: white;
}

.upper_d1ba th,
.upper_d1ba td,
.upper-ced5 th,
.upper-ced5 td,
.message_out_e9bc th,
.message_out_e9bc td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .upper_d1ba th,
  .upper_d1ba td,
  .upper-ced5 th,
  .upper-ced5 td,
  .message_out_e9bc th,
  .message_out_e9bc td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .upper_d1ba,
  .upper-ced5,
  .message_out_e9bc {
    min-width: 600px;
  }
}

.upper_d1ba th,
.upper-ced5 th,
.message_out_e9bc th {
  font-weight: 600;
}

.upper_d1ba tbody tr:hover,
.upper-ced5 tbody tr:hover,
.message_out_e9bc tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.hover-inner-0d7d h4 {
  color: white;
}

.form-down-0a4e {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.icon-up-9351:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.gold-f2aa {
  list-style: none;
  padding: 0;
}

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

.text_5f28 {
  color: #4caf50;
}

.next_d00f {
  color: #ff9800;
}

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

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

.backdrop-hot-4cb9 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

.disabled-dynamic-483d {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.old_0259 .background-large-248c {
  width: 100%;
  background: white;
}

.link-wood-fa31 .background-large-248c {
  color: #667eea;
}

.row-red-15ee .background-large-248c {
  color: #f5576c;
}

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

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

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

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

.nav-static-4f99 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .nav-static-4f99 {
    padding: var(--space-md);
  }
  
  .slider-c07f {
    padding: var(--space-md);
  }
  
  .tertiary-east-e0e3 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.content-bright-f033,
.column_last_8b4a,
.huge_dd79,
.tooltip_c394 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.disabled-slow-e37f h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.caption-purple-5ed3 {
  border-color: var(--color-success);
}

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

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

.caption-purple-5ed3 .hidden_b4fd {
  background: #e8f5e9;
  color: var(--color-success);
}

.message_warm_473d .hidden_b4fd {
  background: #fff3e0;
  color: var(--color-warning);
}

.active-motion-1efa h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.active-motion-1efa p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

.input-hard-9cf0 {
  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);
}

.sort_a42f {
  text-align: center;
}

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

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

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

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

.widget-warm-ee73 p {
  margin-bottom: var(--space-md);
}

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

@media (max-width: 768px) {
  .input-hard-9cf0 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.banner-upper-615b {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.search-c87f {
  text-align: right;
}

.search-c87f .sidebar_20a7 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.highlight-south-8bba {
  background: #e3f2fd;
  color: #1565c0;
}

.active_complex_b702 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.row-fast-1c4f strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.warm_de33[aria-expanded="true"] .breadcrumb_6420 {
  transform: rotate(180deg);
}

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

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

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

.dark-90bf li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.hover-soft-dbd0 {
  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);
}

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

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

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

.focus-south-c7ee,
.logo-f1ea {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.focus-south-c7ee h4,
.logo-f1ea h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.focus-south-c7ee ul,
.logo-f1ea ul {
  list-style: none;
  padding: 0;
}

.focus-south-c7ee li,
.logo-f1ea li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.wrapper-middle-b0b0 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.badge-orange-3746 {
  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);
}

.pink_9916 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mini_198f .up_18eb {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.content_next_5573 a:hover {
  color: white;
}

.info-light-0c94 {
  list-style: none;
  padding: 0;
}

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

.info-light-0c94 a {
  color: #b0b0b0;
  text-decoration: none;
}

.info-light-0c94 a:hover {
  color: white;
}

.hover-727c {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .hover-727c {
    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;
  }
  
  .hover_iron_d2db {
    font-size: 2rem;
  }
  
  .chip_a7d8 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tabs-large-3634,
  .component_plasma_9766 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .clean_4381,
  .texture-e819,
  .gold_b531,
  .active_narrow_cc67,
  .background-12f3,
  .avatar_3068,
  .hover-a266,
  .paragraph_f080 {
    grid-template-columns: 1fr;
  }
  
  .gallery-e77f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .old_0814 {
    padding: var(--space-lg) 0;
  }
  
  .list_df18 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .list_df18 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .background-large-248c {
    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;
  }
  
  .gallery-e77f {
    grid-template-columns: 1fr;
  }
  
  .popup_2654,
  .shadow-f8b8,
  .gallery_0f99 {
    flex-direction: column;
    width: 100%;
  }
  
  .top_e5d9,
  .gold-27fb,
  .popup_2654 .background-large-248c,
  .shadow-f8b8 .background-large-248c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .hover_iron_d2db {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .chip_a7d8 {
    font-size: 1.375rem;
  }
  
  .photo_ba61 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .background_bright_2b62,
  .paragraph_86ab,
  .avatar-bronze-4d22,
  .mask-04e5,
  .notice_bottom_72d1 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .pressed-14bd {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .media_f6e4 {
    gap: var(--space-xs);
  }
  
  .medium_c451 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .photo_warm_8c67 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .outline_south_5a46 {
    width: 150px;
    height: 150px;
  }
  
  .layout-bd62 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .border_current_76a3,
  .component-next-9de1,
  .popup_2654,
  .first_5584,
  .list-large-32f3,
  .paragraph-top-dc86,
  .thumbnail_under_0c22 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .old_0814 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 64f4 */
.phantom-card-x6 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.2;
}
