/**
 * WHMO Standalone Styles v1.0
 * 科技风深色主题 - 红黑金配色
 * 玻璃拟态 / 粒子动画 / 深色背景
 */

/* ================================================================
   CSS 变量定义
   ================================================================ */
:root {
    /* 主色调 */
    --whmo-bg-primary: #0f0f1a;
    --whmo-bg-secondary: #1a1a2e;
    --whmo-bg-tertiary: #252540;
    --whmo-red: #8B0000;
    --whmo-red-light: #a00000;
    --whmo-red-glow: rgba(139, 0, 0, 0.4);
    --whmo-gold: #DAA520;
    --whmo-gold-light: #e6b84d;
    --whmo-gold-glow: rgba(218, 165, 32, 0.3);
    
    /* 文字颜色 */
    --whmo-text-primary: #ffffff;
    --whmo-text-secondary: rgba(255, 255, 255, 0.85);
    --whmo-text-muted: rgba(255, 255, 255, 0.5);
    --whmo-text-dark: #1a1a2e;
    
    /* 玻璃拟态 */
    --whmo-glass-bg: rgba(255, 255, 255, 0.04);
    --whmo-glass-border: rgba(218, 165, 32, 0.12);
    --whmo-glass-hover: rgba(255, 255, 255, 0.08);
    
    /* 字体 */
    --whmo-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans SC', sans-serif;
    --whmo-font-serif: 'Noto Serif SC', Georgia, 'Times New Roman', serif;
    
    /* 间距 */
    --whmo-nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
}

body.whmo-s-page {
    background: linear-gradient(180deg, var(--whmo-bg-primary) 0%, var(--whmo-bg-secondary) 50%, var(--whmo-bg-primary) 100%);
    background-attachment: fixed;
    color: var(--whmo-text-primary);
    font-family: var(--whmo-font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background: var(--whmo-gold-glow);
    color: #fff;
}

/* ================================================================
   浮动粒子背景
   ================================================================ */
.whmo-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.whmo-particle {
    position: absolute;
    border-radius: 50%;
    animation: whmoParticleFloat 20s ease-in-out infinite;
}

.whmo-particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    top: 20%;
    background: radial-gradient(circle, var(--whmo-red-light), transparent 70%);
    animation-delay: 0s;
    animation-duration: 18s;
}

.whmo-particle:nth-child(2) {
    width: 3px;
    height: 3px;
    left: 80%;
    top: 15%;
    background: radial-gradient(circle, var(--whmo-gold), transparent 70%);
    animation-delay: -4s;
    animation-duration: 22s;
}

.whmo-particle:nth-child(3) {
    width: 2px;
    height: 2px;
    left: 50%;
    top: 60%;
    background: radial-gradient(circle, var(--whmo-gold-light), transparent 70%);
    animation-delay: -8s;
    animation-duration: 25s;
}

.whmo-particle:nth-child(4) {
    width: 4px;
    height: 4px;
    left: 25%;
    top: 75%;
    background: radial-gradient(circle, var(--whmo-red), transparent 70%);
    animation-delay: -12s;
    animation-duration: 20s;
}

.whmo-particle:nth-child(5) {
    width: 3px;
    height: 3px;
    left: 70%;
    top: 45%;
    background: radial-gradient(circle, var(--whmo-gold), transparent 70%);
    animation-delay: -6s;
    animation-duration: 28s;
}

.whmo-particle:nth-child(6) {
    width: 2px;
    height: 2px;
    left: 90%;
    top: 80%;
    background: radial-gradient(circle, var(--whmo-red-light), transparent 70%);
    animation-delay: -15s;
    animation-duration: 24s;
}

.whmo-particle:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 5%;
    top: 50%;
    background: radial-gradient(circle, var(--whmo-gold-light), transparent 70%);
    animation-delay: -9s;
    animation-duration: 26s;
}

.whmo-particle:nth-child(8) {
    width: 2px;
    height: 2px;
    left: 60%;
    top: 30%;
    background: radial-gradient(circle, var(--whmo-red), transparent 70%);
    animation-delay: -3s;
    animation-duration: 30s;
}

