/* =============================================
   91动漫 - 动漫社区主题样式
   原创配色：深夜霓虹系
   主色：#E91E8C (霓虹洋红)
   辅色：#1A0A3C (深夜靛紫)
   强调：#FF6B1A (燃烧橙)
   背景：#0D0720 (星空黑)
   文字：#F0EAF8 (月光白)
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  background: #0D0720;
  color: #F0EAF8;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #E91E8C; text-decoration: none; transition: color .25s; }
a:hover { color: #FF6B1A; }
ul { list-style: none; }

/* ---- CSS Variables ---- */
:root {
  --pink:    #E91E8C;
  --indigo:  #1A0A3C;
  --orange:  #FF6B1A;
  --bg:      #0D0720;
  --bg2:     #160B30;
  --bg3:     #1F1040;
  --text:    #F0EAF8;
  --muted:   #9B8CB8;
  --border:  rgba(233,30,140,0.25);
  --card-bg: rgba(26,10,60,0.85);
  --radius:  12px;
  --shadow:  0 4px 24px rgba(233,30,140,0.15);
  --glow:    0 0 20px rgba(233,30,140,0.4);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* ---- Selection ---- */
::selection { background: var(--pink); color: #fff; }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.wy-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,7,32,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
.wy-header.scrolled {
  background: rgba(13,7,32,0.98);
  box-shadow: var(--shadow);
}
.wy-nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
/* Logo */
.wy-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px;
  color: var(--text);
}
.wy-logo img { width: 40px; height: 40px; border-radius: 8px; }
.wy-logo-text span:first-child { color: var(--pink); }
.wy-logo-text span:last-child  { color: var(--orange); }

/* Nav Links */
.wy-nav-links {
  display: flex; align-items: center; gap: 4px;
}
.wy-nav-links a {
  padding: 6px 14px; border-radius: 8px;
  font-size: .9rem; font-weight: 500; color: var(--muted);
  transition: all .2s;
}
.wy-nav-links a:hover,
.wy-nav-links a.active {
  color: var(--text);
  background: rgba(233,30,140,0.15);
}

/* Nav Right */
.wy-nav-right { display: flex; align-items: center; gap: 12px; }
.wy-btn-join {
  padding: 8px 20px; border-radius: 20px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff; font-size: .85rem; font-weight: 600;
  border: none; cursor: pointer; transition: opacity .2s, transform .2s;
}
.wy-btn-join:hover { opacity: .88; transform: translateY(-1px); color: #fff; }

/* Hamburger */
.wy-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.wy-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .3s;
}
.wy-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wy-hamburger.open span:nth-child(2) { opacity: 0; }
.wy-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.wy-mobile-menu {
  display: none; flex-direction: column;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  gap: 4px;
}
.wy-mobile-menu.show { display: flex; }
.wy-mobile-menu a {
  padding: 10px 14px; border-radius: 8px;
  color: var(--muted); font-size: .95rem;
}
.wy-mobile-menu a:hover { color: var(--text); background: rgba(233,30,140,0.12); }

/* ============================================
   SEARCH BAR
   ============================================ */
.wy-search-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  display: flex; justify-content: center;
}
.wy-search-inner {
  max-width: 680px; width: 100%;
  display: flex; align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 8px 16px;
  gap: 10px;
  transition: border-color .25s, box-shadow .25s;
}
.wy-search-inner:focus-within {
  border-color: var(--pink);
  box-shadow: var(--glow);
}
.wy-search-icon { color: var(--muted); font-size: 1rem; flex-shrink: 0; }
.wy-search-input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: .95rem;
}
.wy-search-input::placeholder { color: var(--muted); }
.wy-search-btn {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff; border: none; border-radius: 16px;
  padding: 5px 16px; font-size: .85rem; cursor: pointer;
  transition: opacity .2s;
}
.wy-search-btn:hover { opacity: .85; }

/* ============================================
   PAGE WRAPPER
   ============================================ */
.wy-page { padding-top: 128px; }

/* ============================================
   HERO SECTION
   ============================================ */
