/* 糖心vlog 响应式样式补充 */

/* 小屏幕手机 */
@media (max-width: 480px) {
  .banner {
    height: 260px;
  }

  .banner-content h1 {
    font-size: 22px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 16px;
  }

  .stat-item .number {
    font-size: 28px;
  }

  .page-hero h1 {
    font-size: 24px;
  }

  .page-hero {
    padding: 40px 0;
  }

  .page-content {
    padding: 20px 12px;
  }

  .page-content h1 {
    font-size: 22px;
  }

  .footer {
    padding: 30px 0 16px;
  }

  .search-form {
    margin: 0 10px;
  }
}

/* 平板设备 */
@media (min-width: 481px) and (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 大屏设备 */
@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

/* 超宽屏 */
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}

/* 打印样式 */
@media print {
  .header, .footer, .search-bar, .share-bar {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}

/* 暗色模式（可选） */
@media (prefers-color-scheme: dark) {
  :root {
    --light: #1a1a2e;
    --white: #16213e;
    --secondary: #e0e0e0;
    --gray: #aaa;
    --border: #333;
  }

  .header {
    background: var(--dark);
  }

  .nav-list a {
    color: #ccc;
  }

  .search-form input {
    background: #1e1e3f;
    color: #fff;
  }

  .article-card .thumb {
    background: #1e1e3f;
  }

  .brand-wall-item {
    background: #1e1e3f;
  }

  .faq-item,
  .sidebar,
  .stat-item {
    background: #16213e;
  }

  .page-content {
    background: #16213e;
  }

  .tag {
    background: #1e1e3f;
    color: #aaa;
  }
}
