*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

::selection { background: rgba(75,0,130,0.2); color: #4B0082; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #E8F0F2; }
::-webkit-scrollbar-thumb { background: #B0C4D8; border-radius: 2px; }

@import url('https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&family=ZCOOL+XiaoWei&family=Noto+Serif+SC:wght@300;400&display=swap');

.fw-body {
    font-family: 'ZCOOL XiaoWei', 'Noto Serif SC', serif;
    background: linear-gradient(180deg, #D6EAF0 0%, #E0F0F5 30%, #EAF5F9 60%, #F0F8FF 100%);
    background-attachment: fixed;
    color: #2C3E6B;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* 涟漪圈纹背景 */
.fw-body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 200px 200px at 15% 25%, rgba(75,0,130,0.03), transparent),
        radial-gradient(ellipse 300px 300px at 45% 55%, rgba(70,130,180,0.04), transparent),
        radial-gradient(ellipse 250px 250px at 75% 35%, rgba(75,0,130,0.03), transparent),
        radial-gradient(ellipse 350px 350px at 30% 75%, rgba(70,130,180,0.04), transparent),
        radial-gradient(ellipse 180px 180px at 85% 80%, rgba(75,0,130,0.03), transparent);
    pointer-events: none;
    z-index: 0;
    animation: rippleDrift 30s ease-in-out infinite;
}

@keyframes rippleDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(8px, -5px) scale(1.01); }
    50% { transform: translate(-5px, 8px) scale(0.99); }
    75% { transform: translate(5px, 3px) scale(1.02); }
}

/* 涟漪圈纹 */
.fw-body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle 80px at 20% 30%, transparent 60%, rgba(75,0,130,0.02) 61%, rgba(75,0,130,0.04) 63%, transparent 64%),
        radial-gradient(circle 120px at 55% 20%, transparent 60%, rgba(70,130,180,0.02) 61%, rgba(70,130,180,0.04) 63%, transparent 64%),
        radial-gradient(circle 100px at 80% 60%, transparent 60%, rgba(75,0,130,0.02) 61%, rgba(75,0,130,0.04) 63%, transparent 64%),
        radial-gradient(circle 150px at 35% 75%, transparent 60%, rgba(70,130,180,0.02) 61%, rgba(70,130,180,0.04) 63%, transparent 64%),
        radial-gradient(circle 90px at 65% 85%, transparent 60%, rgba(75,0,130,0.02) 61%, rgba(75,0,130,0.04) 63%, transparent 64%),
        radial-gradient(circle 110px at 10% 55%, transparent 60%, rgba(70,130,180,0.02) 61%, rgba(70,130,180,0.04) 63%, transparent 64%),
        radial-gradient(circle 130px at 90% 25%, transparent 60%, rgba(75,0,130,0.02) 61%, rgba(75,0,130,0.04) 63%, transparent 64%);
    pointer-events: none;
    z-index: 0;
    animation: bgRippleExpand 20s ease-in-out infinite;
}

