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

.search-last-ea98:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.fast_6f4d,
header,
.gradient_7f87,
.middle_4f26,
.medium-4174,
.wood_b0c3,
.medium-c540,
.button-yellow-ed37,
.west_513b {
  max-width: none;
}

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

.tooltip-bronze-c345 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.notification-motion-d43f img {
  height: 36px;
  width: auto;
  display: block;
}

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

.input-hard-a9fe {
  flex: 1;
}

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

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

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

.button-4375.fn-active-19f8 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.new-e6bb {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bright-bd3f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.bronze-9704[aria-expanded="true"] .medium-bb02:nth-child(2) {
  opacity: 0;
}

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

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

  .input-hard-a9fe::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .input-hard-a9fe.sidebar-upper-99f5 {
    display: block;
    right: 0;
  }
  
  .link-large-cb6d {
    flex-direction: column;
    gap: 0;
  }
  
  .button-4375 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .input-hard-a9fe::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;
  }
  
  .input-hard-a9fe.sidebar-upper-99f5::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .input-hard-a9fe {
    display: none;
  }
  
  .bronze-9704 {
    display: flex;
  }
  
  .tag_29c4 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .bright-bd3f,
  .detail_a2e7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .new-e6bb {
    position: relative;
  }
  
  .smooth_a25d {
    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;
  }
  
  .dark_ac0b[aria-expanded="true"] + .smooth_a25d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .dynamic_3fca {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .border_59f1 {
    gap: 8px;
  }
  
  .bright-bd3f {
    display: none;
  }
  
  .detail_a2e7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .notification-motion-d43f img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.main_north_47e3 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.cool-452c a {
  color: var(--color-primary);
  text-decoration: none;
}

.cool-452c a:hover {
  text-decoration: underline;
}

.white-47f7 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.avatar-clean-f051 {
  display: flex;
  gap: var(--space-sm);
}

.menu-387d {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .heading_dcc3 {
    grid-template-columns: 1fr;
  }
  
  .modal_22d6 {
    font-size: 1.75rem;
  }
  
  .bright-b25a {
    order: -1;
    max-width: 100%;
  }
  
  .simple_9022 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .modal_22d6 {
    font-size: 1.5rem;
  }
  
  .button_96c4 {
    font-size: 1rem;
  }
  
  .cool-452c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .simple_9022 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.detail-large-94b4 {
  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;
}

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

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

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

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

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

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

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

.form-right-a219 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-6130 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;
}

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

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

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

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

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

.avatar-down-4c72 {
  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);
}

