/* =====================================================================
 * AceSide Theme · 副业项目实操社区
 * 基于 maccms10 default 模板的暗色/明亮双主题皮肤
 * 设计稿源：c:\guaji\*.html（mockup-dark / videos / post / member 等）
 * ===================================================================== */

/* ============ 主题变量 ============ */
:root, [data-theme="dark"] {
  --bg: #07070b;
  --bg-elev: rgba(255,255,255,0.035);
  --bg-elev-2: rgba(255,255,255,0.06);
  --bg-elev-3: rgba(255,255,255,0.1);
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);
  --text: #f4f4f5;
  --text-2: #a1a1aa;
  --text-3: #71717a;
  --text-4: #52525b;
  --accent: #fbbf24;
  --accent-2: #f59e0b;
  --accent-soft: rgba(251,191,36,0.12);
  --cyan: #67e8f9;
  --pink: #f9a8d4;
  --violet: #c4b5fd;
  --green: #34d399;
  --red: #fb7185;
  --grid-line: rgba(255,255,255,0.04);
  --header-bg: rgba(7,7,11,0.6);
  --aurora-1: rgba(251,191,36,0.16);
  --aurora-2: rgba(168,85,247,0.13);
  --aurora-3: rgba(56,189,248,0.11);
  --aurora-4: rgba(244,114,182,0.10);
  --shadow-glow: 0 0 80px -10px rgba(251,191,36,0.25);
  --card-hover-shadow: 0 16px 40px -20px rgba(0,0,0,0.5);
  color-scheme: dark;
}
[data-theme="light"] {
  --bg: #fafafa;
  --bg-elev: #ffffff;
  --bg-elev-2: #f4f4f5;
  --bg-elev-3: #e4e4e7;
  --border: #e4e4e7;
  --border-strong: #d4d4d8;
  --text: #18181b;
  --text-2: #52525b;
  --text-3: #71717a;
  --text-4: #a1a1aa;
  --accent: #f59e0b;
  --accent-2: #d97706;
  --accent-soft: rgba(245,158,11,0.12);
  --cyan: #0891b2;
  --pink: #db2777;
  --violet: #7c3aed;
  --green: #059669;
  --red: #e11d48;
  --grid-line: rgba(0,0,0,0.05);
  --header-bg: rgba(250,250,250,0.7);
  --aurora-1: rgba(251,191,36,0.18);
  --aurora-2: rgba(168,85,247,0.14);
  --aurora-3: rgba(56,189,248,0.14);
  --aurora-4: rgba(244,114,182,0.12);
  --shadow-glow: 0 1px 2px rgba(0,0,0,0.04), 0 12px 32px -16px rgba(0,0,0,0.12);
  --card-hover-shadow: 0 16px 40px -20px rgba(0,0,0,0.15);
  color-scheme: light;
}

html, body { font-family: 'Inter', -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif; }
body.aceside { background: var(--bg); color: var(--text); transition: background .35s ease, color .35s ease; min-height: 100vh; }

/* ============ 动态背景 ============ */
.bg-stage { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-aurora {
  position: absolute; inset: -20%;
  background:
    radial-gradient(40% 35% at 18% 22%, var(--aurora-1), transparent 60%),
    radial-gradient(35% 30% at 82% 18%, var(--aurora-2), transparent 60%),
    radial-gradient(40% 40% at 50% 95%, var(--aurora-3), transparent 60%),
    radial-gradient(30% 30% at 78% 78%, var(--aurora-4), transparent 60%);
  filter: blur(20px);
  animation: aceDrift 22s ease-in-out infinite alternate;
}
.bg-aurora-2 {
  position: absolute; inset: -10%;
  background:
    conic-gradient(from 0deg at 30% 40%, transparent 0deg, var(--aurora-1) 60deg, transparent 120deg),
    conic-gradient(from 180deg at 70% 60%, transparent 0deg, var(--aurora-2) 80deg, transparent 160deg);
  filter: blur(60px); opacity: .7;
  animation: aceSpin 60s linear infinite;
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 80%);
  animation: aceGridShift 30s linear infinite;
}
.bg-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .5; mix-blend-mode: overlay;
}
@keyframes aceDrift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-2%, 1.5%) scale(1.06); }
  100% { transform: translate(2%, -1%) scale(1.02); }
}
@keyframes aceSpin { to { transform: rotate(360deg); } }
@keyframes aceGridShift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 56px 56px, 56px 56px; }
}

/* ============ 通用组件 ============ */
.ace-gradient-text, .gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #fb923c 50%, #f472b6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ace-card, .card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
  border-radius: 16px;
}
.ace-card:hover, .card:hover {
  transform: translateY(-3px);
  border-color: rgba(251,191,36,0.35);
  background: var(--bg-elev-2);
  box-shadow: var(--card-hover-shadow);
}
.chip { background: var(--bg-elev); border: 1px solid var(--border); }
.vip-glow {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 0 24px -4px rgba(245,158,11,.5);
  color: #1a1a00;
}
.dot { width: 6px; height: 6px; border-radius: 999px; background: #10b981; box-shadow: 0 0 8px #10b981; }
.ring-soft { box-shadow: inset 0 0 0 1px var(--border); }
body.aceside ::-webkit-scrollbar { width: 8px; height: 8px; }
body.aceside ::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 8px; }