.wy-hero {
  position: relative; overflow: hidden;
  min-height: 580px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0D0720 0%, #1A0A3C 50%, #0D0720 100%);
}
.wy-hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover; background-position: center;
  opacity: .35;
  filter: saturate(1.3);
}
.wy-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,7,32,.95) 0%, rgba(13,7,32,.5) 60%, transparent 100%);
}
.wy-hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 80px 24px;
  max-width: 640px; padding-left: 48px;
}
.wy-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(233,30,140,0.18);
  border: 1px solid rgba(233,30,140,0.4);
  color: var(--pink); font-size: .8rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 20px;
}
.wy-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.2;
  margin-bottom: 16px;
}
.wy-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wy-hero-desc {
  font-size: 1.05rem; color: var(--muted);
  margin-bottom: 32px; max-width: 480px;
}
.wy-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.wy-btn-primary {
  padding: 12px 28px; border-radius: 24px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff; font-weight: 700; font-size: .95rem;
  border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.wy-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233,30,140,0.4);
  color: #fff;
}
.wy-btn-outline {
  padding: 12px 28px; border-radius: 24px;
  background: transparent;
  border: 1.5px solid rgba(233,30,140,0.5);
  color: var(--text); font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: all .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.wy-btn-outline:hover {
  border-color: var(--pink);
  background: rgba(233,30,140,0.1);
  color: var(--text);
}
/* Hero Stats */
.wy-hero-stats {
  display: flex; gap: 32px; margin-top: 40px;
}
.wy-stat-item { text-align: left; }
.wy-stat-num {
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wy-stat-label { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* ============================================
   SECTION COMMON
   ============================================ */
.wy-section {
  padding: 72px 24px;
  max-width: 1280px; margin: 0 auto;
}
.wy-section-full {
  padding: 72px 0;
  background: var(--bg2);
}
.wy-section-full .wy-section { padding-top: 0; padding-bottom: 0; }
.wy-section-header {
  text-align: center; margin-bottom: 48px;
}
.wy-section-tag {
  display: inline-block;
  background: rgba(233,30,140,0.15);
  border: 1px solid rgba(233,30,140,0.35);
  color: var(--pink); font-size: .78rem; font-weight: 600;
  padding: 3px 12px; border-radius: 12px; margin-bottom: 12px;
  letter-spacing: .5px; text-transform: uppercase;
}
.wy-section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; margin-bottom: 12px;
}
.wy-section-header h2 span {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wy-section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ============================================
   VIDEO CARDS
   ============================================ */
.wy-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.wy-video-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.wy-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(233,30,140,0.5);
}
.wy-video-thumb {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg3);
}
.wy-video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.wy-video-card:hover .wy-video-thumb img { transform: scale(1.06); }
.wy-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13,7,32,0.5);
  opacity: 0; transition: opacity .25s;
}
.wy-video-card:hover .wy-play-btn { opacity: 1; }
.wy-play-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(233,30,140,0.5);
  transform: scale(.85); transition: transform .25s;
}
.wy-video-card:hover .wy-play-icon { transform: scale(1); }
.wy-play-icon::after {
  content: '';
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.wy-video-badge {
  position: absolute; top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff; font-size: .7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 6px;
}
.wy-video-duration {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,.7);
  color: #fff; font-size: .72rem;
  padding: 2px 6px; border-radius: 4px;
}
.wy-video-info { padding: 14px 16px; }
.wy-video-title {
  font-size: .92rem; font-weight: 600;
  margin-bottom: 8px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.wy-video-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: .78rem; color: var(--muted);
}
.wy-video-meta span { display: flex; align-items: center; gap: 4px; }
.wy-video-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.wy-tag {
  font-size: .7rem; padding: 2px 8px; border-radius: 10px;
  background: rgba(233,30,140,0.12);
  border: 1px solid rgba(233,30,140,0.25);
  color: var(--pink);
}

/* ============================================
   CATEGORY TABS
   ============================================ */