@keyframes bgRippleExpand {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* ===== Navbar ===== */
.fw-navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(230,242,248,0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(75,0,130,0.08);
}
.fw-navbar-inner {
    max-width: 1200px; margin: 0 auto;
    height: 56px; display: flex; align-items: center;
    padding: 0 20px; gap: 28px;
}
.fw-logo {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 24px; font-weight: 400; color: #4B0082;
    text-decoration: none; letter-spacing: 3px;
    flex-shrink: 0;
    text-shadow: 2px 2px 8px rgba(75,0,130,0.15);
    position: relative;
}
.fw-logo::after {
    content: '';
    position: absolute;
    bottom: -2px; left: -4px; right: -4px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(75,0,130,0.15), rgba(75,0,130,0.25), rgba(75,0,130,0.15), transparent);
    border-radius: 2px;
    filter: blur(1px);
}
.fw-nav-links {
    display: flex; gap: 28px; align-items: center;
}
.fw-nav-link {
    font-size: 13px; font-weight: 400; color: rgba(44,62,107,0.5);
    text-decoration: none; letter-spacing: 0.5px;
    transition: color 0.3s, text-shadow 0.3s; position: relative;
}
.fw-nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: #4B0082;
    transition: width 0.3s;
    box-shadow: 0 0 6px rgba(75,0,130,0.2);
}
.fw-nav-link:hover { color: #4B0082; text-shadow: 0 0 8px rgba(75,0,130,0.15); }
.fw-nav-link:hover::after { width: 100%; }
.fw-search-wrap {
    display: flex; align-items: center; gap: 8px;
    margin-left: auto;
}
.fw-search-icon { flex-shrink: 0; }
.fw-search-icon circle, .fw-search-icon line { stroke: rgba(44,62,107,0.3); }
.fw-search-input {
    width: 200px; height: 36px;
    border: 1px solid rgba(75,0,130,0.1);
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
    padding: 0 12px; font-family: inherit;
    font-size: 13px; color: #2C3E6B; outline: none;
    border-radius: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.fw-search-input:focus {
    border-color: rgba(75,0,130,0.25);
    box-shadow: 0 0 12px rgba(75,0,130,0.08);
}
.fw-search-input::placeholder { color: rgba(44,62,107,0.3); }
.fw-mobile-menu-btn {
    display: none; flex-direction: column; gap: 4px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.fw-mobile-menu-btn span {
    display: block; width: 20px; height: 1px; background: #4B0082;
    transition: all 0.3s;
}
.fw-mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
.fw-mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.fw-mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(3px, -3px); }
.fw-mobile-nav-panel {
    display: none; position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
    background: rgba(230,242,248,0.95);
    backdrop-filter: blur(16px);
    z-index: 99; padding: 20px;
    flex-direction: column; gap: 0;
}
.fw-mobile-nav-panel.open { display: flex; }
.fw-mobile-nav-panel .fw-nav-link {
    display: block; padding: 14px 0; font-size: 15px;
    border-bottom: 1px solid rgba(75,0,130,0.06);
    color: rgba(44,62,107,0.6);
}

/* ===== Hero Water Tray (水盘油墨扩散) ===== */
.fw-hero-section {
    max-width: 1200px; margin: 0 auto;
    padding: 20px 20px 0;
    max-height: 260px; overflow: hidden;
    position: relative;
}
.fw-hero-stack {
    position: relative;
    width: 100%;
    height: 240px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

/* 水盘卡片 */
.fw-stack-card {
    position: relative;
    width: 110px; height: 110px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}
/* 水盘底座 */
.fw-stack-card::before {
    content: '';
    position: absolute;
    top: -6px; left: -6px; right: -6px; bottom: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75,0,130,0.08) 0%, rgba(70,130,180,0.05) 50%, transparent 70%);
    z-index: -1;
    animation: inkSpread 4s ease-in-out infinite;
}
/* 油墨扩散外圈 */
.fw-stack-card::after {
    content: '';
    position: absolute;
    top: -12px; left: -12px; right: -12px; bottom: -12px;
    border-radius: 50%;
    border: 1px solid rgba(75,0,130,0.06);
    z-index: -2;
    animation: inkRipple 5s ease-in-out infinite;
}

@keyframes inkSpread {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 0.9; }
}

@keyframes inkRipple {
    0%, 100% { transform: scale(1); opacity: 0.3; border-color: rgba(75,0,130,0.06); }
    50% { transform: scale(1.05); opacity: 0.6; border-color: rgba(75,0,130,0.12); }
}

.fw-stack-card.active {
    width: 130px; height: 130px;
    z-index: 10 !important;
}
.fw-stack-card.active::before {
    background: radial-gradient(circle, rgba(75,0,130,0.15) 0%, rgba(70,130,180,0.08) 50%, transparent 70%);
    animation: inkSpread 3s ease-in-out infinite;
}
.fw-stack-card.active::after {
    border-color: rgba(75,0,130,0.1);
    animation: inkRipple 3.5s ease-in-out infinite;
}

.fw-stack-card-link {
    display: block;
    width: 100%; height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.fw-stack-card-thumb {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    overflow: hidden;
}
.fw-stack-card-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.7) contrast(0.85) brightness(1.05);
    transform: scale(1.05);
    transition: filter 0.6s;
}
.fw-stack-card.active .fw-stack-card-thumb img {
    filter: saturate(0.8) contrast(0.9) brightness(1.08);
}

/* 油墨晕染覆盖层 */
.fw-stack-card-thumb::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255,255,255,0.2) 0%, transparent 40%),
        radial-gradient(circle, transparent 50%, rgba(75,0,130,0.15) 100%);
    pointer-events: none;
}