/* ============ 原生表单元素深色适配 ============ */
body.aceside select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2.5'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px !important;
}
body.aceside select option { background-color: #1a1a1f; color: #f4f4f5; }
[data-theme="light"] body.aceside select option { background-color: #ffffff; color: #18181b; }

/* ============ AceSide 顶部导航 + 滑块 ============ */
.ace-site-header, .site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}
.ace-nav, .nav-list { position: relative; display: flex; align-items: center; }
.ace-nav a, .nav-list a {
  position: relative;
  padding: 10px 18px;
  color: var(--text-2);
  transition: color .2s ease;
  z-index: 1;
  border-radius: 10px;
  font-size: 21px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.ace-nav a:hover, .ace-nav a.active, .ace-nav a[data-active="true"],
.nav-list a:hover, .nav-list a.active, .nav-list a[data-active="true"] { color: var(--text); }
.nav-slider {
  position: absolute; top: 0; left: 0;
  height: 100%;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: transform .35s cubic-bezier(.4,.0,.2,1), width .35s cubic-bezier(.4,.0,.2,1), opacity .25s ease;
  z-index: 0; pointer-events: none; opacity: 0;
}
.ace-nav.ready .nav-slider, .nav-list.ready .nav-slider { opacity: 1; }

/* ============ 主题切换按钮 ============ */
.theme-toggle {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text-2);
  transition: all .25s ease;
  cursor: pointer;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.theme-toggle .icon-sun, .theme-toggle .icon-moon { transition: transform .4s cubic-bezier(.5,1.4,.5,1), opacity .2s; }
[data-theme="dark"] .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0); position: absolute; }
[data-theme="dark"] .icon-moon { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="light"] .icon-sun { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="light"] .icon-moon { opacity: 0; transform: rotate(90deg) scale(0); position: absolute; }

