/* ============================================
   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)
   ============================================ */
.filter-south-4a63 {
  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;
}

.filter-south-4a63:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.picture_fixed_1db9):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_fixed_1db9,
header,
.article_97ff,
.popup-b669,
.last_23ee,
.plasma-f4f3,
.highlight_current_e07b,
.pressed_2283,
.status-2559 {
  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_fixed_1db9 {
  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);
}

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

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

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

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

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

.breadcrumb-pro-671b img {
  height: 36px;
  width: auto;
  display: block;
}

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

.shadow-cool-30b6 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.surface-medium-c562 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.glass-aede svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.gradient-outer-a612[aria-expanded="true"] .notification-paper-3789:nth-child(2) {
  opacity: 0;
}

.gradient-outer-a612[aria-expanded="true"] .notification-paper-3789:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .shadow-cool-30b6::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .shadow-cool-30b6.sort_4daf {
    display: block;
    right: 0;
  }
  
  .pagination-pressed-235c {
    flex-direction: column;
    gap: 0;
  }
  
  .shade_bronze_b06c {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .shadow-cool-30b6::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;
  }
  
  .shadow-cool-30b6.sort_4daf::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .shadow-cool-30b6 {
    display: none;
  }
  
  .gradient-outer-a612 {
    display: flex;
  }
  
  .over_2696 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .glass-aede,
  .heading_liquid_d4d5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .surface-medium-c562 {
    position: relative;
  }
  
  .pagination_top_3138 {
    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;
  }
  
  .notice_hard_b058[aria-expanded="true"] + .pagination_top_3138 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .filter_2f26 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .active_short_ea48 {
    gap: 8px;
  }
  
  .glass-aede {
    display: none;
  }
  
  .heading_liquid_d4d5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .breadcrumb-pro-671b img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.search_inner_bb5e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade-short-db5c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.nav-77cc {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .nav_69e0 {
    grid-template-columns: 1fr;
  }
  
  .green_95a7 {
    font-size: 1.75rem;
  }
  
  .active_wide_ffb2 {
    order: -1;
    max-width: 100%;
  }
  
  .nav-77cc {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .green_95a7 {
    font-size: 1.5rem;
  }
  
  .gradient_medium_bd87 {
    font-size: 1rem;
  }
  
  .backdrop_thick_5a8a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .nav-77cc {
    max-width: 250px;
  }
}

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

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

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

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

.bottom-20b2:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.shade-mini-ae9c {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-aef7 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;
}

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

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

.menu-9d53 {
  background: var(--color-bg-section);
}

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

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

.tertiary_slow_de4a {
  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_out_c008 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

.menu-7e09 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

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

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

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

.menu-7e09 strong {
  font-weight: 600;
  color: var(--color-text);
}

.menu-7e09 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.menu-7e09 a:hover {
  color: var(--color-primary-dark);
}

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

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

.icon_5cf7 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) {
  .dropdown-8326 {
    grid-template-columns: 1fr;
  }
  
  .tertiary_slow_de4a {
    font-size: 1.75rem;
  }
  
  .menu-7e09 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tertiary_slow_de4a {
    font-size: 1.5rem;
  }
  
  .menu-7e09 h3 {
    font-size: 1.375rem;
  }
  
  .menu-7e09 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.modal-3f8b {
  flex-shrink: 0;
}

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

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

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

.purple_279c,
.active-e22b,
.pressed-e50b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.purple_279c thead,
.active-e22b thead {
  background: var(--color-primary);
  color: white;
}

.purple_279c th,
.purple_279c td,
.active-e22b th,
.active-e22b td,
.pressed-e50b th,
.pressed-e50b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .purple_279c th,
  .purple_279c td,
  .active-e22b th,
  .active-e22b td,
  .pressed-e50b th,
  .pressed-e50b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .purple_279c,
  .active-e22b,
  .pressed-e50b {
    min-width: 600px;
  }
}

.purple_279c th,
.active-e22b th,
.pressed-e50b th {
  font-weight: 600;
}

.purple_279c tbody tr:hover,
.active-e22b tbody tr:hover,
.pressed-e50b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.disabled-hard-cf8e {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.west-274a h4 {
  color: white;
}

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

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

.pro-cf91:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.aside-tiny-54e8 {
  font-weight: 600;
  color: white;
}

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

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

.photo_b20e {
  color: #4caf50;
}

.primary-8cbb {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside-tiny-54e8 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.hidden-next-9cd9 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview_new_f430 .hero_new_d514 {
  width: 100%;
  background: white;
}

.short-def2 .hero_new_d514 {
  color: #667eea;
}

.east_1b20 .hero_new_d514 {
  color: #f5576c;
}

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

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

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

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

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

.warm-3b00 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .block_8a0d {
    padding: var(--space-md);
  }
  
  .warm-3b00 {
    padding: var(--space-md);
  }
  
  .accent-38e6 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.block_red_742e,
.gradient_228f,
.under-7963,
.bronze_8cc7 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.widget-left-9dac {
  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) {
  .widget-left-9dac {
    font-size: 0.625rem;
  }
}

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

.large-1f0b:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.tabs_dirty_5901 .notification_dark_c8cb {
  background: #e8f5e9;
  color: var(--color-success);
}

.widget_2b30 .notification_dark_c8cb {
  background: #fff3e0;
  color: var(--color-warning);
}

.accent-motion-146e h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.accent-motion-146e p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.alert-advanced-64a8 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.photo_smooth_441e {
  text-align: center;
}

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

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

.footer_ff03 .aside-tiny-54e8 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.message-current-d8aa p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.overlay-lite-cde9 {
  border: 2px solid #4caf50;
}

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

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

.icon-6ad1 {
  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;
}

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

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

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

.tabs-light-16c7 {
  text-align: right;
}

.tabs-light-16c7 .title_solid_d4f0 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.progress-4774 {
  background: #e8f5e9;
  color: #2e7d32;
}

.title-dark-5598 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-c5ed,
.avatar-warm-f4ba {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.list-c5ed h4,
.avatar-warm-f4ba h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.list-c5ed ul,
.avatar-warm-f4ba ul {
  list-style: none;
  padding: 0;
}

.list-c5ed li,
.avatar-warm-f4ba li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.element_4476 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.progress_purple_9c3a .under_a592 {
  color: #4caf50;
  font-size: 0.875rem;
}

.dark-d473 {
  list-style: none;
  padding: 0;
}

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

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

.dark-d473 a:hover {
  color: white;
}

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

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

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

.slider_bda4 a:hover {
  color: white;
}

.tooltip-light-867f {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .tooltip-light-867f {
    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;
  }
  
  .green_95a7 {
    font-size: 2rem;
  }
  
  .tertiary_slow_de4a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .nav_69e0,
  .dropdown-8326 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .description-760f,
  .warm_76a2,
  .light-c5b4,
  .notification_f4b0,
  .hover_mini_0ed4,
  .hero-medium-8043,
  .module-fc63,
  .card-over-fdf2 {
    grid-template-columns: 1fr;
  }
  
  .pressed-b32d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .highlight_current_e07b {
    padding: var(--space-lg) 0;
  }
  
  .pattern-aef7 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .pattern-aef7 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .hero_new_d514 {
    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;
  }
  
  .pressed-b32d {
    grid-template-columns: 1fr;
  }
  
  .shade-short-db5c,
  .disabled_pink_bd35,
  .yellow_dec0 {
    flex-direction: column;
    width: 100%;
  }
  
  .shade-mini-ae9c,
  .description_purple_a94a,
  .shade-short-db5c .hero_new_d514,
  .disabled_pink_bd35 .hero_new_d514 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .green_95a7 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tertiary_slow_de4a {
    font-size: 1.375rem;
  }
  
  .description_in_b2b3 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .huge_d7e8,
  .surface_5bd7,
  .hot-9634,
  .full-94b9,
  .grid_bronze_7ae7 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .widget-left-9dac {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .summary-d2cf {
    gap: var(--space-xs);
  }
  
  .search_inner_bb5e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .primary-deee {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .footer_ff03 {
    width: 150px;
    height: 150px;
  }
  
  .input_black_a7db {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .picture_fixed_1db9,
  .article_97ff,
  .shade-short-db5c,
  .gradient_4fd4,
  .pressed_2283,
  .status-2559,
  .gradient-outer-a612 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .highlight_current_e07b {
    page-break-inside: avoid;
  }
}

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

/* css-noise: ec53 */
.shadow-element-o4 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.3;
}
