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

.info_e03d:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.basic-0bbb,
header,
.plasma-dc59,
.heading_1a24,
.cold_3759,
.carousel_7114,
.outer_4f61,
.up_91c5,
.panel-in-0c5c {
  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
   ============================================ */
.basic-0bbb {
  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);
}

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

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

/* Scrolled state */
.basic-0bbb.background-liquid-436d {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.cool-8de1 {
  flex: 1;
}

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

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

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

.pink_2c4a.fn-active-6433 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.link-6ace {
  position: relative;
}

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

.article-30fa svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.thumbnail-huge-31d4 {
  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;
}

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

.thumbnail-huge-31d4 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .cool-8de1::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .cool-8de1.steel_d176 {
    display: block;
    right: 0;
  }
  
  .picture-pink-2ba6 {
    flex-direction: column;
    gap: 0;
  }
  
  .pink_2c4a {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .cool-8de1::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;
  }
  
  .cool-8de1.steel_d176::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .cool-8de1 {
    display: none;
  }
  
  .static_0727 {
    display: flex;
  }
  
  .secondary_stale_a6d2 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .thumbnail-huge-31d4,
  .hard-8282 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .link-6ace {
    position: relative;
  }
  
  .focused-f6ae {
    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;
  }
  
  .article-30fa[aria-expanded="true"] + .focused-f6ae {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .box_8bd0 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .table_e48d {
    gap: 8px;
  }
  
  .thumbnail-huge-31d4 {
    display: none;
  }
  
  .hard-8282 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .picture_ee07 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.accordion-bb55 svg {
  flex-shrink: 0;
}

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

.accordion-bb55 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.hard-afa5 a:hover {
  text-decoration: underline;
}

.hover-gold-a562 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.active-clean-a54c {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.label-top-c4ff {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .huge-22dd {
    grid-template-columns: 1fr;
  }
  
  .notice-blue-e4e1 {
    font-size: 1.75rem;
  }
  
  .east_8760 {
    order: -1;
    max-width: 100%;
  }
  
  .mask_2229 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .notice-blue-e4e1 {
    font-size: 1.5rem;
  }
  
  .message-steel-ebf8 {
    font-size: 1rem;
  }
  
  .hard-afa5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .mask_2229 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.gradient-hot-ac4f {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.steel-3b88 {
  background: var(--color-bg-section);
}

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

.card-dynamic-9498 {
  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);
}

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

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

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

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

.notification-light-3f39 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.notification-light-3f39 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.notification-light-3f39 pre,
.notification-light-3f39 code {
  overflow-x: auto;
  max-width: 100%;
}

.notification-light-3f39 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);
}

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

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

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

.notification-light-3f39 ul,
.notification-light-3f39 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.notification-light-3f39 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.notification-light-3f39 strong {
  font-weight: 600;
  color: var(--color-text);
}

.notification-light-3f39 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.notification-light-3f39 a:hover {
  color: var(--color-primary-dark);
}

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

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

.slider_large_0fa8 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) {
  .gallery-pro-1430 {
    grid-template-columns: 1fr;
  }
  
  .up_a1c1 {
    font-size: 1.75rem;
  }
  
  .notification-light-3f39 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .up_a1c1 {
    font-size: 1.5rem;
  }
  
  .notification-light-3f39 h3 {
    font-size: 1.375rem;
  }
  
  .notification-light-3f39 h4 {
    font-size: 1.125rem;
  }
}

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

.card-dynamic-6b95 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.dropdown-1b03 {
  flex-shrink: 0;
}

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

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

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

.gradient_dim_3769,
.article_upper_6f8f,
.shadow-selected-87f2 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gradient_dim_3769 thead,
.article_upper_6f8f thead {
  background: var(--color-primary);
  color: white;
}

.gradient_dim_3769 th,
.gradient_dim_3769 td,
.article_upper_6f8f th,
.article_upper_6f8f td,
.shadow-selected-87f2 th,
.shadow-selected-87f2 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .gradient_dim_3769 th,
  .gradient_dim_3769 td,
  .article_upper_6f8f th,
  .article_upper_6f8f td,
  .shadow-selected-87f2 th,
  .shadow-selected-87f2 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .gradient_dim_3769,
  .article_upper_6f8f,
  .shadow-selected-87f2 {
    min-width: 600px;
  }
}

.gradient_dim_3769 th,
.article_upper_6f8f th,
.shadow-selected-87f2 th {
  font-weight: 600;
}

.gradient_dim_3769 tbody tr:hover,
.article_upper_6f8f tbody tr:hover,
.shadow-selected-87f2 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.caption_6967 h4 {
  color: white;
}

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

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

.hot-1a33:last-child {
  border-bottom: none;
}

.hot-1a33 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.hot-1a33 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

.dim-b03e {
  list-style: none;
  padding: 0;
}

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

.item_silver_ece6 {
  color: #4caf50;
}