/* ============ 视频/图文卡片 ============ */
.video-badge {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 100%);
  transition: background .25s ease;
}
.ace-card:hover .video-badge, .card:hover .video-badge { background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%); }
.play-btn {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: #0a0a10;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform .25s ease;
}
.ace-card:hover .play-btn, .card:hover .play-btn { transform: scale(1.08); }
.type-tag {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 7px; border-radius: 6px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  color: #fff; font-size: 11px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}
.vip-tag {
  position: absolute; top: 10px; right: 10px;
  padding: 2px 7px; border-radius: 6px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1a00; font-size: 10px; font-weight: 800;
}

/* ============ 按钮 ============ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 12px;
  background: var(--text); color: var(--bg);
  font-weight: 600; font-size: 14px;
  transition: opacity .2s ease;
  border: 0; cursor: pointer; text-decoration: none;
}
.btn-primary:hover { opacity: .85; color: var(--bg); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px;
  background: var(--bg-elev); border: 1px solid var(--border);
  color: var(--text); font-weight: 600; font-size: 15px;
  cursor: pointer; text-decoration: none;
  transition: transform .28s cubic-bezier(.5,1.4,.5,1), background .2s ease, box-shadow .25s ease, border-color .25s ease;
  transform-origin: center;
  will-change: transform;
}
.btn-ghost:hover {
  background: var(--bg-elev-2);
  color: var(--text);
  transform: scale(1.08);
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.45);
  border-color: var(--border-strong);
}
.btn-ghost:active { transform: scale(1.02); }
.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1a00; font-weight: 700; font-size: 15px;
  cursor: pointer; text-decoration: none; border: 0;
  transition: transform .28s cubic-bezier(.5,1.4,.5,1), box-shadow .25s ease, filter .2s ease;
  transform-origin: center;
  will-change: transform;
  box-shadow: 0 8px 20px -8px rgba(251,191,36,0.45);
}
.btn-accent:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 36px -10px rgba(251,191,36,0.7);
  filter: brightness(1.05);
  color: #1a1a00;
}
.btn-accent:active { transform: scale(1.03); }

/* ============ 通用辅助 ============ */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.submit-cta {
  background: linear-gradient(135deg, rgba(251,191,36,0.08), rgba(168,85,247,0.08));
  border: 1px dashed var(--border-strong);
  border-radius: 16px;
}

/* ============ 右下角小人 · 赚钱机器 ============ */
.mascot {
  position: fixed; right: 28px; bottom: 28px; z-index: 60;
  width: 120px; height: 150px;
  cursor: pointer;
  user-select: none;
  filter: drop-shadow(0 12px 28px rgba(251,191,36,0.35));
  animation: mascotFloat 3.5s ease-in-out infinite;
}
[data-theme="light"] .mascot { filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15)); }
@keyframes mascotFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(1deg); }
}
.mascot .eye { transform-origin: center; animation: blink 5s infinite; transform-box: fill-box; }
.mascot .eye-r { animation-delay: .05s; }
@keyframes blink {
  0%, 92%, 100% { transform: scaleY(1); }
  94%, 98%      { transform: scaleY(0.1); }
}
.mascot .coin { transform-origin: center; opacity: 0; }
.mascot .coin-1 { animation: coinFloat 3s ease-out infinite; }
.mascot .coin-2 { animation: coinFloat 3s ease-out 1s infinite; }
.mascot .coin-3 { animation: coinFloat 3s ease-out 2s infinite; }
@keyframes coinFloat {
  0%   { transform: translateY(40px) translateX(0) scale(.5) rotateY(0); opacity: 0; }
  15%  { opacity: 1; }
  60%  { opacity: 1; }
  100% { transform: translateY(-30px) translateX(var(--cx, 0)) scale(1) rotateY(720deg); opacity: 0; }
}
.mascot .coin-1 { --cx: -10px; }
.mascot .coin-2 { --cx: 12px; }
.mascot .coin-3 { --cx: 0px; }
.mascot:hover .coin-1, .mascot:hover .coin-2, .mascot:hover .coin-3 { animation-duration: 1.5s; }
.mascot .slot-glow {
  animation: slotGlow 1.8s ease-in-out infinite;
  transform-origin: center; transform-box: fill-box;
}
@keyframes slotGlow { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
.mascot .arm-right {
  transform-origin: 110px 90px;
  transform-box: fill-box;
  animation: armIdle 4s ease-in-out infinite;
}
@keyframes armIdle { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-8deg); } }
.mascot:hover .arm-right { animation: armWave .6s ease-in-out 3; }
@keyframes armWave {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(-35deg); }
  75%      { transform: rotate(-20deg); }
}
.mascot-bubble {
  position: absolute;
  bottom: 95%; right: 0;
  margin-bottom: 6px;
  padding: 10px 14px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 13px;
  border-radius: 14px 14px 4px 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px) scale(.96);
  transform-origin: bottom right;
  transition: all .25s cubic-bezier(.5,1.4,.5,1);
  pointer-events: none;
  box-shadow: 0 12px 32px -12px rgba(0,0,0,0.4);
}
.mascot:hover .mascot-bubble { opacity: 1; transform: translateY(0) scale(1); }
.mascot-bubble::after {
  content: ''; position: absolute;
  bottom: -6px; right: 14px;
  width: 12px; height: 12px;
  background: var(--bg-elev-2);
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  transform: rotate(45deg);
}
.mascot-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(251,191,36,0.4), transparent 65%);
  filter: blur(20px); z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { opacity: .5; } 50% { opacity: .95; } }

/* ============ AceSide 容器 · 通用栅格 ============ */
.ace-container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.ace-flex { display: flex; }
.ace-grid { display: grid; }

/* ============ AceSide VIP 阅读墙 ============ */
.vip-wall {
  position: relative; padding: 32px;
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  text-align: center;
  overflow: hidden;
}
.vip-wall::before {
  content: '';
  position: absolute; left: 0; right: 0; top: -100px; height: 100px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

/* ============ AceSide 文章正文 ============ */
.article-body { font-size: 16px; line-height: 1.85; color: var(--text); }
.article-body p { margin: 1.2em 0; color: var(--text); }
.article-body h2 { font-size: 24px; font-weight: 700; margin: 2em 0 .8em; }
.article-body h3 { font-size: 19px; font-weight: 600; margin: 1.6em 0 .6em; }
.article-body blockquote { border-left: 3px solid var(--accent); padding-left: 14px; color: var(--text-2); margin: 1.2em 0; }
.article-body code { background: var(--bg-elev-2); padding: 2px 6px; border-radius: 4px; font-size: 14px; }
.article-body ul { list-style: disc; padding-left: 20px; color: var(--text); }
.article-body ul li { margin: .4em 0; }

/* =====================================================================
 * maccms 原生模板兼容层 · 当 body.aceside 启用时隐藏冲突结构
 * 仅在 AceSide 接管的页面（class="aceside"）生效
 * ===================================================================== */
body.aceside .head_box,
body.aceside .foot,
body.aceside #topnav .site-head-wrap > div:not(.ace-site-header) {
  display: none !important;
}
body.aceside .member-wrap,
body.aceside .container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  background: transparent;
}
body.aceside { background: var(--bg); color: var(--text); }