.element-pressed-7e8d {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mask-cold-b55a {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.mask-cold-b55a 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) {
  .backdrop-08ea {
    grid-template-columns: 1fr;
  }
  
  .avatar-down-4c72 {
    font-size: 1.75rem;
  }
  
  .panel_basic_a840 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .avatar-down-4c72 {
    font-size: 1.5rem;
  }
  
  .panel_basic_a840 h3 {
    font-size: 1.375rem;
  }
  
  .panel_basic_a840 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.item-south-1a50 {
  flex-shrink: 0;
}

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

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

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

.footer_fast_81ab,
.small_a4f0,
.hot-6272 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.footer_fast_81ab thead,
.small_a4f0 thead {
  background: var(--color-primary);
  color: white;
}

.footer_fast_81ab th,
.footer_fast_81ab td,
.small_a4f0 th,
.small_a4f0 td,
.hot-6272 th,
.hot-6272 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer_fast_81ab th,
  .footer_fast_81ab td,
  .small_a4f0 th,
  .small_a4f0 td,
  .hot-6272 th,
  .hot-6272 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .footer_fast_81ab,
  .small_a4f0,
  .hot-6272 {
    min-width: 600px;
  }
}

.footer_fast_81ab th,
.small_a4f0 th,
.hot-6272 th {
  font-weight: 600;
}

.footer_fast_81ab tbody tr:hover,
.small_a4f0 tbody tr:hover,
.hot-6272 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.tooltip-ca50 h4 {
  color: white;
}

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

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

.outline-west-40a2:last-child {
  border-bottom: none;
}

.outline-west-40a2 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.outline-west-40a2 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

.glass-e34c {
  color: #4caf50;
}

.progress-center-60bf {
  color: #ff9800;
}

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

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

.menu-hard-92bb {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.content_bright_c175 .detail-large-94b4 {
  width: 100%;
  background: white;
}

.yellow-a86a .detail-large-94b4 {
  color: #667eea;
}

.small-a441 .detail-large-94b4 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .aside_30c0 {
    padding: var(--space-md);
  }
  
  .bronze_8733 {
    padding: var(--space-md);
  }
  
  .description_mini_e0ef {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.preview-narrow-eb43 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.tabs_warm_6424,
.nav-pro-a5f6,
.aside-beb1,
.paper_50d7 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.pro-9d69:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.chip-37d2 {
  border-color: var(--color-warning);
}

.border-9a0f {
  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);
}

.link-a649 .border-9a0f {
  background: #e8f5e9;
  color: var(--color-success);
}

.chip-37d2 .border-9a0f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.mask-white-a30b {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.hidden-0d4d {
  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);
}

.cold-49a4 {
  text-align: center;
}

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

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

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

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

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

.layout-dark-5ad6 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.red-7d6d {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.white-e863 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.backdrop_narrow_7e2a {
  text-align: right;
}

.backdrop_narrow_7e2a .center_16c1 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.logo-steel-6b34 {
  background: #e3f2fd;
  color: #1565c0;
}

.banner-700c {
  background: #fff3e0;
  color: #e65100;
}

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

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

.tooltip-6bd6 {
  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);
}

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

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

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

.paragraph-thick-53cf strong {
  color: var(--color-primary);
}

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

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

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

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

.search-226f {
  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);
}

.search-226f:hover {
  background: var(--color-bg-alt);
}

.content-12de {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.search-226f[aria-expanded="true"] .content-12de {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.west_bf64 ul,
.wood_3e27 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-glass-67b1 {
  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);
}

.section-c1e5 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter_orange_79c5 .avatar-clean-f051 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.dynamic_104a a:hover {
  color: white;
}

.notice-static-f19e {
  list-style: none;
  padding: 0;
}

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

.notice-static-f19e a {
  color: #b0b0b0;
  text-decoration: none;
}

.notice-static-f19e a:hover {
  color: white;
}

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

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

.label-narrow-9b8d a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .secondary_7b9a {
    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;
  }
  
  .modal_22d6 {
    font-size: 2rem;
  }
  
  .avatar-down-4c72 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .heading_dcc3,
  .backdrop-08ea {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .info_0509,
  .backdrop_complex_ed33,
  .accordion_8df7,
  .west-5939,
  .pagination-tall-dad0,
  .card-upper-cb93,
  .easy-0d42,
  .under_cdb9 {
    grid-template-columns: 1fr;
  }
  
  .motion-daf3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .medium-c540 {
    padding: var(--space-lg) 0;
  }
  
  .dropdown-6130 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .dropdown-6130 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .detail-large-94b4 {
    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;
  }
  
  .motion-daf3 {
    grid-template-columns: 1fr;
  }
  
  .texture-f9ac,
  .fast-ee94,
  .slider_small_49f8 {
    flex-direction: column;
    width: 100%;
  }
  
  .advanced-cebd,
  .form-right-a219,
  .texture-f9ac .detail-large-94b4,
  .fast-ee94 .detail-large-94b4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .modal_22d6 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .avatar-down-4c72 {
    font-size: 1.375rem;
  }
  
  .lower-61cf {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .new-e47c,
  .gradient_dirty_6d0d,
  .description-eabc,
  .footer-8c4a,
  .inner_93fd {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .accordion_complex_444b {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .modal-38ad {
    gap: var(--space-xs);
  }
  
  .main_north_47e3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .pink_4fe0 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .primary_8ce4 {
    width: 150px;
    height: 150px;
  }
  
  .current-ec3d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .fast_6f4d,
  .gradient_7f87,
  .texture-f9ac,
  .soft-d5aa,
  .button-yellow-ed37,
  .west_513b,
  .bronze-9704 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .medium-c540 {
    page-break-inside: avoid;
  }
}

/* css-noise: 0a1e */
.phantom-card-o0 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.1;
}