@keyframes whmoParticleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.7;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.6;
    }
}

/* ================================================================
   导航栏
   ================================================================ */
.whmo-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.whmo-nav-scrolled {
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--whmo-glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.whmo-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--whmo-nav-height);
}

.whmo-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--whmo-text-primary);
}

.whmo-nav-logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 8px var(--whmo-gold-glow));
}

.whmo-nav-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--whmo-gold);
    font-family: var(--whmo-font-serif);
}

.whmo-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.whmo-nav-link {
    color: var(--whmo-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.whmo-nav-link:hover {
    color: var(--whmo-text-primary);
    background: var(--whmo-glass-hover);
}

.whmo-nav-link.active {
    color: var(--whmo-gold);
    background: rgba(218, 165, 32, 0.1);
}

.whmo-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.whmo-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ================================================================
   Hero 区域
   ================================================================ */
.whmo-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.whmo-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.whmo-hero-orb1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.12), transparent 70%);
    top: -20%;
    left: -10%;
    animation: whmoOrbDrift1 15s ease-in-out infinite;
}

.whmo-hero-orb2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.08), transparent 70%);
    bottom: -20%;
    right: -10%;
    animation: whmoOrbDrift2 18s ease-in-out infinite;
}

@keyframes whmoOrbDrift1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, 40px); }
}

@keyframes whmoOrbDrift2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, -30px); }
}

.whmo-hero-glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(218, 165, 32, 0.06), transparent 70%);
    pointer-events: none;
    animation: whmoHeroGlowPulse 8s ease-in-out infinite;
}

@keyframes whmoHeroGlowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.whmo-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    animation: whmoHeroFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes whmoHeroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.whmo-hero-emblem {
    margin: 0 auto 32px;
    width: 140px;
    height: 140px;
    animation: whmoEmblemFloat 6s ease-in-out infinite;
}

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

.whmo-hero-emblem svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 24px rgba(218, 165, 32, 0.25));
}

.whmo-hero-badge {
    display: inline-block;
    border: 1px solid var(--whmo-gold);
    color: var(--whmo-gold);
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.whmo-hero-title {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 12px;
    margin-bottom: 16px;
    color: var(--whmo-text-primary);
    text-shadow: 0 2px 30px rgba(218, 165, 32, 0.15);
    font-family: var(--whmo-font-serif);
}

.whmo-hero-subtitle {
    font-size: 16px;
    color: var(--whmo-text-muted);
    letter-spacing: 4px;
    margin-bottom: 32px;
}

.whmo-hero-divider {
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whmo-hero-divider span {
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--whmo-gold), transparent);
    position: relative;
}

.whmo-hero-divider span::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--whmo-gold);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(218, 165, 32, 0.5);
}

/* ================================================================
   内容区域
   ================================================================ */
.whmo-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.whmo-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--whmo-text-primary);
    margin-bottom: 8px;
    font-family: var(--whmo-font-serif);
    letter-spacing: 4px;
}

.whmo-section-subtitle {
    text-align: center;
    color: var(--whmo-text-muted);
    margin-bottom: 48px;
    font-size: 15px;
    letter-spacing: 2px;
}

/* ================================================================
   玻璃拟态卡片
   ================================================================ */
.whmo-glass-card {
    background: var(--whmo-glass-bg);
    border: 1px solid var(--whmo-glass-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.whmo-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.3), transparent);
}

.whmo-glass-card:hover {
    background: var(--whmo-glass-hover);
    border-color: rgba(218, 165, 32, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(218, 165, 32, 0.05);
}

/* ================================================================
   表单样式覆盖（核心：覆盖whmo-front.css的白色样式）
   ================================================================ */

/* 表单容器 */
.whmo-s-page .whmo-form,
.whmo-s-page div.whmo-form,
.whmo-s-page .whmo-profile,
.whmo-s-page div.whmo-profile {
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 32px;
    background: var(--whmo-glass-bg);
    border: 1px solid var(--whmo-glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.whmo-s-page .whmo-form::before,
.whmo-s-page div.whmo-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--whmo-red), var(--whmo-gold), var(--whmo-red));
    border-radius: 20px 20px 0 0;
}