/* ============ AceSide 文章/视频列表栅格覆盖 ============ */
body.aceside .artlist,
body.aceside .ace-art-grid,
body.aceside .ace-vod-grid,
body.aceside .vodlist:not(.vodlist_wi) {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem;
}
@media (min-width: 900px) {
  body.aceside .artlist, body.aceside .ace-art-grid,
  body.aceside .ace-vod-grid, body.aceside .vodlist:not(.vodlist_wi) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  body.aceside .artlist, body.aceside .ace-art-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  body.aceside .ace-vod-grid, body.aceside .vodlist:not(.vodlist_wi) {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
body.aceside .art-card-aceside,
body.aceside .vod-card-aceside { list-style: none; margin: 0; padding: 0; }
body.aceside .art-card-aceside > a,
body.aceside .vod-card-aceside > a { display: block; }
body.aceside .vod-card-aceside .ace-cover .video-badge { background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 100%); opacity: 0; }
body.aceside .vod-card-aceside:hover .ace-cover .video-badge { opacity: 1; }

/* AceSide Hero / 数据条 / 板块 */
.ace-hero {
  padding-top: 5rem; padding-bottom: 6rem; position: relative;
}
.ace-stat-grid {
  margin-top: 5rem;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px; border-radius: 16px; overflow: hidden;
  background: var(--border);
}
@media (min-width: 768px) {
  .ace-stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.ace-stat-grid > div { background: var(--bg); padding: 1.5rem; }
.ace-stat-grid .num { font-size: 1.875rem; font-weight: 700; line-height: 1.1; }
.ace-stat-grid .lbl { font-size: 11px; margin-top: 4px; color: var(--text-3); }

/* ============ AceSide v2 修复 ============ */
/* 防御性：阻止 maccms public-head-early.css 的 h1{font-size:.4rem} 等覆盖 */
body.aceside h1,
body.aceside h2,
body.aceside h3,
body.aceside h4,
body.aceside h5,
body.aceside h6 {
  font-size: inherit;
  line-height: 1.2;
}
body.aceside .ace-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem) !important; line-height: 1.1 !important; }
body.aceside .ace-hero p  { font-size: 1.05rem !important; line-height: 1.65 !important; }

/* 防御性：防止中文逐字断行/挤压 */
body.aceside,
body.aceside .ace-container,
body.aceside .ace-hero,
body.aceside .ace-hero > div,
body.aceside .ace-hero h1,
body.aceside .ace-hero p,
body.aceside .ace-card {
  word-break: keep-all;
  overflow-wrap: break-word;
  white-space: normal;
}
body.aceside .ace-container {
  width: 100%;
  box-sizing: border-box;
}
/* 仅约束 hero 文本区域，stat-grid 等数据条不受影响 */
body.aceside .ace-hero > div:not(.ace-hero-orbs):not(.ace-stat-grid):not(.ace-hero-icons) {
  max-width: 760px;
  width: 100%;
}
body.aceside .ace-hero .ace-stat-grid {
  width: 100% !important;
  max-width: none !important;
}
body.aceside .ace-stat-grid .num {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  letter-spacing: -0.02em;
}
body.aceside .ace-stat-grid .lbl {
  font-size: 13px !important;
  color: var(--text-2) !important;
  margin-top: 6px !important;
  word-break: keep-all !important;
  white-space: nowrap !important;
}
body.aceside .ace-stat-grid > div {
  min-width: 0;
  padding: 1.5rem 1rem !important;
  overflow: hidden;
}

/* 认证页 hero 字号修复（登录/注册左侧标题不再被覆盖成 6.4px） */
body.aceside .ace-auth-hero h1,
body.aceside .ace-auth-hero .auth-hero-title {
  font-size: clamp(2rem, 3.6vw, 3rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
}
body.aceside .ace-auth-hero p,
body.aceside .ace-auth-hero .auth-hero-sub {
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: var(--text-2) !important;
}
/* 阻止 maccms auth-ui.css 的 reg-w.auth-shell{width:336px} 覆盖 */
body.aceside .reg-w.auth-shell,
body.aceside .auth-shell {
  width: 100% !important;
  max-width: 420px !important;
}

/* ============ 首页 4 个分类卡片（实操项目/视频教程/VIP精选/我要发布）字号 +30% ============ */
body.aceside .ace-grid .ace-card > div { gap: 16px; }
body.aceside .ace-grid .ace-card > div > div:first-child {
  width: 56px !important;
  height: 56px !important;
  border-radius: 14px !important;
  font-size: 28px !important;
}
body.aceside .ace-grid .ace-card > div > div:nth-child(2) > div:first-child {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
}
body.aceside .ace-grid .ace-card > div > div:nth-child(2) > div:nth-child(2) {
  font-size: 14px !important;
  line-height: 1.5 !important;
}

/* ============ VIP PASS 右侧卡片排版优化 ============ */
body.aceside .ace-home-side .ace-card h3 {
  font-size: 1.2rem !important;
  line-height: 1.35 !important;
  margin: 0 0 10px !important;
  word-break: keep-all;
}
body.aceside .ace-home-side .ace-card p {
  font-size: 13px !important;
  line-height: 1.7 !important;
  word-break: keep-all;
}
body.aceside .ace-home-side .btn-accent {
  font-size: 14px !important;
  padding: 10px 18px !important;
  font-weight: 700 !important;
}

/* ============ 首页右侧动态装饰（hero 旁的装饰光晕） ============ */
.ace-hero { overflow: visible; }
.ace-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 20px;
  width: 480px;
  height: 480px;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 30%, rgba(251,191,36,0.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(244,114,182,0.14), transparent 65%),
    radial-gradient(circle at 50% 50%, rgba(103,232,249,0.10), transparent 70%);
  filter: blur(40px);
  animation: aceHeroPulse 9s ease-in-out infinite alternate;
  z-index: 0;
}
.ace-hero::after {
  content: '';
  position: absolute;
  right: 40px;
  top: 80px;
  width: 320px;
  height: 320px;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0, transparent 70%);
          mask-image: radial-gradient(circle at 50% 50%, #000 0, transparent 70%);
  animation: aceHeroDrift 18s linear infinite;
  z-index: 0;
  opacity: 0.6;
}
.ace-hero > * { position: relative; z-index: 1; }