.wy-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.wy-tab {
  padding: 7px 18px; border-radius: 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--muted); font-size: .85rem; cursor: pointer;
  transition: all .2s;
}
.wy-tab:hover, .wy-tab.active {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  border-color: transparent; color: #fff;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.wy-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.wy-feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform .25s, border-color .25s;
}
.wy-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233,30,140,0.5);
}
.wy-feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(233,30,140,0.2), rgba(255,107,26,0.2));
  border: 1px solid rgba(233,30,140,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.wy-feature-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.wy-feature-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ============================================
   EXPERT CARDS
   ============================================ */
.wy-expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.wy-expert-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.wy-expert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.wy-expert-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 16px;
  border: 3px solid var(--pink);
  box-shadow: 0 0 16px rgba(233,30,140,0.3);
}
.wy-expert-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.wy-expert-role {
  font-size: .8rem; color: var(--pink); font-weight: 600;
  margin-bottom: 12px;
}
.wy-expert-bio { font-size: .82rem; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.wy-expert-awards { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.wy-award-badge {
  font-size: .7rem; padding: 2px 8px; border-radius: 10px;
  background: rgba(255,107,26,0.15);
  border: 1px solid rgba(255,107,26,0.3);
  color: var(--orange);
}
.wy-expert-btns { display: flex; gap: 8px; justify-content: center; }
.wy-btn-sm {
  padding: 6px 14px; border-radius: 14px;
  font-size: .78rem; font-weight: 600; cursor: pointer;
  transition: all .2s; border: none;
}
.wy-btn-sm.primary {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff;
}
.wy-btn-sm.outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}
.wy-btn-sm:hover { opacity: .85; transform: translateY(-1px); }

/* ============================================
   AI SECTION
   ============================================ */
.wy-ai-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
}
.wy-ai-text h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 16px; }
.wy-ai-text h2 span {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wy-ai-text p { color: var(--muted); margin-bottom: 24px; }
.wy-ai-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.wy-ai-feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 16px; border-radius: 10px;
  background: rgba(233,30,140,0.07);
  border: 1px solid rgba(233,30,140,0.15);
}
.wy-ai-feature-item .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.wy-ai-feature-item h4 { font-size: .88rem; font-weight: 700; margin-bottom: 4px; }
.wy-ai-feature-item p { font-size: .8rem; color: var(--muted); margin: 0; }
.wy-ai-visual {
  position: relative;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.wy-ai-visual img { width: 100%; display: block; }
.wy-ai-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(233,30,140,0.15), rgba(255,107,26,0.1));
  pointer-events: none;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.wy-community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.wy-community-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: transform .25s, border-color .25s;
}
.wy-community-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233,30,140,0.5);
}
.wy-community-icon { font-size: 2rem; margin-bottom: 12px; }
.wy-community-card h3 { font-size: .9rem; font-weight: 700; margin-bottom: 6px; }
.wy-community-card p { font-size: .78rem; color: var(--muted); }
.wy-community-count {
  font-size: .75rem; color: var(--pink); font-weight: 600;
  margin-top: 8px;
}

/* ============================================
   PARTNERS LOGO WALL
   ============================================ */
.wy-partners-grid {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; align-items: center;
}
.wy-partner-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 24px;
  font-size: .85rem; font-weight: 600; color: var(--muted);
  transition: all .2s;
  min-width: 120px; text-align: center;
}
.wy-partner-item:hover {
  border-color: var(--pink); color: var(--text);
  background: rgba(233,30,140,0.08);
}

/* ============================================
   HOW-TO GUIDE
   ============================================ */
.wy-howto-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px; counter-reset: step;
}
.wy-step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative; overflow: hidden;
  transition: transform .25s;
}
.wy-step-card:hover { transform: translateY(-3px); }
.wy-step-num {
  font-size: 3.5rem; font-weight: 900;
  position: absolute; top: -8px; right: 16px;
  background: linear-gradient(135deg, rgba(233,30,140,0.15), rgba(255,107,26,0.1));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.wy-step-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; position: relative; }
.wy-step-card p { font-size: .82rem; color: var(--muted); position: relative; }

/* ============================================
   FAQ
   ============================================ */
.wy-faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.wy-faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.wy-faq-item.open { border-color: rgba(233,30,140,0.5); }
.wy-faq-q {
  padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 12px;
  font-size: .92rem; font-weight: 600;
  user-select: none;
}
.wy-faq-q:hover { color: var(--pink); }
.wy-faq-arrow {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(233,30,140,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--pink);
  transition: transform .3s;
}
.wy-faq-item.open .wy-faq-arrow { transform: rotate(180deg); }
.wy-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  padding: 0 20px;
  font-size: .85rem; color: var(--muted); line-height: 1.7;
}
.wy-faq-item.open .wy-faq-a { max-height: 300px; padding: 0 20px 18px; }

/* ============================================
   REVIEWS
   ============================================ */