/* 表单标题 */
.whmo-s-page .whmo-form h2,
.whmo-s-page div.whmo-form h2,
.whmo-s-page .whmo-profile h2 {
    margin-top: 0;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--whmo-gold);
    color: var(--whmo-text-primary);
    font-size: 24px;
    letter-spacing: 4px;
    text-align: center;
}

.whmo-s-page .whmo-form h3,
.whmo-s-page div.whmo-form h3,
.whmo-s-page .whmo-profile h3 {
    color: var(--whmo-gold);
    font-size: 16px;
    margin: 24px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--whmo-glass-border);
    letter-spacing: 2px;
}

/* 表单分组 */
.whmo-s-page .whmo-form-group {
    margin-bottom: 20px;
}

.whmo-s-page .whmo-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--whmo-text-secondary);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.whmo-s-page .whmo-form-group label .required {
    color: var(--whmo-red-light);
    margin-left: 4px;
}

/* 输入框 */
.whmo-s-page .whmo-form-group input[type="text"],
.whmo-s-page .whmo-form-group input[type="email"],
.whmo-s-page .whmo-form-group input[type="password"],
.whmo-s-page .whmo-form-group input[type="tel"],
.whmo-s-page .whmo-form-group input[type="url"],
.whmo-s-page .whmo-form-group select,
.whmo-s-page .whmo-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.3);
    color: var(--whmo-text-primary);
    transition: all 0.3s;
}

.whmo-s-page .whmo-form-group input::placeholder,
.whmo-s-page .whmo-form-group textarea::placeholder {
    color: var(--whmo-text-muted);
}

.whmo-s-page .whmo-form-group input:focus,
.whmo-s-page .whmo-form-group select:focus,
.whmo-s-page .whmo-form-group textarea:focus {
    outline: none;
    border-color: var(--whmo-gold);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.15), 0 0 20px rgba(218, 165, 32, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.whmo-s-page .whmo-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.whmo-s-page .whmo-form-group small {
    display: block;
    margin-top: 6px;
    color: var(--whmo-text-muted);
    font-size: 12px;
}

/* ================================================================
   按钮样式
   ================================================================ */
.whmo-s-page .whmo-btn,
.whmo-s-page button.whmo-btn,
.whmo-s-page input[type="submit"].whmo-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--whmo-gold);
    background: transparent;
    color: var(--whmo-gold);
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    min-height: 48px;
    box-sizing: border-box;
    letter-spacing: 1px;
}

.whmo-s-page .whmo-btn:hover,
.whmo-s-page button.whmo-btn:hover,
.whmo-s-page input[type="submit"].whmo-btn:hover {
    background: var(--whmo-gold);
    color: var(--whmo-bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(218, 165, 32, 0.3);
}

/* 主按钮（金色渐变） */
.whmo-s-page .whmo-btn-primary,
.whmo-s-page button.whmo-btn-primary,
.whmo-s-page input[type="submit"] {
    background: linear-gradient(135deg, var(--whmo-gold) 0%, var(--whmo-gold-light) 100%);
    color: var(--whmo-bg-primary) !important;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(218, 165, 32, 0.25);
}

.whmo-s-page .whmo-btn-primary:hover,
.whmo-s-page button.whmo-btn-primary:hover,
.whmo-s-page input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--whmo-gold-light) 0%, var(--whmo-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(218, 165, 32, 0.4);
}

/* 次要按钮 */
.whmo-s-page .whmo-btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--whmo-text-secondary);
}

.whmo-s-page .whmo-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--whmo-gold);
    color: var(--whmo-gold);
}

/* 小按钮 */
.whmo-s-page .whmo-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    min-height: 36px;
    border-radius: 8px;
}

/* 表单操作区 */
.whmo-s-page .whmo-form-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.whmo-s-page .whmo-form-actions .whmo-btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

/* 表单链接 */
.whmo-s-page .whmo-form-links {
    margin-top: 24px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--whmo-glass-border);
}

.whmo-s-page .whmo-form-links a {
    color: var(--whmo-gold);
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.2s;
}