@keyframes aceHeroPulse {
  0%   { transform: translate3d(0,0,0) scale(1);   opacity: 0.85; }
  50%  { transform: translate3d(-30px,20px,0) scale(1.08); opacity: 1; }
  100% { transform: translate3d(20px,-10px,0) scale(0.95); opacity: 0.75; }
}
@keyframes aceHeroDrift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 64px 64px, 64px 64px; }
}

/* 浅色主题下减弱装饰强度 */
html[data-theme="light"] .ace-hero::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(251,191,36,0.22), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(244,114,182,0.16), transparent 65%);
  filter: blur(50px);
  opacity: 0.7;
}
html[data-theme="light"] .ace-hero::after {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}

/* 浮动装饰小球（hero 右侧三颗能量球） */
.ace-hero-orbs {
  position: absolute;
  right: 60px;
  top: 120px;
  width: 280px;
  height: 280px;
  pointer-events: none;
  z-index: 0;
}
.ace-hero-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.8;
  animation: aceOrbFloat 12s ease-in-out infinite;
}
.ace-hero-orbs span:nth-child(1) {
  width: 22px; height: 22px;
  left: 30px; top: 40px;
  background: radial-gradient(circle, #fbbf24, #f59e0b);
  box-shadow: 0 0 30px rgba(251,191,36,0.6);
  animation-delay: 0s;
}
.ace-hero-orbs span:nth-child(2) {
  width: 14px; height: 14px;
  left: 200px; top: 110px;
  background: radial-gradient(circle, #67e8f9, #06b6d4);
  box-shadow: 0 0 24px rgba(103,232,249,0.6);
  animation-delay: -3s;
  animation-duration: 9s;
}
.ace-hero-orbs span:nth-child(3) {
  width: 18px; height: 18px;
  left: 120px; top: 200px;
  background: radial-gradient(circle, #c4b5fd, #8b5cf6);
  box-shadow: 0 0 28px rgba(196,181,253,0.6);
  animation-delay: -6s;
  animation-duration: 14s;
}
@keyframes aceOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(20px, -30px) scale(1.15); }
  50%      { transform: translate(-15px, 18px) scale(0.92); }
  75%      { transform: translate(25px, 10px) scale(1.05); }
}

@media (max-width: 768px) {
  .ace-hero::before,
  .ace-hero::after,
  .ace-hero-orbs,
  .ace-hero-icons { display: none; }
}

/* ============ 首页 Hero 右侧 美金 / 虚拟货币 大图案 ============ */
.ace-hero { min-height: 480px; }
.ace-hero-icons {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 620px;
  height: 520px;
  pointer-events: none;
  z-index: 0;
  font-family: 'Inter', -apple-system, "PingFang SC", sans-serif;
}
.ace-coin {
  position: absolute;
  display: grid; place-items: center;
  font-weight: 900;
  border-radius: 50%;
  user-select: none;
  text-shadow: 0 8px 24px rgba(0,0,0,0.4);
  will-change: transform;
}
/* 美金 — 大金色立体球 */
.ace-coin.coin-usd {
  right: 60px; top: 30px;
  width: 200px; height: 200px;
  font-size: 130px; line-height: 1;
  color: #1a1a00;
  background: radial-gradient(circle at 30% 25%, #fde68a, #fbbf24 40%, #d97706 75%, #92400e);
  box-shadow:
    0 30px 60px -20px rgba(251,191,36,0.7),
    inset -20px -30px 50px rgba(0,0,0,0.25),
    inset 20px 20px 40px rgba(255,255,255,0.4),
    0 0 80px rgba(251,191,36,0.35);
  animation: aceCoinFloat 8s ease-in-out infinite;
}
/* 比特币 — 橙色立体球 */
.ace-coin.coin-btc {
  right: 280px; top: 110px;
  width: 140px; height: 140px;
  font-size: 90px; line-height: 1;
  color: #fff;
  background: radial-gradient(circle at 30% 25%, #fdba74, #f97316 40%, #c2410c 75%, #7c2d12);
  box-shadow:
    0 24px 50px -16px rgba(249,115,22,0.7),
    inset -16px -24px 40px rgba(0,0,0,0.3),
    inset 14px 14px 30px rgba(255,255,255,0.35),
    0 0 60px rgba(249,115,22,0.4);
  animation: aceCoinFloat 11s ease-in-out infinite reverse;
  animation-delay: -2s;
}
/* 以太坊 — 紫色立体球 */
.ace-coin.coin-eth {
  right: 30px; top: 280px;
  width: 120px; height: 120px;
  font-size: 75px; line-height: 1;
  color: #fff;
  background: radial-gradient(circle at 30% 25%, #c4b5fd, #8b5cf6 40%, #6d28d9 75%, #4c1d95);
  box-shadow:
    0 22px 48px -14px rgba(139,92,246,0.65),
    inset -14px -22px 36px rgba(0,0,0,0.3),
    inset 12px 12px 28px rgba(255,255,255,0.35),
    0 0 50px rgba(139,92,246,0.4);
  animation: aceCoinFloat 10s ease-in-out infinite;
  animation-delay: -4s;
}
/* 人民币 — 红色立体球 */
.ace-coin.coin-cny {
  right: 200px; top: 320px;
  width: 100px; height: 100px;
  font-size: 60px; line-height: 1;
  color: #fff;
  background: radial-gradient(circle at 30% 25%, #fda4af, #f43f5e 40%, #be123c 75%, #881337);
  box-shadow:
    0 20px 40px -12px rgba(244,63,94,0.6),
    inset -12px -18px 32px rgba(0,0,0,0.3),
    inset 10px 10px 24px rgba(255,255,255,0.3),
    0 0 44px rgba(244,63,94,0.35);
  animation: aceCoinFloat 9s ease-in-out infinite reverse;
  animation-delay: -6s;
}
/* USDT — 青绿立体球 */
.ace-coin.coin-usdt {
  right: 360px; top: 250px;
  width: 86px; height: 86px;
  font-size: 50px; line-height: 1;
  color: #fff;
  background: radial-gradient(circle at 30% 25%, #6ee7b7, #10b981 40%, #047857 75%, #064e3b);
  box-shadow:
    0 18px 36px -10px rgba(16,185,129,0.55),
    inset -10px -14px 28px rgba(0,0,0,0.3),
    inset 8px 8px 20px rgba(255,255,255,0.3),
    0 0 38px rgba(16,185,129,0.35);
  animation: aceCoinFloat 12s ease-in-out infinite;
  animation-delay: -3s;
}

/* 装饰光环 */
.ace-coin-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(251,191,36,0.3);
  pointer-events: none;
  animation: aceCoinRingRotate 30s linear infinite;
}
.ace-coin-ring.ring-1 {
  right: -20px; top: -50px;
  width: 360px; height: 360px;
  border-color: rgba(251,191,36,0.18);
}
.ace-coin-ring.ring-2 {
  right: 100px; top: 100px;
  width: 280px; height: 280px;
  border-color: rgba(244,114,182,0.18);
  border-style: dotted;
  animation-duration: 45s;
  animation-direction: reverse;
}
.ace-coin-ring.ring-3 {
  right: 200px; top: 180px;
  width: 180px; height: 180px;
  border-color: rgba(103,232,249,0.20);
  animation-duration: 22s;
}

@keyframes aceCoinFloat {
  0%, 100% { transform: translate(0, 0) rotate(-3deg); }
  25%      { transform: translate(-12px, -18px) rotate(2deg); }
  50%      { transform: translate(8px, -8px) rotate(-1deg); }
  75%      { transform: translate(14px, 10px) rotate(4deg); }
}
@keyframes aceCoinRingRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* 浅色主题下减弱光晕 */
html[data-theme="light"] .ace-coin {
  text-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
html[data-theme="light"] .ace-coin.coin-usd { box-shadow: 0 20px 40px -16px rgba(251,191,36,0.45), inset -16px -24px 40px rgba(0,0,0,0.15), inset 16px 16px 32px rgba(255,255,255,0.5); }
html[data-theme="light"] .ace-coin-ring { border-color: rgba(0,0,0,0.08) !important; }

/* 中等屏幕：缩小 + 隐藏部分 */
@media (max-width: 1280px) {
  .ace-coin.coin-usd { width: 160px; height: 160px; font-size: 100px; right: 30px; top: 20px; }
  .ace-coin.coin-btc { width: 110px; height: 110px; font-size: 70px; right: 200px; top: 90px; }
  .ace-coin.coin-eth { width: 90px; height: 90px; font-size: 55px; right: 10px; top: 230px; }
  .ace-coin.coin-cny { width: 80px; height: 80px; font-size: 48px; right: 150px; top: 250px; }
  .ace-coin.coin-usdt { display: none; }
  .ace-coin-ring.ring-1 { width: 280px; height: 280px; }
}
@media (max-width: 1024px) {
  .ace-hero-icons { width: 45%; max-width: 380px; height: 380px; }
  .ace-coin.coin-cny, .ace-coin.coin-eth { display: none; }
}
@media (max-width: 900px) {
  .ace-hero-icons { display: none; }
}

/* ============ 强化字体可见度（修复"黑色字体看不清"） ============ */
body.aceside, body.aceside .ace-container, body.aceside section, body.aceside article {
  color: var(--text);
}
body.aceside h1, body.aceside h2, body.aceside h3 { color: var(--text) !important; }
body.aceside .ace-card * { color: inherit; }
body.aceside .ace-art-grid * { color: inherit; }
/* 副标题/描述用 text-2 而非 text-3，更易读 */
body.aceside .ace-card p,
body.aceside .ace-stat-grid .lbl,
body.aceside .ace-art-grid .desc {
  color: var(--text-2) !important;
}
/* 浅色主题下，黑色文字保持 #18181b 可读 */
html[data-theme="light"] body.aceside h1,
html[data-theme="light"] body.aceside h2,
html[data-theme="light"] body.aceside h3,
html[data-theme="light"] body.aceside .ace-card > div > div > div:first-child { color: #18181b !important; }

/* ============ 会员中心 强化覆盖（修复"还是 maccms 模板"） ============ */
body.aceside.user-center-aceside-body .member-wrap,
body.aceside.user-center-aceside-body .member-wrap-bg {
  background: transparent !important;
  background-image: none !important;
  padding: 1.5rem 0 3rem !important;
  margin: 0 !important;
}
body.aceside.user-center-aceside-body #member.fn-clear {
  max-width: 80rem !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
  box-sizing: border-box !important;
  background: transparent !important;
}
body.aceside.user-center-aceside-body #left.dl-bl,
body.aceside.user-center-aceside-body #right.dr-no,
body.aceside.user-center-aceside-body #right {
  background: var(--bg-elev) !important;
  background-image: none !important;
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  padding: 1.5rem !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
  color: var(--text) !important;
}
body.aceside.user-center-aceside-body #right { margin-top: 1.25rem !important; }
@media (min-width: 992px) {
  body.aceside.user-center-aceside-body #member.fn-clear {
    display: grid !important;
    grid-template-columns: 260px 1fr !important;
    gap: 1.5rem !important;
  }
  body.aceside.user-center-aceside-body #left.dl-bl,
  body.aceside.user-center-aceside-body #right {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
  }
}
body.aceside.user-center-aceside-body #left a,
body.aceside.user-center-aceside-body #left li > a {
  color: var(--text-2) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  transition: all .2s ease;
}
body.aceside.user-center-aceside-body #left a:hover {
  color: var(--accent) !important;
  background: var(--bg-elev-2) !important;
}
body.aceside.user-center-aceside-body #left .active > a,
body.aceside.user-center-aceside-body #left .cur > a,
body.aceside.user-center-aceside-body #left li.on > a,
body.aceside.user-center-aceside-body #left a.selected {
  background: rgba(251,191,36,0.12) !important;
  color: var(--accent) !important;
}
body.aceside.user-center-aceside-body .co-right,
body.aceside.user-center-aceside-body .co-right-bg {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.aceside.user-center-aceside-body .m-nav { display: none !important; }
body.aceside.user-center-aceside-body * { box-sizing: border-box; }

/* ============ 会员中心 AceSide 改造 ============ */
body.aceside.user-center-aceside-body {
  background: var(--bg) !important;
}
body.aceside .ace-user-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 15% 30%, rgba(251,191,36,0.10), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(244,114,182,0.08), transparent 60%),
    var(--bg);
}
body.aceside .ace-user-hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 200px;
}
body.aceside .ace-user-hero-text {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
}
body.aceside .ace-user-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; color: var(--text-2);
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
body.aceside .ace-user-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
body.aceside .ace-user-hero-text h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em;
  margin: 0 0 0.8rem !important;
  color: var(--text) !important;
}
body.aceside .ace-user-hero-text p {
  font-size: 1rem !important;
  color: var(--text-2) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}