.wy-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.wy-review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .25s;
}
.wy-review-card:hover { transform: translateY(-3px); }
.wy-review-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.wy-reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.wy-reviewer-name { font-size: .9rem; font-weight: 700; }
.wy-reviewer-date { font-size: .75rem; color: var(--muted); }
.wy-review-stars { color: #FFD700; font-size: .85rem; margin-bottom: 10px; }
.wy-review-text { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.wy-review-tag {
  display: inline-block; margin-top: 10px;
  font-size: .7rem; padding: 2px 8px; border-radius: 10px;
  background: rgba(233,30,140,0.12);
  border: 1px solid rgba(233,30,140,0.25);
  color: var(--pink);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.wy-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.wy-contact-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.wy-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px; padding: 14px 16px;
  background: var(--bg3); border-radius: 10px;
  border: 1px solid var(--border);
}
.wy-contact-item-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.wy-contact-item-label { font-size: .78rem; color: var(--muted); margin-bottom: 2px; }
.wy-contact-item-val { font-size: .88rem; font-weight: 600; }
.wy-qr-section { display: flex; gap: 20px; flex-wrap: wrap; }
.wy-qr-item { text-align: center; }
.wy-qr-item img {
  width: 110px; height: 110px;
  border-radius: 10px; border: 2px solid var(--border);
  margin-bottom: 8px;
}
.wy-qr-item p { font-size: .78rem; color: var(--muted); }
.wy-social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.wy-social-btn {
  padding: 8px 16px; border-radius: 20px;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--muted); font-size: .82rem;
  transition: all .2s; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
}
.wy-social-btn:hover {
  border-color: var(--pink); color: var(--pink);
  background: rgba(233,30,140,0.08);
}

/* ============================================
   FOOTER
   ============================================ */
.wy-footer {
  background: var(--indigo);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}
.wy-footer-inner {
  max-width: 1280px; margin: 0 auto;
}
.wy-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.wy-footer-brand .wy-logo { margin-bottom: 14px; }
.wy-footer-brand p { font-size: .83rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.wy-footer-col h4 { font-size: .9rem; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.wy-footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.wy-footer-col ul li a { font-size: .83rem; color: var(--muted); transition: color .2s; }
.wy-footer-col ul li a:hover { color: var(--pink); }
.wy-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.wy-footer-bottom p { font-size: .78rem; color: var(--muted); }
.wy-footer-bottom a { color: var(--muted); }
.wy-footer-bottom a:hover { color: var(--pink); }
.wy-footer-logo-big {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.2rem; font-weight: 800; color: var(--text);
  margin-bottom: 14px;
}
.wy-footer-logo-big img { width: 36px; height: 36px; border-radius: 7px; }

/* ============================================
   BREADCRUMB
   ============================================ */
.wy-breadcrumb {
  padding: 14px 24px;
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--muted);
}
.wy-breadcrumb a { color: var(--muted); }
.wy-breadcrumb a:hover { color: var(--pink); }
.wy-breadcrumb .sep { color: rgba(255,255,255,.2); }
.wy-breadcrumb .current { color: var(--text); }

/* ============================================
   INNER PAGE HERO
   ============================================ */
.wy-inner-hero {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}
.wy-inner-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; margin-bottom: 10px;
}
.wy-inner-hero h1 span {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wy-inner-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ============================================
   SHARE BAR
   ============================================ */
.wy-share-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  background: var(--bg2); border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.wy-share-label { font-size: .82rem; color: var(--muted); }
.wy-share-btn {
  padding: 6px 14px; border-radius: 16px;
  font-size: .78rem; font-weight: 600; cursor: pointer;
  border: 1px solid var(--border); background: var(--bg3);
  color: var(--muted); transition: all .2s;
  display: flex; align-items: center; gap: 5px;
}
.wy-share-btn:hover { border-color: var(--pink); color: var(--pink); }

/* ============================================
   PAGINATION
   ============================================ */
.wy-pagination {
  display: flex; justify-content: center; gap: 8px;
  padding: 32px 0;
}
.wy-page-btn {
  width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--muted); font-size: .85rem; cursor: pointer;
  transition: all .2s;
}
.wy-page-btn:hover, .wy-page-btn.active {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  border-color: transparent; color: #fff;
}

/* ============================================
   NOTICE BAR
   ============================================ */
.wy-notice {
  background: linear-gradient(90deg, rgba(233,30,140,0.15), rgba(255,107,26,0.1));
  border-bottom: 1px solid rgba(233,30,140,0.2);
  padding: 8px 24px;
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: var(--muted);
  overflow: hidden;
}
.wy-notice-tag {
  background: var(--pink); color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 4px; flex-shrink: 0;
}
.wy-notice-text { white-space: nowrap; animation: marquee 30s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.wy-fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.wy-fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .wy-footer-top { grid-template-columns: 1fr 1fr; }
  .wy-ai-grid { grid-template-columns: 1fr; }
  .wy-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .wy-nav-links, .wy-btn-join { display: none; }
  .wy-hamburger { display: flex; }
  .wy-hero-content { padding: 60px 24px; }
  .wy-hero-stats { gap: 20px; }
  .wy-footer-top { grid-template-columns: 1fr; gap: 24px; }
  .wy-video-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .wy-expert-grid { grid-template-columns: 1fr; }
  .wy-section { padding: 48px 16px; }
}
@media (max-width: 480px) {
  .wy-hero h1 { font-size: 1.7rem; }
  .wy-hero-btns { flex-direction: column; }
  .wy-hero-stats { flex-wrap: wrap; gap: 16px; }
  .wy-video-grid { grid-template-columns: 1fr; }
  .wy-feature-grid { grid-template-columns: 1fr 1fr; }
  .wy-howto-steps { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITY
   ============================================ */
.text-pink { color: var(--pink); }
.text-orange { color: var(--orange); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