.whmo-s-page .whmo-form-links a:hover {
    color: var(--whmo-gold-light);
    text-decoration: underline;
}

/* ================================================================
   步骤指示器
   ================================================================ */
.whmo-s-page .whmo-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 0 20px;
}

.whmo-s-page .whmo-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.whmo-s-page .whmo-step::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.whmo-s-page .whmo-step:last-child::after {
    display: none;
}

.whmo-s-page .whmo-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--whmo-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
    margin-bottom: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.whmo-s-page .whmo-step.active .whmo-step-num {
    background: linear-gradient(135deg, var(--whmo-red) 0%, var(--whmo-red-light) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 20px var(--whmo-red-glow);
}

.whmo-s-page .whmo-step.completed .whmo-step-num {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: #fff;
    border-color: transparent;
}

.whmo-s-page .whmo-step.completed::after {
    background: linear-gradient(90deg, #2e7d32, rgba(46, 125, 50, 0.3));
}

.whmo-s-page .whmo-step-label {
    font-size: 12px;
    color: var(--whmo-text-muted);
    letter-spacing: 1px;
}

.whmo-s-page .whmo-step.active .whmo-step-label {
    color: var(--whmo-gold);
    font-weight: 600;
}

/* ================================================================
   文件上传区域
   ================================================================ */
.whmo-s-page .whmo-upload-area {
    position: relative;
    border: 2px dashed rgba(218, 165, 32, 0.3);
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
}

.whmo-s-page .whmo-upload-area:hover,
.whmo-s-page .whmo-upload-area.dragover {
    border-color: var(--whmo-gold);
    background: rgba(218, 165, 32, 0.05);
}

.whmo-s-page .whmo-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.whmo-s-page .whmo-upload-placeholder {
    color: var(--whmo-text-muted);
}

.whmo-s-page .whmo-upload-icon {
    display: block;
    font-size: 40px;
    margin-bottom: 12px;
}

.whmo-s-page .whmo-upload-placeholder small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
}

.whmo-s-page .whmo-upload-preview {
    position: relative;
}

.whmo-s-page .whmo-upload-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    border: 1px solid var(--whmo-glass-border);
}

.whmo-s-page .whmo-upload-remove {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--whmo-red);
    color: #fff;
    border: 2px solid var(--whmo-bg-primary);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.whmo-s-page .whmo-upload-remove:hover {
    background: var(--whmo-red-light);
}

/* ================================================================
   消息提示
   ================================================================ */
.whmo-s-page .whmo-message {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.whmo-s-page .whmo-message.success {
    background: rgba(46, 125, 50, 0.15);
    color: #81c784;
    border: 1px solid rgba(46, 125, 50, 0.3);
}

.whmo-s-page .whmo-message.error {
    background: rgba(198, 40, 40, 0.15);
    color: #ef5350;
    border: 1px solid rgba(198, 40, 40, 0.3);
}

/* ================================================================
   提醒框
   ================================================================ */
.whmo-s-page .whmo-alert {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    background: var(--whmo-glass-bg);
    border: 1px solid var(--whmo-glass-border);
}

.whmo-s-page .whmo-alert-warning {
    border-color: rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.08);
}

.whmo-s-page .whmo-alert-error {
    border-color: rgba(198, 40, 40, 0.3);
    background: rgba(198, 40, 40, 0.08);
}

.whmo-s-page .whmo-alert-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.whmo-s-page .whmo-alert strong {
    display: block;
    margin-bottom: 6px;
    color: var(--whmo-text-primary);
}

.whmo-s-page .whmo-alert p {
    margin: 0;
    font-size: 14px;
    color: var(--whmo-text-secondary);
}

/* ================================================================
   Profile / 会员中心
   ================================================================ */
.whmo-s-page .whmo-profile {
    max-width: 800px;
}

.whmo-s-page .whmo-profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, var(--whmo-red) 0%, var(--whmo-red-light) 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.whmo-s-page .whmo-profile-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.2), transparent 60%);
    pointer-events: none;
}

.whmo-s-page .whmo-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--whmo-gold);
    box-shadow: 0 0 30px var(--whmo-gold-glow);
}

