/* ========== 灵云软件站 - 全局样式 ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --coral: #e8604c;
    --coral-light: #f0856f;
    --coral-dark: #c94433;
    --amber: #d97706;
    --amber-light: #f59e0b;
    --teal: #0d9488;
    --teal-light: #14b8a6;
    --cream: #fef7ed;
    --cream-dark: #fdf2e1;
    --sand: #f5ebe0;
    --brown: #78716c;
    --brown-dark: #44403c;
    --card-bg: #ffffff;
    --text: #3c2a21;
    --text-secondary: #6b5c52;
    --text-muted: #9c8d83;
    --border: #e8ddd3;
    --shadow-sm: 0 2px 8px rgba(120,80,50,0.06);
    --shadow-md: 0 8px 30px rgba(120,80,50,0.10);
    --shadow-lg: 0 16px 48px rgba(120,80,50,0.14);
    --radius: 24px;
    --radius-sm: 14px;
    --radius-xs: 10px;
    --max-w: 1140px;
}
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.75;
    min-height: 100vh;
    display: flex; flex-direction: column;
}
a { color: var(--coral); text-decoration: none; transition: color .2s; }
a:hover { color: var(--coral-dark); }
img { max-width: 100%; height: auto; }

/* ========== Header ========== */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(254,247,237,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.header-top {
    max-width: var(--max-w); margin: 0 auto;
    padding: 12px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.site-brand { display: flex; align-items: center; gap: 10px; }
.site-logo {
    font-size: 22px; font-weight: 800;
    background: linear-gradient(135deg, var(--coral), var(--amber));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}
.site-slogan {
    font-size: 12px; color: var(--text-muted);
    border-left: 1px solid var(--border);
    padding-left: 10px; margin-left: 2px;
}
.header-nav { background: linear-gradient(135deg, var(--coral), var(--amber)); }
.nav-inner {
    max-width: var(--max-w); margin: 0 auto;
    padding: 0 24px;
    display: flex; gap: 0;
}
.nav-inner a {
    color: rgba(255,255,255,0.85);
    font-size: 14px; font-weight: 500;
    padding: 10px 18px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.nav-inner a:hover, .nav-inner a.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* ========== Breadcrumb ========== */
.breadcrumb {
    max-width: var(--max-w); margin: 0 auto;
    padding: 16px 24px 0;
    font-size: 13px; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb span { margin: 0 6px; }

/* ========== Inner Page Layout ========== */
.main-wrap {
    max-width: var(--max-w); margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    flex: 1;
}
.main-content { min-width: 0; }

/* ========== Section Titles ========== */
.section-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.section-title {
    font-size: 18px; font-weight: 700;
    padding-left: 12px;
    border-left: 3px solid var(--coral);
}
.section-more { font-size: 13px; color: var(--text-muted); }
.section-more:hover { color: var(--coral); }

/* ========== Software Card (inner pages) ========== */
.soft-list { display: flex; flex-direction: column; gap: 16px; }
.soft-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex; gap: 16px;
    transition: box-shadow .25s, border-color .25s, transform .25s;
}
.soft-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--coral-light);
    transform: translateY(-2px);
}
.soft-thumb {
    width: 80px; height: 80px; border-radius: var(--radius-xs);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; flex-shrink: 0;
    overflow: hidden;
}
.soft-thumb img {
    width: 100%; height: 100%; object-fit: contain;
    border-radius: var(--radius-xs);
}
.soft-info { flex: 1; min-width: 0; }
.soft-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.soft-info h3 a { color: var(--text); }
.soft-info h3 a:hover { color: var(--coral); }
.soft-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.soft-meta span { margin-right: 14px; }
.soft-desc {
    font-size: 13px; color: var(--text-secondary); line-height: 1.7;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.soft-cat-tag {
    display: inline-block; padding: 1px 8px; border-radius: 4px;
    font-size: 11px; font-weight: 600; margin-right: 8px;
}
.cat-manage { background: #fef2f0; color: var(--coral); }
.cat-media { background: #fffbeb; color: var(--amber); }
.cat-faq { background: #e0e7ff; color: #4338ca; }

/* ========== Detail Page ========== */
.detail-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}
.detail-header {
    padding: 28px;
    display: flex; gap: 20px;
    border-bottom: 1px solid var(--border);
}
.detail-icon {
    width: 72px; height: 72px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; flex-shrink: 0;
    background: var(--cream);
    overflow: hidden;
}
.detail-icon img {
    width: 100%; height: 100%; object-fit: contain;
    border-radius: var(--radius-sm);
}
.detail-title-area { flex: 1; }
.detail-title-area h1 { font-size: 22px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.detail-meta {
    display: flex; flex-wrap: wrap; gap: 6px 18px;
    font-size: 13px; color: var(--text-muted);
}
.download-area {
    padding: 20px 28px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    display: flex; gap: 12px; flex-wrap: wrap;
    align-items: center;
}
.btn-dl {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 24px; border-radius: 100px;
    font-size: 14px; font-weight: 600;
    text-decoration: none; cursor: pointer;
    border: none; transition: all .2s;
}
.btn-safe { background: linear-gradient(135deg, var(--coral), var(--coral-light)); color: #fff; }
.btn-safe:hover { background: var(--coral-dark); color: #fff; transform: translateY(-1px); }
.btn-pan { background: linear-gradient(135deg, var(--amber), var(--amber-light)); color: #fff; }
.btn-pan:hover { background: #b45309; color: #fff; transform: translateY(-1px); }
.btn-online { background: linear-gradient(135deg, var(--teal), var(--teal-light)); color: #fff; }
.btn-online:hover { background: #0f766e; color: #fff; transform: translateY(-1px); }
.btn-dl svg { width: 16px; height: 16px; fill: currentColor; }
.detail-body {
    padding: 28px;
    font-size: 14px; color: var(--text-secondary);
    line-height: 2;
}
.detail-body h2 {
    font-size: 17px; font-weight: 700; color: var(--text);
    margin: 24px 0 8px; padding-bottom: 6px;
    border-bottom: 1px dashed var(--border);
}
.detail-body h2:first-child { margin-top: 0; }
.detail-body p { margin-bottom: 8px; }
.detail-body ul, .detail-body ol { padding-left: 20px; margin-bottom: 10px; }
.detail-body li { margin-bottom: 4px; }
.detail-body .activation-code {
    display: inline-block;
    background: #fef3c7; color: #92400e;
    padding: 2px 10px; border-radius: 4px;
    font-family: monospace; font-size: 13px; font-weight: 600;
}
.detail-body .soft-screenshot {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 16px auto;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

/* ========== FAQ Detail ========== */
.faq-body {
    padding: 28px;
    font-size: 15px; color: var(--text-secondary);
    line-height: 2;
}
.faq-body h2 { font-size: 17px; font-weight: 700; color: var(--text); margin: 24px 0 8px; }
.faq-body p { margin-bottom: 10px; }
.faq-body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 12px auto;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.faq-body .step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--coral); color: #fff;
    font-size: 12px; font-weight: 700; flex-shrink: 0;
    margin-right: 6px; vertical-align: middle;
}
.faq-body .faq-section {
    margin: 20px 0 0;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.faq-body .faq-section h2 { margin-top: 0; }
.faq-body .faq-tip {
    background: #fffbeb; border-left: 3px solid var(--amber);
    padding: 12px 16px; border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
    margin: 16px 0; font-size: 14px; color: var(--brown-dark);
}
.faq-body .faq-tip strong { color: var(--amber); }

/* ========== Sidebar ========== */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.side-box {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.side-head {
    padding: 12px 16px;
    font-size: 15px; font-weight: 700;
    border-bottom: 1px solid var(--border);
    background: var(--cream);
}
.side-body { padding: 16px; }
.side-body ul { list-style: none; }
.side-body li { padding: 8px 0; border-bottom: 1px solid #f5ebe0; }
.side-body li:last-child { border-bottom: none; }
.side-body li a { font-size: 13px; color: var(--text-secondary); display: flex; align-items: center; gap: 6px; }
.side-body li a:hover { color: var(--coral); }
.side-body li a::before {
    content: ''; width: 4px; height: 4px;
    border-radius: 50%; background: var(--text-muted); flex-shrink: 0;
}
.side-notice { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.side-stat { font-size: 13px; color: var(--text-muted); line-height: 2; }
.side-stat strong { color: var(--coral); }

/* ========== Footer ========== */
.footer {
    background: var(--brown-dark);
    color: #d6d3d1;
    padding: 28px 24px;
    text-align: center;
    font-size: 13px; line-height: 2;
    margin-top: auto;
}
.footer a { color: var(--teal-light); }
.footer a:hover { text-decoration: underline; }

/* ==========================================================
   HOMEPAGE - V3 Warm Organic Style
   ========================================================== */

/* Organic Blobs */
.organic-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.blob {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.45;
    animation: float-blob 20s ease-in-out infinite;
}
.blob-1 {
    width: 500px; height: 500px; top: -100px; right: -80px;
    background: radial-gradient(circle, #fbbf24, #f59e0b);
    animation-duration: 22s;
}
.blob-2 {
    width: 400px; height: 400px; bottom: 10%; left: -100px;
    background: radial-gradient(circle, #fb923c, #e8604c);
    animation-duration: 26s; animation-delay: -5s;
}
.blob-3 {
    width: 350px; height: 350px; top: 50%; right: 20%;
    background: radial-gradient(circle, #a7f3d0, #5eead4);
    animation-duration: 24s; animation-delay: -10s; opacity: 0.3;
}
@keyframes float-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 30px) scale(1.03); }
}

/* Hero */
.hp-hero {
    position: relative; z-index: 1;
    padding: 160px 24px 80px;
    text-align: center;
}
.hp-eyebrow {
    display: inline-block;
    padding: 6px 20px; border-radius: 100px;
    background: linear-gradient(135deg, var(--coral), var(--amber));
    color: #fff; font-size: 13px; font-weight: 600;
    margin-bottom: 28px; letter-spacing: 0.5px;
}
.hp-hero h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 900; line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 18px;
    color: var(--text);
}
.hp-hero h1 span {
    background: linear-gradient(135deg, var(--coral), var(--amber));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hp-hero-desc {
    max-width: 520px; margin: 0 auto 40px;
    font-size: 18px; color: var(--text-secondary); line-height: 1.8;
}
.hp-pills {
    display: flex; justify-content: center; gap: 14px;
    flex-wrap: wrap;
}
.pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 100px;
    font-size: 14px; font-weight: 600;
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pill-dot.d1 { background: var(--coral); }
.pill-dot.d2 { background: var(--amber); }
.pill-dot.d3 { background: var(--teal); }

/* Software Grid (homepage) */
.hp-section {
    padding: 0 24px 80px;
    position: relative; z-index: 1;
}
.hp-section-inner { max-width: var(--max-w); margin: 0 auto; }
.hp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.hp-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.hp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--coral-light);
}
.hp-card-top {
    padding: 24px 24px 0;
    display: flex; align-items: flex-start; gap: 14px;
}
.hp-card-emoji {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
    overflow: hidden;
}
.hp-card-emoji img {
    width: 100%; height: 100%; object-fit: contain;
    border-radius: 14px;
}
.emoji-1 { background: #fef3c7; }
.emoji-2 { background: #fee2e2; }
.emoji-3 { background: #fce7f3; }
.emoji-4 { background: #ccfbf1; }
.emoji-5 { background: #dbeafe; }
.emoji-6 { background: #d1fae5; }
.hp-card-meta h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.hp-card-meta h3 a { color: var(--text); }
.hp-card-meta h3 a:hover { color: var(--coral); }
.hp-card-label {
    display: inline-block; padding: 2px 12px; border-radius: 100px;
    font-size: 11px; font-weight: 700;
}
.label-manage { background: #fef2f0; color: var(--coral); }
.label-media { background: #fffbeb; color: var(--amber); }
.hp-card-body { padding: 12px 24px 18px; }
.hp-card-desc {
    font-size: 13.5px; color: var(--text-secondary); line-height: 1.85;
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
}
.hp-card-footer { padding: 0 24px 22px; display: flex; }
.hp-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 22px; border-radius: 100px;
    font-size: 13.5px; font-weight: 700;
    text-decoration: none; cursor: pointer;
    border: none; transition: all .2s;
    flex: 1; justify-content: center;
}
.hp-btn-coral { background: linear-gradient(135deg, var(--coral), var(--coral-light)); color: #fff; }
.hp-btn-coral:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,96,76,0.35); color: #fff; }
.hp-btn-amber { background: linear-gradient(135deg, var(--amber), var(--amber-light)); color: #fff; }
.hp-btn-amber:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(217,119,6,0.35); color: #fff; }
.hp-btn svg { width: 15px; height: 15px; fill: currentColor; }

/* hp notice */
.hp-notice {
    position: relative; z-index: 1;
    max-width: var(--max-w); margin: 0 auto;
    padding: 0 24px 48px;
}
.hp-notice-box {
    padding: 16px 24px;
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px; color: var(--text-secondary);
    text-align: center;
}

/* hp sidebar area */
.hp-bottom {
    position: relative; z-index: 1;
    max-width: var(--max-w); margin: 0 auto;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hp-side-box {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
}
.hp-side-box h4 {
    font-size: 15px; font-weight: 700;
    margin-bottom: 12px; color: var(--text);
}
.hp-side-box ul { list-style: none; }
.hp-side-box li { padding: 6px 0; border-bottom: 1px solid #f5ebe0; }
.hp-side-box li:last-child { border-bottom: none; }
.hp-side-box li a { font-size: 13px; color: var(--text-secondary); display: flex; align-items: center; gap: 6px; }
.hp-side-box li a:hover { color: var(--coral); }
.hp-side-box li a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted); flex-shrink: 0; }

/* More Services Links */
.hp-more-links {
    display: flex; flex-direction: column; gap: 10px;
}
.hp-more-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    text-decoration: none;
    transition: all .25s;
}
.hp-more-item:hover {
    background: #fff;
    border-color: var(--coral-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--coral);
}
.more-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
}
.more-icon-video { background: #fff7ed; }
.more-icon-cloud { background: #e0f2fe; }
.more-info {
    flex: 1; display: flex; flex-direction: column;
}
.more-info strong {
    font-size: 14px; color: var(--text); font-weight: 700;
}
.more-info span {
    font-size: 12px; color: var(--text-muted); margin-top: 2px;
}
.hp-more-item:hover .more-info strong {
    color: var(--coral);
}
.hp-more-item:hover .online-arrow {
    transform: translateX(3px); color: var(--coral);
}

/* Online Service Box */
.hp-online-box {
    background: linear-gradient(135deg, #fff7ed 0%, #fef2f0 50%, #fefce8 100%);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.hp-online-box::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(232,96,76,0.06);
    pointer-events: none;
}
.hp-online-header { margin-bottom: 16px; }
.hp-online-badge {
    display: inline-block;
    padding: 3px 14px; border-radius: 100px;
    background: var(--coral); color: #fff;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.hp-online-desc {
    font-size: 13px; color: var(--text-muted);
    margin: 0;
}
.hp-online-cards {
    display: flex; flex-direction: column; gap: 10px;
}
.hp-online-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    text-decoration: none;
    transition: all .25s;
}
.hp-online-item:hover {
    background: #fff;
    border-color: var(--coral-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--coral);
}
.online-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
}
.online-icon-1 { background: #ccfbf1; }
.online-icon-2 { background: #fce7f3; }
.online-info {
    flex: 1; display: flex; flex-direction: column;
}
.online-info strong {
    font-size: 14px; color: var(--text); font-weight: 700;
}
.online-info span {
    font-size: 12px; color: var(--text-muted); margin-top: 2px;
}
.online-arrow {
    color: var(--text-muted); font-size: 18px;
    transition: transform .2s, color .2s;
}
.hp-online-item:hover .online-arrow {
    transform: translateX(3px); color: var(--coral);
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
    .main-wrap { grid-template-columns: 1fr; }
    .nav-inner { overflow-x: auto; }
    .header-top { flex-direction: column; gap: 8px; }
    .detail-header { flex-direction: column; }
    .hp-grid { grid-template-columns: 1fr; }
    .hp-hero { padding: 130px 20px 60px; }
    .hp-pills { flex-direction: column; align-items: center; }
    .pill { width: 100%; max-width: 280px; justify-content: center; }
    .hp-bottom { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .soft-card { flex-direction: column; }
    .soft-thumb { width: 100%; height: 60px; }
    .download-area { flex-direction: column; }
    .btn-dl { width: 100%; justify-content: center; }
    .detail-body, .faq-body { padding: 20px; }
    .faq-body img { margin: 8px auto; }
    .hp-card-footer { flex-direction: column; }
    .blob-1 { width: 300px; height: 300px; }
    .blob-2 { width: 250px; height: 250px; }
    .blob-3 { width: 200px; height: 200px; }
}

/* ========== Scroll Animations ========== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hp-card {
    opacity: 0;
    transform: translateY(28px);
}
.hp-card.visible { opacity: 1; transform: translateY(0); }
.hp-card.visible { animation: fadeUp .5s ease forwards; }
.hp-card:nth-child(1).visible { animation-delay: 0s; }
.hp-card:nth-child(2).visible { animation-delay: .07s; }
.hp-card:nth-child(3).visible { animation-delay: .14s; }
.hp-card:nth-child(4).visible { animation-delay: .21s; }
.hp-card:nth-child(5).visible { animation-delay: .28s; }
.hp-card:nth-child(6).visible { animation-delay: .35s; }
.hp-card:nth-child(7).visible { animation-delay: .42s; }
.hp-card:nth-child(8).visible { animation-delay: .49s; }

.cat-list-item {
    opacity: 0;
    transform: translateY(20px);
}
.cat-list-item.visible { opacity: 1; transform: translateY(0); animation: fadeUp .45s ease forwards; }
.cat-list-item:nth-child(1).visible { animation-delay: 0s; }
.cat-list-item:nth-child(2).visible { animation-delay: .06s; }
.cat-list-item:nth-child(3).visible { animation-delay: .12s; }
.cat-list-item:nth-child(4).visible { animation-delay: .18s; }
.cat-list-item:nth-child(5).visible { animation-delay: .24s; }
.cat-list-item:nth-child(6).visible { animation-delay: .30s; }

.detail-card {
    opacity: 0;
    transform: translateY(20px);
}
.detail-card.visible { opacity: 1; transform: translateY(0); animation: fadeUp .5s ease forwards; }

.hp-notice, .hp-bottom, .hp-side-box, .side-box {
    opacity: 0;
    transform: translateY(16px);
}
.hp-notice.visible, .hp-bottom.visible, .hp-side-box.visible, .side-box.visible {
    opacity: 1; transform: translateY(0); animation: fadeUp .4s ease forwards;
}
