/* ============================================================
   星晴娱乐 STARQING - 清新明亮风娱乐资讯平台 - 全局样式
   配色：白色 + 天蓝 + 珊瑚橙
   字体：Alibaba PuHuiTi
   ============================================================ */

/* ---------- 重置 ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Alibaba PuHuiTi", "Alibaba PuHuiTi 2.0", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555B6E;
  background: #F8FAFC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #1E293B;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* ---------- 设计令牌 ---------- */
:root {
  /* 主色 - 天蓝 */
  --color-primary: #38BDF8;
  --primary-50: #F0F9FF;
  --primary-100: #E0F2FE;
  --primary-200: #BAE6FD;
  --primary-300: #7DD3FC;
  --primary-400: #38BDF8;
  --primary-500: #0EA5E9;
  --primary-600: #0284C7;
  --primary-700: #0369A1;

  /* 点缀色 - 珊瑚橙 */
  --color-accent: #FB923C;
  --accent-50: #FFF7ED;
  --accent-100: #FFEDD5;
  --accent-200: #FED7AA;
  --accent-300: #FDBA74;
  --accent-400: #FB923C;
  --accent-500: #F97316;
  --accent-600: #EA580C;

  /* 辅助色 - 樱花粉 */
  --color-pink: #F472B6;
  --pink-50: #FDF2F8;
  --pink-100: #FCE7F3;
  --pink-200: #FBCFE8;
  --pink-300: #F9A8D4;

  /* 渐变 */
  --gradient-primary: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
  --gradient-accent: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
  --gradient-sunshine: linear-gradient(135deg, #FDE68A 0%, #FB923C 100%);
  --gradient-hero: linear-gradient(120deg, #38BDF8 0%, #7DD3FC 40%, #FBCFE8 80%, #F9A8D4 100%);
  --gradient-card: linear-gradient(145deg, #E0F2FE 0%, #FFF7ED 100%);
  --gradient-soft: linear-gradient(180deg, #F0F9FF 0%, #FFF7ED 100%);

  /* 文字色 */
  --text-title: #1E293B;
  --text-primary: #334155;
  --text-secondary: #64748B;
  --text-tertiary: #94A3B8;
  --text-muted: #CBD5E1;
  --text-white: #FFFFFF;

  /* 背景色 */
  --bg-white: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-sky: #F0F9FF;
  --bg-orange-50: #FFF7ED;
  --bg-card: #FFFFFF;
  --bg-hover: #F0F9FF;

  /* 边框 */
  --border-color: #E2E8F0;
  --border-light: #F1F5F9;
  --border-primary: rgba(56, 189, 248, 0.2);

  /* 阴影 - 清新明亮 */
  --shadow-sm: 0 1px 3px rgba(56, 189, 248, 0.06);
  --shadow-card: 0 4px 16px rgba(56, 189, 248, 0.08);
  --shadow-hover: 0 12px 32px rgba(56, 189, 248, 0.12);
  --shadow-lg: 0 20px 48px rgba(56, 189, 248, 0.15);
  --shadow-orange: 0 8px 24px rgba(251, 146, 60, 0.25);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);

  /* 圆角 */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-2xl: 24px;
  --radius-full: 999px;

  /* 过渡 */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* 最大宽度 */
  --container-max: 1200px;
}

/* ---------- 通用工具 ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }

.divider { height: 1px; background: var(--border-color); }

/* 渐变文字 */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- 顶部公告条 ---------- */
.top-notice {
  background: linear-gradient(90deg, #0EA5E9 0%, #38BDF8 50%, #FB923C 100%);
  color: #fff;
  font-size: 12px;
  height: 32px;
  line-height: 32px;
}

.top-notice-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-notice-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-notice-left .tag {
  padding: 1px 8px;
  background: rgba(255,255,255,0.25);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.top-notice-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-notice-right a {
  color: rgba(255,255,255,0.9);
  transition: color var(--transition-fast);
}

.top-notice-right a:hover { color: #fff; }

/* ---------- 头部 ---------- */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: pointer;
}

.brand-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon svg { width: 100%; height: 100%; }

.brand-name {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #0EA5E9 0%, #FB923C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.brand-sub {
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 600;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* 搜索框 */
.header-search {
  flex: 1;
  max-width: 400px;
}

.search-box {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 8px 0 18px;
  background: #F1F5F9;
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.search-box:focus-within {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 13px;
  color: var(--text-primary);
  padding: 0 8px;
}

.search-box input::placeholder { color: var(--text-muted); }

.search-box button {
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(56, 189, 248, 0.3);
}

.search-box button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.4);
}

.search-box button svg { width: 14px; height: 14px; }

/* 头部动作 */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: var(--bg-soft);
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.icon-btn:hover {
  color: var(--color-primary);
  background: var(--primary-50);
}

.icon-btn svg { width: 18px; height: 18px; }

.icon-btn .badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--color-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.user-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  background: var(--bg-soft);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.user-btn:hover {
  background: var(--primary-50);
}

.user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.user-btn .name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.mobile-menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-menu-btn:hover { background: var(--primary-50); color: var(--color-primary); }
.mobile-menu-btn svg { width: 18px; height: 18px; }

/* ---------- 主导航 ---------- */
.primary-nav {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar { display: none; }

.nav-menu a {
  display: block;
  padding: 0 16px;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-menu a:hover {
  color: var(--color-primary);
}

.nav-menu a.active {
  color: var(--color-primary);
  font-weight: 700;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* ---------- 面包屑 ---------- */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-tertiary); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb .sep { color: var(--text-muted); font-size: 11px; }
.breadcrumb .current { color: var(--text-primary); font-weight: 500; }

/* ---------- 章节/区块标题 ---------- */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-title);
}

.section-title .icon {
  width: 4px;
  height: 20px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-title .accent-label {
  background: var(--accent-50);
  color: var(--accent-500);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.section-more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 500;
}

.section-more:hover {
  color: var(--color-primary);
  gap: 8px;
}

.section-more svg { width: 12px; height: 12px; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  border-radius: var(--radius-full);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
}

.btn-accent {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(251, 146, 60, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(251, 146, 60, 0.4);
}

.btn-outline {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--primary-200);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: var(--primary-50);
}

.btn-ghost {
  background: var(--bg-soft);
  color: var(--text-secondary);
}

.btn-ghost:hover {
  background: var(--primary-50);
  color: var(--color-primary);
}

.btn-block { width: 100%; }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }

/* ---------- Tab 条 ---------- */
.tab-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover { color: var(--color-primary); }

.tab-btn.active {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(56, 189, 248, 0.3);
}

/* ---------- 标签云 ---------- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-chip {
  padding: 5px 14px;
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--bg-soft);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 500;
}

.tag-chip:hover {
  background: var(--primary-50);
  color: var(--color-primary);
}

.tag-chip.active {
  background: var(--color-primary);
  color: #fff;
}

/* ---------- 侧栏组件 ---------- */
.widget {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.widget-title .icon {
  width: 3px;
  height: 16px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* ---------- 卡片通用 ---------- */
.thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .thumb img {
  transform: scale(1.05);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.card:hover .play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-icon svg { width: 18px; height: 18px; margin-left: 2px; }

/* 标签角标 */
.tag-corner {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.tag-hot { background: linear-gradient(135deg, #F97316, #EF4444); }
.tag-new { background: linear-gradient(135deg, #10B981, #059669); }
.tag-vip { background: linear-gradient(135deg, #F59E0B, #D97706); }
.tag-exclusive { background: linear-gradient(135deg, #EC4899, #8B5CF6); }
.tag-live { background: linear-gradient(135deg, #EF4444, #DC2626); }
.tag-live::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  margin-right: 4px;
  animation: pulse-dot 1.5s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.tag-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 2px 6px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 10px;
  border-radius: 4px;
  font-weight: 500;
  z-index: 2;
  backdrop-filter: blur(4px);
}

/* ---------- 分页 ---------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-md);
}

.pagination a {
  color: var(--text-secondary);
  background: #fff;
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.pagination a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.pagination .current {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.pagination .dots { color: var(--text-muted); background: transparent; border: none; }

/* ---------- 回到顶部 ---------- */
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.5);
}

.back-top svg { width: 16px; height: 16px; }

/* ---------- 页脚 ---------- */
.site-footer {
  background: #0F172A;
  color: rgba(255,255,255,0.55);
  margin-top: 60px;
}

.footer-upper {
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin: 16px 0 20px;
  max-width: 320px;
}

.footer-brand .brand-name {
  font-size: 24px;
  background: linear-gradient(135deg, #38BDF8 0%, #FB923C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand .brand-sub {
  color: rgba(255,255,255,0.3);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-socials svg { width: 15px; height: 15px; }

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: #7DD3FC;
  padding-left: 4px;
}

.footer-lower {
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-lower-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a { color: rgba(255,255,255,0.35); }
.footer-links a:hover { color: #7DD3FC; }

/* ---------- 动画 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.float-anim { animation: floatY 4s ease-in-out infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* 滚动条 */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--primary-200); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-400); }

/* ---------- 响应式 ---------- */
@media (max-width: 1200px) {
  .container { max-width: 960px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 28px; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 992px) {
  .container { max-width: 720px; padding: 0 16px; }
  .brand-sub { display: none; }
  .header-search { flex: 1; max-width: none; }
  .user-btn .name { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  body { font-size: 13px; }
  .top-notice { display: none; }
  .header-inner { padding: 12px 0; gap: 12px; }
  .brand-name { font-size: 18px; }
  .brand-icon { width: 34px; height: 34px; }
  .header-search { display: none; }
  .header-actions .icon-btn:nth-child(n+2) { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-menu a { padding: 0 12px; font-size: 13px; height: 46px; line-height: 46px; }
  .back-top { right: 16px; bottom: 16px; width: 38px; height: 38px; }
  .footer-upper { padding: 40px 0 28px; }
  .footer-lower-inner { flex-direction: column; text-align: center; gap: 8px; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .brand-icon { width: 30px; height: 30px; }
}