.whmo-s-page .whmo-avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.3);
    color: var(--whmo-gold);
    border: 4px solid var(--whmo-gold);
}

.whmo-s-page .whmo-avatar-sm {
    width: 48px;
    height: 48px;
    font-size: 18px;
}

.whmo-s-page .whmo-profile-info h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 24px;
    letter-spacing: 2px;
}

.whmo-s-page .whmo-profile-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.whmo-s-page .whmo-level-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.whmo-s-page .whmo-level-observer {
    background: rgba(158, 158, 158, 0.8);
    color: #fff;
}

.whmo-s-page .whmo-level-member {
    background: rgba(33, 150, 243, 0.8);
    color: #fff;
}

.whmo-s-page .whmo-level-director {
    background: rgba(255, 152, 0, 0.8);
    color: #fff;
}

.whmo-s-page .whmo-level-standing {
    background: var(--whmo-gold);
    color: var(--whmo-bg-primary);
}

.whmo-s-page .whmo-review-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.whmo-s-page .whmo-review-warning {
    background: rgba(255, 193, 7, 0.2);
    color: #ffd54f;
}

.whmo-s-page .whmo-review-success {
    background: rgba(46, 125, 50, 0.2);
    color: #81c784;
}

.whmo-s-page .whmo-review-error {
    background: rgba(198, 40, 40, 0.2);
    color: #ef5350;
}

.whmo-s-page .whmo-member-id {
    font-size: 13px;
    opacity: 0.8;
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

.whmo-s-page .whmo-profile-body {
    margin-top: 0;
    padding: 24px 32px 32px;
    background: var(--whmo-glass-bg);
    border: 1px solid var(--whmo-glass-border);
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.whmo-s-page .whmo-profile-section {
    margin-bottom: 28px;
}

.whmo-s-page .whmo-profile-section h3 {
    color: var(--whmo-gold);
    font-size: 16px;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--whmo-glass-border);
    letter-spacing: 2px;
}

.whmo-s-page .whmo-info-table {
    width: 100%;
}

.whmo-s-page .whmo-info-table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.whmo-s-page .whmo-info-table td:first-child {
    width: 140px;
    color: var(--whmo-text-muted);
    font-weight: 500;
}

.whmo-s-page .whmo-profile-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ================================================================
   会员证卡片
   ================================================================ */
.whmo-s-page .whmo-member-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: var(--whmo-glass-bg);
    border: 1px solid var(--whmo-glass-border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.whmo-s-page .whmo-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--whmo-red), var(--whmo-gold), var(--whmo-red));
}

.whmo-s-page .whmo-member-card::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.08), transparent 60%);
    pointer-events: none;
}

.whmo-s-page .whmo-member-card h2 {
    margin-top: 0;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--whmo-gold);
    color: var(--whmo-text-primary);
    font-size: 24px;
    letter-spacing: 4px;
    text-align: center;
}

.whmo-s-page .whmo-card-image {
    text-align: center;
    margin-bottom: 20px;
}

.whmo-s-page .whmo-card-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 60px var(--whmo-gold-glow);
    border: 2px solid var(--whmo-gold);
}

.whmo-s-page .whmo-card-meta {
    text-align: center;
    margin-bottom: 20px;
    color: var(--whmo-text-secondary);
}

.whmo-s-page .whmo-card-meta p {
    margin: 6px 0;
}

.whmo-s-page .whmo-card-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.whmo-s-page .whmo-card-empty {
    text-align: center;
    padding: 60px 20px;
}