.advanced_c86e {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-up-cd22 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

.panel-red-bc75 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.tabs_1250 .text_action_4254 {
  width: 100%;
  background: white;
}

.gradient-d45c .text_action_4254 {
  color: #667eea;
}

.stone_150e .text_action_4254 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.pagination-mini-5adc {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

@media (max-width: 768px) {
  .motion_3e11 {
    padding: var(--space-md);
  }
  
  .grid_complex_23b6 {
    padding: var(--space-md);
  }
  
  .hover-bottom-e858 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.hard-300c,
.purple_b70d,
.disabled-glass-313b,
.element_512e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.over-61c0 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.pattern_soft_a20c .filter_steel_6dd5 {
  background: #e8f5e9;
  color: var(--color-success);
}

.breadcrumb_1a2e .filter_steel_6dd5 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hard_7439 {
  text-align: center;
}

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

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

.dropdown-2095 .warm_a029 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.input-stone-45ae {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.modal-9fc4 {
  border: 2px solid #4caf50;
}

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

.detail-3f5f {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.box_5c1f {
  text-align: right;
}

.box_5c1f .clean-d6d6 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.full-749e {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.solid-d2d8 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.grid-bronze-01c0 {
  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);
}

.grid-bronze-01c0:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

.hard-f719 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.heading-6dcb {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.hard-f719[aria-expanded="true"] .heading-6dcb {
  transform: rotate(180deg);
}

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

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

.photo-easy-7dc8 ul,
.photo-easy-7dc8 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.photo-easy-7dc8 li {
  margin-bottom: var(--space-xs);
}

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

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

.filter-full-ea4c code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

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

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

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

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

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

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

.bottom-8376,
.simple-bd59 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.bottom-8376 h4,
.simple-bd59 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.bottom-8376 ul,
.simple-bd59 ul {
  list-style: none;
  padding: 0;
}

.bottom-8376 li,
.simple-bd59 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .primary-clean-28bc {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

.avatar-advanced-3435 {
  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);
}

.banner-a253 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.widget-focused-94b4 {
  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);
}

.widget-focused-94b4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.widget-focused-94b4 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

/* Footer variant: footer-content (subpages) */
.mask_0a23 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.status_narrow_eedd {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.status_narrow_eedd a:hover {
  color: white;
}

.dynamic_bb1f {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.dynamic_bb1f a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.dynamic_bb1f a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.item-6bb1 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.item-6bb1 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.item-6bb1 a:hover {
  color: white;
}

.primary_focused_3174 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.tertiary_d283 .active-clean-a54c {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.image_9321 a:hover {
  color: white;
}

.layout-outer-2ada {
  list-style: none;
  padding: 0;
}

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

.layout-outer-2ada a {
  color: #b0b0b0;
  text-decoration: none;
}

.layout-outer-2ada a:hover {
  color: white;
}

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

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

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

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

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

.outline-lite-39dd a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.outline-lite-39dd a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

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

@media (max-width: 768px) {
  .primary_focused_3174 {
    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;
  }
  
  .notice-blue-e4e1 {
    font-size: 2rem;
  }
  
  .up_a1c1 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .huge-22dd,
  .gallery-pro-1430 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .tertiary_huge_f0e0,
  .clean_8b12,
  .item-be79,
  .south-0a9f,
  .badge-new-1633,
  .primary-clean-28bc,
  .disabled-2859,
  .accent_2463,
  .mask_0a23 {
    grid-template-columns: 1fr;
  }
  
  .popup-paper-8f90 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .outer_4f61 {
    padding: var(--space-lg) 0;
  }
  
  .bronze_a8df li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .bronze_a8df li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .text_action_4254 {
    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;
  }
  
  .popup-paper-8f90 {
    grid-template-columns: 1fr;
  }
  
  .label-top-c4ff,
  .card-245f,
  .bronze-2d20 {
    flex-direction: column;
    width: 100%;
  }
  
  .slider_1e19,
  .gradient-hot-ac4f,
  .label-top-c4ff .text_action_4254,
  .card-245f .text_action_4254 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .notice-blue-e4e1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .up_a1c1 {
    font-size: 1.375rem;
  }
  
  .hard-65c5 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .caption-silver-e34f,
  .bronze-f016,
  .tall-5216,
  .north-3cd4,
  .outer_5845 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .breadcrumb-826d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .complex-b03d {
    gap: var(--space-xs);
  }
  
  .accordion-bb55 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .slow-e681 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .dropdown-2095 {
    width: 150px;
    height: 150px;
  }
  
  .outline-54c2 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .basic-0bbb,
  .plasma-dc59,
  .label-top-c4ff,
  .section_78de,
  .up_91c5,
  .panel-in-0c5c,
  .static_0727 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .outer_4f61 {
    page-break-inside: avoid;
  }
}

/* css-noise: 4188 */
.promo-block-z2 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.0;
}
