.gold-gradient-text {
    background: linear-gradient(135deg, #A88152 0%, #C59A63 50%, #E2BA8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.soft-shadow {
    box-shadow: 0 12px 40px rgba(197, 154, 99, 0.04), 0 2px 8px rgba(0, 0, 0, 0.01);
}
.premium-border {
    border: 1px solid rgba(197, 154, 99, 0.12);
}
.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 154, 99, 0.3);
    box-shadow: 0 12px 30px rgba(197, 154, 99, 0.08);
}
/* 隐藏滚动条但允许滚动 */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
html {
    scroll-behavior: smooth;
}
/* 首页右侧插画动效 */
@keyframes hero-illus-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes hero-shine-sweep {
    0% { transform: translateX(-130%) skewX(-20deg); opacity: 0; }
    12% { opacity: 0.35; }
    45% { opacity: 0.75; }
    100% { transform: translateX(240%) skewX(-20deg); opacity: 0; }
}
@keyframes hero-ambient-pulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(1.06); }
}
.hero-illustration-card .hero-illus-img {
    animation: hero-illus-float 5.2s ease-in-out infinite;
    will-change: transform;
}
.hero-illustration-card .hero-illus-shine {
    position: relative;
}
.hero-illustration-card .hero-illus-shine::after {
    content: '';
    position: absolute;
    top: -25%;
    left: 0;
    width: 42%;
    height: 150%;
    z-index: 1;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.12) 30%,
        rgba(255, 255, 255, 0.75) 48%,
        rgba(255, 255, 255, 0.35) 62%,
        transparent 100%
    );
    animation: hero-shine-sweep 4.8s ease-in-out infinite;
    pointer-events: none;
}
.hero-illustration-card .hero-ambient-glow {
    animation: hero-ambient-pulse 3.6s ease-in-out infinite;
}
.parallax-layer {
    --parallax-y: 0px;
    transform:
        translate(var(--tw-translate-x, 0), calc(var(--tw-translate-y, 0) + var(--parallax-y)))
        rotate(var(--tw-rotate, 0))
        skewX(var(--tw-skew-x, 0))
        skewY(var(--tw-skew-y, 0))
        scaleX(var(--tw-scale-x, 1))
        scaleY(var(--tw-scale-y, 1));
    will-change: transform;
}
.reveal-fade {
    opacity: 0;
    transition: opacity 650ms ease, filter 650ms ease;
    filter: blur(6px);
}
.reveal-fade.is-visible {
    opacity: 1;
    filter: blur(0);
}
.scroll-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms ease, transform 700ms ease;
    will-change: opacity, transform;
}
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.parallax-section::before {
    content: '';
    position: absolute;
    inset: 10% 8% auto auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,255,255,0.72), rgba(197,154,99,0.08) 58%, transparent 70%);
    filter: blur(18px);
    opacity: 0.55;
    pointer-events: none;
    transform: translate3d(0, calc(var(--section-drift, 0px) * -0.35), 0);
    transition: transform 120ms linear;
}
@media (prefers-reduced-motion: reduce) {
    .hero-illustration-card .hero-illus-img,
    .hero-illustration-card .hero-illus-shine::after,
    .hero-illustration-card .hero-ambient-glow {
        animation: none;
    }
    .parallax-layer,
    .scroll-reveal,
    .scroll-reveal.is-visible,
    .reveal-fade,
    .reveal-fade.is-visible {
        transform: none;
        opacity: 1;
        transition: none;
        filter: none;
    }
}