.whmo-s-page .whmo-card-empty-icon {
    font-size: 72px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.whmo-s-page .whmo-card-empty p {
    margin: 8px 0;
    color: var(--whmo-text-secondary);
    font-size: 16px;
}

.whmo-s-page .whmo-card-hint {
    color: var(--whmo-text-muted) !important;
    font-size: 14px !important;
}

/* ================================================================
   活动列表
   ================================================================ */
.whmo-s-page .whmo-activity-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whmo-s-page .whmo-activity-card {
    background: var(--whmo-glass-bg);
    border: 1px solid var(--whmo-glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.whmo-s-page .whmo-activity-card:hover {
    background: var(--whmo-glass-hover);
    border-color: rgba(218, 165, 32, 0.25);
    transform: translateX(8px);
}

.whmo-s-page .whmo-activity-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.whmo-s-page .whmo-activity-card-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--whmo-text-primary);
}

.whmo-s-page .whmo-activity-card-header h3 a {
    color: var(--whmo-gold);
    text-decoration: none;
    transition: color 0.2s;
}

.whmo-s-page .whmo-activity-card-header h3 a:hover {
    color: var(--whmo-gold-light);
}

.whmo-s-page .whmo-activity-card-body p {
    margin: 6px 0;
    color: var(--whmo-text-secondary);
    font-size: 14px;
}

/* ================================================================
   公告列表
   ================================================================ */
.whmo-s-page .whmo-announcement-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.whmo-s-page .whmo-announcement-item {
    background: var(--whmo-glass-bg);
    border: 1px solid var(--whmo-glass-border);
    border-radius: 12px;
    padding: 20px 24px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 16px;
}

.whmo-s-page .whmo-announcement-item:hover {
    background: var(--whmo-glass-hover);
    border-color: rgba(218, 165, 32, 0.25);
    transform: translateX(8px);
}

.whmo-s-page .whmo-announcement-date {
    flex-shrink: 0;
    text-align: center;
    padding: 12px;
    background: rgba(139, 0, 0, 0.2);
    border-radius: 10px;
    min-width: 70px;
}

.whmo-s-page .whmo-announcement-date .day {
    font-size: 24px;
    font-weight: 700;
    color: var(--whmo-gold);
    display: block;
}

.whmo-s-page .whmo-announcement-date .month {
    font-size: 12px;
    color: var(--whmo-text-muted);
    text-transform: uppercase;
}

.whmo-s-page .whmo-announcement-content {
    flex: 1;
}

.whmo-s-page .whmo-announcement-title {
    color: var(--whmo-text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.whmo-s-page .whmo-announcement-excerpt {
    color: var(--whmo-text-muted);
    font-size: 13px;
}

/* ================================================================
   空状态
   ================================================================ */
.whmo-s-page .whmo-empty {
    text-align: center;
    padding: 60px 40px;
    color: var(--whmo-text-muted);
    background: var(--whmo-glass-bg);
    border: 1px dashed var(--whmo-glass-border);
    border-radius: 16px;
    font-size: 16px;
}

/* ================================================================
   分页
   ================================================================ */
.whmo-s-page .whmo-directory-pagination,
.whmo-s-page .whmo-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.whmo-s-page .whmo-page-btn,
.whmo-s-page .whmo-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--whmo-glass-border);
    border-radius: 10px;
    color: var(--whmo-text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    background: var(--whmo-glass-bg);
}

.whmo-s-page .whmo-page-btn:hover,
.whmo-s-page .whmo-pagination a:hover {
    border-color: var(--whmo-gold);
    color: var(--whmo-gold);
    background: rgba(218, 165, 32, 0.1);
}

.whmo-s-page .whmo-page-current,
.whmo-s-page .whmo-pagination .current {
    background: linear-gradient(135deg, var(--whmo-red) 0%, var(--whmo-red-light) 100%);
    border-color: transparent;
    color: #fff;
    cursor: default;
}

.whmo-s-page .whmo-page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    color: var(--whmo-text-muted);
}

/* ================================================================
   验证码
   ================================================================ */
.whmo-s-page .whmo-captcha-group label {
    font-size: 16px;
    font-weight: bold;
    color: var(--whmo-gold);
}

.whmo-s-page .whmo-captcha-input-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.whmo-s-page .whmo-captcha-input-row input {
    width: 100px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 12px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(218, 165, 32, 0.3);
    color: var(--whmo-text-primary);
}

.whmo-s-page .whmo-captcha-input-row input:focus {
    border-color: var(--whmo-gold);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.15);
}

.whmo-s-page .whmo-refresh-captcha {
    padding: 10px 14px;
    font-size: 18px;
    border-radius: 10px;
}