body.aceside .ace-user-hero-orbs {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 280px; height: 240px;
  pointer-events: none; z-index: 1;
}
body.aceside .ace-user-hero-orbs span {
  position: absolute; border-radius: 50%; filter: blur(1px); opacity: 0.85;
  animation: aceOrbFloat 11s ease-in-out infinite;
}
body.aceside .ace-user-hero-orbs span:nth-child(1) {
  width: 26px; height: 26px; left: 60px; top: 30px;
  background: radial-gradient(circle, #fbbf24, #f59e0b);
  box-shadow: 0 0 30px rgba(251,191,36,0.55);
}
body.aceside .ace-user-hero-orbs span:nth-child(2) {
  width: 16px; height: 16px; left: 200px; top: 100px;
  background: radial-gradient(circle, #67e8f9, #06b6d4);
  box-shadow: 0 0 26px rgba(103,232,249,0.55);
  animation-delay: -3s;
}
body.aceside .ace-user-hero-orbs span:nth-child(3) {
  width: 20px; height: 20px; left: 130px; top: 170px;
  background: radial-gradient(circle, #c4b5fd, #8b5cf6);
  box-shadow: 0 0 28px rgba(196,181,253,0.55);
  animation-delay: -6s;
}

/* member-wrap 容器 */
body.aceside .member-wrap.member-wrap-bg {
  background: transparent !important;
  padding: 2rem 0 !important;
}
body.aceside #member.fn-clear {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
body.aceside #member #left.dl-bl,
body.aceside #member #right {
  background: var(--bg-elev) !important;
  border: 1px solid var(--border) !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
body.aceside #member #right { margin-top: 1.5rem; }
@media (min-width: 992px) {
  body.aceside #member.fn-clear { display: grid; grid-template-columns: 240px 1fr; gap: 1.5rem; }
  body.aceside #member #left.dl-bl,
  body.aceside #member #right { float: none !important; width: auto !important; margin: 0 !important; }
}
body.aceside #member #left .m-nav,
body.aceside #member #right .m-nav { display: none; }
body.aceside #member #right .co-right,
body.aceside #member #right .co-right-bg {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* 左侧导航美化 */
body.aceside #member #left .ui-nav-aside,
body.aceside #member #left .ui-nav,
body.aceside #member #left .left-nav { padding: 0 !important; }
body.aceside #member #left a,
body.aceside #member #left li > a {
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
body.aceside #member #left a:hover {
  background: var(--bg-elev-2);
  color: var(--accent) !important;
}
body.aceside #member #left .active > a,
body.aceside #member #left .cur > a,
body.aceside #member #left .selected > a {
  background: rgba(251,191,36,0.12) !important;
  color: var(--accent) !important;
}

/* 商务合作板块 */
body.aceside .business-coop-section {
  background: var(--bg-elev-2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
  padding: 1.5rem !important;
  margin-top: 1.5rem !important;
}
body.aceside .business-coop-section .coop-title {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 0.5rem !important;
}
body.aceside .business-coop-section .coop-desc {
  font-size: 13px !important;
  color: var(--text-3) !important;
  line-height: 1.7 !important;
  margin: 0 0 1rem !important;
}
body.aceside .business-coop-section .coop-contacts {
  display: flex; flex-wrap: wrap; gap: 10px;
}
body.aceside .business-coop-section .coop-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text-2) !important;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}
body.aceside .business-coop-section .coop-item:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  transform: translateY(-1px);
}
body.aceside .business-coop-section .coop-item.coop-cta {
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: #1a1a00 !important;
  border-color: transparent;
  font-weight: 600;
}