.fw-stack-card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    text-align: center;
    padding: 4px;
    z-index: 2;
}
.fw-stack-card-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 11px; font-weight: 400; line-height: 1.2;
    color: rgba(44,62,107,0.85);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    text-shadow: 0 0 6px rgba(255,255,255,0.8);
}
.fw-stack-card.active .fw-stack-card-title {
    font-size: 13px;
    color: #4B0082;
}

.fw-stack-card-type {
    display: none;
}

.fw-stack-card-color-bar {
    display: none;
}

/* 油墨滴落触须 */
.fw-stack-card-tentacle {
    position: absolute;
    bottom: -30px; left: 50%;
    width: 2px; height: 30px;
    transform: translateX(-50%);
    z-index: -1;
}
.fw-stack-card-tentacle::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2px; height: 100%;
    background: linear-gradient(to bottom, rgba(75,0,130,0.25), rgba(75,0,130,0.03));
    border-radius: 1px;
}
.fw-stack-card-tentacle::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(75,0,130,0.3);
    transform: translateX(-50%);
    animation: inkDrop 3s ease-in-out infinite;
}

@keyframes inkDrop {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.4; }
    50% { transform: translateX(-50%) scale(1.3); opacity: 0.7; }
}

.fw-hero-silk {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.fw-hero-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
/* 水面漂浮粒子 */
.fw-hero-particle {
    position: absolute;
    width: 3px; height: 3px;
    background: rgba(75,0,130,0.15);
    border-radius: 50%;
    animation: inkFloat 10s ease-in-out infinite;
}
@keyframes inkFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    25% { transform: translate(8px, -12px) scale(1.2); opacity: 0.4; }
    50% { transform: translate(-5px, -8px) scale(0.8); opacity: 0.3; }
    75% { transform: translate(6px, -10px) scale(1.1); opacity: 0.35; }
}

/* 油墨晕染高光 */
.fw-stack-card .bubble-highlight {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 25%, rgba(75,0,130,0.08) 45%, rgba(70,130,180,0.06) 55%, transparent 75%);
    pointer-events: none;
    animation: inkHighlightSweep 6s ease-in-out infinite;
}
@keyframes inkHighlightSweep {
    0% { transform: rotate(0deg); opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { transform: rotate(360deg); opacity: 0.3; }
}

/* ===== Categories ===== */
.fw-categories-section {
    max-width: 1200px; margin: 0 auto;
    padding: 16px 20px 0;
}
.fw-categories-scroll {
    display: flex; gap: 0; overflow-x: auto;
    border-bottom: 1px solid rgba(75,0,130,0.08);
}
.fw-categories-scroll::-webkit-scrollbar { height: 2px; }
.fw-categories-scroll::-webkit-scrollbar-thumb { background: rgba(75,0,130,0.15); border-radius: 1px; }
.fw-category-item {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 20px; text-decoration: none;
    cursor: pointer; white-space: nowrap;
    transition: all 0.3s;
}
.fw-cat-line {
    width: 2px; height: 20px;
    background: var(--cat-color);
    transition: all 0.3s;
    border-radius: 1px;
    opacity: 0.5;
}
.fw-category-item:hover .fw-cat-line {
    width: 20px; height: 2px;
    opacity: 1;
    box-shadow: 0 0 8px var(--cat-color);
}
.fw-cat-label {
    font-size: 12px; color: rgba(44,62,107,0.45); letter-spacing: 1px; text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s, text-shadow 0.3s;
}
.fw-category-item:hover .fw-cat-label {
    color: #4B0082;
    text-shadow: 0 0 6px rgba(75,0,130,0.15);
}

/* ===== Main ===== */
.fw-main {
    max-width: 1200px; margin: 0 auto;
    padding: 0 20px;
    position: relative; z-index: 1;
}

/* ===== Section (水墨折叠列表) ===== */
.fw-sector {
    margin-top: 28px;
}
.fw-section-header {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; cursor: pointer;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(75,0,130,0.06);
    border-radius: 24px;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}
.fw-section-header:hover {
    background: rgba(255,255,255,0.7);
    border-color: rgba(75,0,130,0.1);
}
.fw-section-line {
    width: 8px; height: 8px;
    background: rgba(75,0,130,0.2);
    border-radius: 50%;
    transition: all 0.4s;
    flex-shrink: 0;
}
.fw-sector.open .fw-section-line {
    width: 12px; height: 12px;
    background: rgba(75,0,130,0.35);
    box-shadow: 0 0 10px rgba(75,0,130,0.2);
}
.fw-section-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 20px; font-weight: 400; color: #4B0082;
    letter-spacing: 2px;
    text-shadow: 1px 1px 4px rgba(75,0,130,0.1);
}
.fw-section-right {
    margin-left: auto; display: flex; align-items: center; gap: 12px;
}
.fw-section-more {
    font-size: 12px; color: rgba(44,62,107,0.35); text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}