/* ================================================================
   机构名录
   ================================================================ */
.whmo-s-page .whmo-org-page {
    position: relative;
    z-index: 1;
}

.whmo-s-page .whmo-org-banner-wrap {
    background: linear-gradient(135deg, #2a0a0a 0%, var(--whmo-red-dark, #5c0000) 30%, var(--whmo-red) 60%, #8b2020 100%);
    position: relative;
}

.whmo-s-page .whmo-org-banner {
    color: #fff;
    text-align: center;
    padding: 100px 40px 80px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.whmo-s-page .whmo-org-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(58, 10, 10, 0.5) 100%);
    pointer-events: none;
}

.whmo-s-page .whmo-org-banner > * {
    position: relative;
    z-index: 1;
}

.whmo-s-page .whmo-org-banner h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: 12px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    font-family: var(--whmo-font-serif);
}

.whmo-s-page .whmo-org-banner p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    letter-spacing: 3px;
}

.whmo-s-page .whmo-banner-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--whmo-gold), transparent);
    margin: 24px auto 0;
    box-shadow: 0 0 20px var(--whmo-gold-glow);
}

.whmo-s-page .whmo-org-page-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.whmo-s-page .whmo-type-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0 24px;
    justify-content: center;
}

.whmo-s-page .whmo-type-tab {
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1.5px solid var(--whmo-glass-border);
    color: var(--whmo-text-secondary);
    background: var(--whmo-glass-bg);
}

.whmo-s-page .whmo-type-tab:hover {
    border-color: var(--whmo-gold);
    color: var(--whmo-gold);
    background: rgba(218, 165, 32, 0.08);
}

.whmo-s-page .whmo-type-tab.active {
    background: linear-gradient(135deg, var(--whmo-red) 0%, var(--whmo-red-light) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px var(--whmo-red-glow);
}

.whmo-s-page .whmo-search-bar {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.whmo-s-page .whmo-search-bar input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--whmo-glass-border);
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    background: var(--whmo-glass-bg);
    color: var(--whmo-text-primary);
    transition: all 0.3s;
}

.whmo-s-page .whmo-search-bar input:focus {
    border-color: var(--whmo-gold);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.15);
}

.whmo-s-page .whmo-search-bar button {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--whmo-gold) 0%, var(--whmo-gold-light) 100%);
    color: var(--whmo-bg-primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.whmo-s-page .whmo-search-bar button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(218, 165, 32, 0.3);
}

.whmo-s-page .whmo-org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.whmo-s-page .whmo-org-card {
    background: var(--whmo-glass-bg);
    border: 1px solid var(--whmo-glass-border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.whmo-s-page .whmo-org-card:hover {
    background: var(--whmo-glass-hover);
    border-color: rgba(218, 165, 32, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(218, 165, 32, 0.05);
}

.whmo-s-page .whmo-org-card-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--whmo-text-primary);
    margin: 0 0 12px;
}

.whmo-s-page .whmo-org-card-name a {
    color: var(--whmo-text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.whmo-s-page .whmo-org-card-name a:hover {
    color: var(--whmo-gold);
}

.whmo-s-page .whmo-org-type-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--whmo-red) 0%, var(--whmo-red-light) 100%);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 12px;
}

.whmo-s-page .whmo-org-industry-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: var(--whmo-text-muted);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 8px;
}

.whmo-s-page .whmo-org-desc {
    color: var(--whmo-text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin: 12px 0;
}

.whmo-s-page .whmo-org-meta {
    font-size: 13px;
    color: var(--whmo-text-muted);
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--whmo-glass-border);
}

.whmo-s-page .whmo-org-meta a {
    color: var(--whmo-gold);
    text-decoration: none;
}

.whmo-s-page .whmo-org-meta a:hover {
    text-decoration: underline;
}

.whmo-s-page .whmo-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--whmo-text-muted);
}

.whmo-s-page .whmo-empty-state h3 {
    font-size: 20px;
    color: var(--whmo-text-secondary);
    margin-bottom: 8px;
}

/* ================================================================
   页脚
   ================================================================ */