/* 游客 VIP 推广板块 */
body.aceside .guest-vip-section {
  background: linear-gradient(160deg, rgba(251,191,36,0.10), rgba(244,114,182,0.05) 60%, var(--bg-elev-2));
  border: 1px solid var(--border) !important;
  border-radius: 16px !important;
  padding: 2rem !important;
  margin-bottom: 1.5rem;
}
body.aceside .guest-vip-section .guest-vip-title {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  margin: 0 0 1.25rem !important;
  color: var(--text) !important;
}
body.aceside .guest-vip-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  body.aceside .guest-vip-benefits { grid-template-columns: repeat(4, 1fr); }
}
body.aceside .guest-vip-benefit {
  padding: 10px 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-2);
  text-align: center;
}
body.aceside .guest-vip-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 1.5rem;
}
body.aceside .guest-vip-plan {
  padding: 1rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s;
}
body.aceside .guest-vip-plan:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
body.aceside .guest-vip-plan.hot {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(251,191,36,0.10), var(--bg-elev));
  position: relative;
}
body.aceside .guest-vip-plan.hot::before {
  content: '推荐';
  position: absolute;
  top: -8px; right: 8px;
  padding: 2px 8px;
  background: var(--accent);
  color: #1a1a00;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
}
body.aceside .guest-vip-plan .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
body.aceside .guest-vip-plan .price {
  font-size: 12px;
  color: var(--text-3);
}
body.aceside .guest-vip-cta {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: #1a1a00 !important;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s;
}
body.aceside .guest-vip-cta:hover { transform: translateY(-2px); }

@media (max-width: 768px) {
  body.aceside .ace-user-hero-orbs { display: none; }
  body.aceside .ace-user-hero { padding: 2rem 0 1.5rem; }
  body.aceside #member.fn-clear { padding: 0 1rem; }
}