.fw-section-more:hover { color: #4B0082; }
.fw-section-arrow {
    font-size: 10px; color: rgba(44,62,107,0.35);
    transition: transform 0.3s;
}
.fw-sector.open .fw-section-arrow { transform: rotate(180deg); }
.fw-section-content {
    max-height: 0; overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fw-sector.open .fw-section-content {
    max-height: 20000px;
}

/* ===== Game Grid ===== */
.fw-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px 0;
}
.fw-game-card {
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(75,0,130,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease, opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(10px);
    backdrop-filter: blur(4px);
}
.fw-game-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.fw-game-card:hover {
    background: rgba(255,255,255,0.65);
    border-color: rgba(75,0,130,0.12);
    box-shadow: 0 4px 20px rgba(75,0,130,0.06);
    transform: scale(0.98);
}
.fw-game-card:active {
    transform: scale(0.96);
}
.fw-card-link {
    display: block; text-decoration: none; color: #2C3E6B;
}
.fw-card-image {
    width: 100%; aspect-ratio: 1/1; overflow: hidden;
    border-radius: 16px 16px 0 0;
    position: relative;
}
.fw-card-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 60%);
    pointer-events: none;
}
.fw-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.85) contrast(0.9) brightness(1.05);
    transition: filter 0.4s, transform 0.4s;
}
.fw-game-card:hover .fw-card-image img {
    filter: saturate(0.95) contrast(0.95) brightness(1.08);
    transform: scale(1.03);
}
.fw-card-info {
    padding: 10px 12px;
}
.fw-card-title {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 13px; font-weight: 400; color: #2C3E6B;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    letter-spacing: 0.3px;
}

/* ===== Footer (画笔 + 颜料滴落) ===== */
.fw-footer {
    background: rgba(220,235,245,0.85);
    border-top: 1px solid rgba(75,0,130,0.08);
    padding: 48px 20px 24px;
    margin-top: 48px;
    position: relative; z-index: 1;
}
.fw-footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    position: relative; z-index: 1;
}
.fw-footer-heading {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 14px; font-weight: 400; color: rgba(75,0,130,0.45);
    margin-bottom: 14px; letter-spacing: 2px;
}
.fw-footer-desc {
    color: rgba(44,62,107,0.35);
    font-size: 13px; line-height: 1.7; font-weight: 400;
}
.fw-footer-links { display: flex; flex-direction: column; gap: 8px; }
.fw-footer-links a {
    color: rgba(44,62,107,0.4); text-decoration: none; font-size: 13px;
    transition: all 0.3s; cursor: pointer; font-weight: 400;
    display: inline-block;
    position: relative;
}
.fw-footer-links a:hover { color: #4B0082; text-shadow: 0 0 6px rgba(75,0,130,0.15); }
.fw-footer-links a:active { transform: translateY(1px); }

/* 三个画笔 + 颜料滴落 */
.fw-footer-jellyfish {
    display: flex; align-items: flex-start; justify-content: center; gap: 32px;
    padding-top: 8px;
}
.fw-jellyfish {
    display: flex; flex-direction: column; align-items: center;
    cursor: pointer;
    position: relative;
}
/* 画笔笔杆 */
.fw-jellyfish-dome {
    width: 8px; height: 28px;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #8B7355, #A0896B);
    border: 1px solid rgba(139,115,85,0.3);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}
/* 画笔金属箍 */
.fw-jellyfish-dome::after {
    content: '';
    position: absolute;
    bottom: 0; left: -1px; right: -1px;
    height: 4px;
    background: linear-gradient(180deg, #C0C0C0, #A0A0A0);
    border-radius: 0;
}
/* 画笔笔尖发光 */
.fw-jellyfish-glow {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(75,0,130,0.5);
    top: 100%; left: 50%;
    transform: translate(-50%, 0);
    animation: brushGlow 2.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(75,0,130,0.3);
}
@keyframes brushGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, 0) scale(0.8); }
    50% { opacity: 1; transform: translate(-50%, 2px) scale(1.2); }
}
/* 颜料滴落 */
.fw-jellyfish-tentacles {
    display: flex; gap: 4px; justify-content: center;
    margin-top: 2px;
}
.fw-jellyfish-tentacle {
    width: 2px; height: 18px;
    background: linear-gradient(to bottom, rgba(75,0,130,0.25), rgba(75,0,130,0.03));
    border-radius: 0 0 2px 2px;
    animation: inkDrip 3.5s ease-in-out infinite;
    transform-origin: top center;
}
.fw-jellyfish-tentacle:nth-child(1) { animation-delay: 0s; height: 16px; background: linear-gradient(to bottom, rgba(75,0,130,0.3), rgba(75,0,130,0.03)); }
.fw-jellyfish-tentacle:nth-child(2) { animation-delay: 0.4s; height: 22px; background: linear-gradient(to bottom, rgba(70,130,180,0.3), rgba(70,130,180,0.03)); }
.fw-jellyfish-tentacle:nth-child(3) { animation-delay: 0.8s; height: 18px; background: linear-gradient(to bottom, rgba(139,69,19,0.3), rgba(139,69,19,0.03)); }
.fw-jellyfish-tentacle:nth-child(4) { animation-delay: 0.2s; height: 14px; background: linear-gradient(to bottom, rgba(75,0,130,0.25), rgba(75,0,130,0.03)); }
.fw-jellyfish-tentacle:nth-child(5) { animation-delay: 0.6s; height: 20px; background: linear-gradient(to bottom, rgba(70,130,180,0.25), rgba(70,130,180,0.03)); }