.whmo-footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--whmo-bg-secondary) 0%, var(--whmo-bg-primary) 100%);
    border-top: 1px solid var(--whmo-glass-border);
    padding: 48px 24px 32px;
    margin-top: 40px;
}

.whmo-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.whmo-footer-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--whmo-gold);
    letter-spacing: 4px;
    margin-bottom: 8px;
    font-family: var(--whmo-font-serif);
}

.whmo-footer-desc {
    color: var(--whmo-text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.whmo-footer-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--whmo-gold), transparent);
    margin: 0 auto 24px;
}

.whmo-footer-copyright {
    color: var(--whmo-text-muted);
    font-size: 13px;
}

/* ================================================================
   移动端响应式
   ================================================================ */
@media (max-width: 768px) {
    .whmo-nav {
        padding: 0 16px;
    }
    
    .whmo-nav-links {
        display: none;
        position: absolute;
        top: var(--whmo-nav-height);
        left: 0;
        right: 0;
        background: rgba(15, 15, 26, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--whmo-glass-border);
    }
    
    .whmo-nav-links.active {
        display: flex;
    }
    
    .whmo-nav-toggle {
        display: flex;
    }
    
    .whmo-hero {
        padding: 100px 16px 60px;
        min-height: 50vh;
    }
    
    .whmo-hero-title {
        font-size: 28px;
        letter-spacing: 6px;
    }
    
    .whmo-hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .whmo-hero-emblem {
        width: 100px;
        height: 100px;
    }
    
    .whmo-content {
        padding: 0 16px 60px;
    }
    
    .whmo-glass-card {
        padding: 24px 20px;
    }
    
    .whmo-s-page .whmo-form,
    .whmo-s-page div.whmo-form,
    .whmo-s-page .whmo-profile,
    .whmo-s-page div.whmo-profile {
        padding: 28px 20px;
        margin: 0 16px;
    }
    
    .whmo-s-page .whmo-steps {
        padding: 0 10px;
    }
    
    .whmo-s-page .whmo-step-label {
        font-size: 10px;
    }
    
    .whmo-s-page .whmo-profile-header {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .whmo-s-page .whmo-avatar {
        width: 80px;
        height: 80px;
    }
    
    .whmo-s-page .whmo-profile-body {
        padding: 20px;
    }
    
    .whmo-s-page .whmo-org-grid {
        grid-template-columns: 1fr;
    }
    
    .whmo-s-page .whmo-type-tabs {
        gap: 8px;
    }
    
    .whmo-s-page .whmo-type-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .whmo-s-page .whmo-search-bar {
        flex-direction: column;
    }
    
    .whmo-s-page .whmo-search-bar button {
        width: 100%;
    }
    
    .whmo-s-page .whmo-announcement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .whmo-s-page .whmo-form-actions {
        flex-direction: column;
    }
    
    .whmo-s-page .whmo-form-actions .whmo-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .whmo-hero-title {
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .whmo-s-page .whmo-org-banner {
        padding: 80px 20px 60px;
        min-height: 240px;
    }
    
    .whmo-s-page .whmo-org-banner h1 {
        font-size: 28px;
        letter-spacing: 6px;
    }
    
    .whmo-s-page .whmo-org-banner p {
        font-size: 14px;
    }
}

/* ================================================================
   动画入场效果
   ================================================================ */
.whmo-fade-in {
    animation: whmoFadeIn 0.6s ease-out both;
}

.whmo-fade-in-delay-1 { animation-delay: 0.1s; }
.whmo-fade-in-delay-2 { animation-delay: 0.2s; }
.whmo-fade-in-delay-3 { animation-delay: 0.3s; }
.whmo-fade-in-delay-4 { animation-delay: 0.4s; }
.whmo-fade-in-delay-5 { animation-delay: 0.5s; }

@keyframes whmoFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================
   滚动提示
   ================================================================ */
.whmo-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: whmoScrollBounce 2s ease-in-out infinite;
}

.whmo-scroll-hint svg {
    width: 24px;
    height: 24px;
    color: var(--whmo-gold);
    opacity: 0.6;
}

@keyframes whmoScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}