@keyframes inkDrip {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    25% { transform: scaleY(1.1); opacity: 0.7; }
    50% { transform: scaleY(0.95); opacity: 0.4; }
    75% { transform: scaleY(1.05); opacity: 0.6; }
}

/* 颜料流动线 */
.fw-footer-current {
    position: absolute;
    bottom: 60px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(75,0,130,0.06), rgba(75,0,130,0.1), rgba(75,0,130,0.06), transparent);
    animation: inkFlow 8s ease-in-out infinite;
}
@keyframes inkFlow {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 0.6; transform: scaleX(1.1); }
}

.fw-footer-bottom {
    max-width: 1200px; margin: 28px auto 0;
    padding-top: 20px; border-top: 1px solid rgba(75,0,130,0.06);
    text-align: center; position: relative; z-index: 1;
}
.fw-footer-bottom p { color: rgba(44,62,107,0.25); font-size: 13px; font-weight: 400; }

/* ===== Mobile Bottom Nav ===== */
.fw-bottom-nav {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(230,242,248,0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(75,0,130,0.08);
    z-index: 100;
    padding: 8px 0;
}
.fw-bottom-nav a {
    display: flex; flex-direction: column; align-items: center;
    gap: 2px; text-decoration: none; color: rgba(44,62,107,0.4);
    font-size: 10px; font-weight: 400;
    transition: color 0.3s;
}
.fw-bottom-nav a:hover { color: #4B0082; }
.fw-bottom-nav-icon { font-size: 16px; }
.fw-bottom-nav-active { color: #4B0082 !important; text-shadow: 0 0 6px rgba(75,0,130,0.2); }

/* ===== Detail Page ===== */
.fw-detail-header {
    background: rgba(230,242,248,0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(75,0,130,0.08);
    padding: 16px 20px;
}
.fw-back-btn {
    font-size: 13px; font-weight: 400; color: rgba(44,62,107,0.5);
    text-decoration: none; transition: color 0.3s;
}
.fw-back-btn:hover { color: #4B0082; }
.fw-detail-main {
    max-width: 900px; margin: 0 auto;
    padding: 24px 20px;
    position: relative; z-index: 1;
}
.fw-detail-image {
    width: 100%; max-width: 350px; margin: 24px auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(75,0,130,0.08);
    box-shadow: 0 0 30px rgba(75,0,130,0.06);
}
.fw-detail-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255,255,255,0.15) 0%, transparent 40%),
        radial-gradient(circle, transparent 50%, rgba(75,0,130,0.1) 100%);
    pointer-events: none;
}
