
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --ink-black: #1a1a1a;
        --ink-gray: #4a4a4a;
        --paper-white: #f5f2eb;
        --paper-cream: #e8e4d9;
        --accent-red: #8b2500;
        --accent-gold: #b8860b;
    }

    body {
        font-family: 'STSong', 'SimSun', '宋体', serif;
        background: var(--paper-white);
        color: var(--ink-black);
        overflow-x: hidden;
    }

    .paper-texture {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        opacity: 0.03;
        pointer-events: none;
        z-index: 0;
    }

    .ink-splash {
        position: fixed;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.05;
        pointer-events: none;
    }

    .ink-splash:nth-child(1) {
        top: -200px;
        right: -200px;
        background: var(--ink-black);
    }

    .ink-splash:nth-child(2) {
        bottom: -300px;
        left: -200px;
        background: var(--ink-gray);
    }

    .main-container {
        position: relative;
        z-index: 1;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 80px;
    }


    .hero {
        min-height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 100px 0;
        position: relative;
    }

    .hero-content {
        display: flex;
        gap: 100px;
        align-items: center;
    }

    .vertical-text {
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }

    .hero-title {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 120px;
        line-height: 1.2;
        color: var(--ink-black);
        text-shadow: 2px 2px 0 var(--paper-cream);
    }

    .hero-poem {
        font-size: 28px;
        line-height: 2.5;
        color: var(--ink-gray);
        letter-spacing: 8px;
    }

    .seal {
        width: 100px;
        height: 100px;
        border: 3px solid var(--accent-red);
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 36px;
        color: var(--accent-red);
        transform: rotate(-5deg);
        position: absolute;
        right: 100px;
        bottom: 100px;
    }

    .divider {
        display: flex;
        align-items: center;
        gap: 30px;
        margin: 80px 0;
    }

    .divider-line {
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--ink-gray), transparent);
    }

    .divider-text {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 32px;
        color: var(--ink-gray);
    }

    .scroll-section {
        position: relative;
        padding: 60px 0;
    }

    .scroll-container {
        display: flex;
        gap: 60px;
        overflow-x: auto;
        padding: 40px 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .scroll-container::-webkit-scrollbar {
        display: none;
    }

    .scroll-card {
        min-width: 380px;
        background: var(--paper-cream);
        border: 1px solid rgba(0, 0, 0, 0.1);
        position: relative;
        scroll-snap-align: start;
        transition: all 0.5s ease;
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .scroll-card::before,
    .scroll-card::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 30px;
        background: linear-gradient(90deg,
            var(--accent-gold) 0%,
            #d4a574 20%,
            var(--accent-gold) 40%,
            #d4a574 60%,
            var(--accent-gold) 80%,
            #d4a574 100%);
    }

    .scroll-card::before {
        top: 0;
        border-radius: 5px 5px 0 0;
    }

    .scroll-card::after {
        bottom: 0;
        border-radius: 0 0 5px 5px;
    }

    .scroll-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .scroll-inner {
        padding: 60px 40px;
    }

    .scroll-category {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 18px;
        color: var(--accent-red);
        margin-bottom: 20px;
        display: inline-block;
        border-bottom: 1px solid var(--accent-red);
        padding-bottom: 5px;
    }

    .scroll-title {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 36px;
        color: var(--ink-black);
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .scroll-excerpt {
        font-size: 16px;
        color: var(--ink-gray);
        line-height: 2;
        margin-bottom: 30px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .scroll-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        border-top: 1px dashed var(--ink-gray);
    }

    .scroll-date {
        font-size: 14px;
        color: var(--ink-gray);
    }

    .scroll-rating {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 24px;
        color: var(--accent-gold);
    }

    .fan-section {
        padding: 100px 0;
        text-align: center;
    }

    .fan-title {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 48px;
        color: var(--ink-black);
        margin-bottom: 80px;
    }

    .fan-grid {
        display: flex;
        justify-content: center;
        gap: 30px;
        perspective: 1000px;
    }

    .fan-item {
        width: 200px;
        height: 350px;
        background: linear-gradient(180deg, var(--paper-cream) 0%, var(--paper-white) 100%);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 100px 100px 10px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        transform-origin: bottom center;
        text-decoration: none;
        color: inherit;
    }

    .fan-item:nth-child(1) { transform: rotate(-15deg); }
    .fan-item:nth-child(2) { transform: rotate(-7deg); }
    .fan-item:nth-child(3) { transform: rotate(0deg); }
    .fan-item:nth-child(4) { transform: rotate(7deg); }
    .fan-item:nth-child(5) { transform: rotate(15deg); }

    .fan-item:hover {
        transform: rotate(0deg) translateY(-30px) scale(1.05);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        z-index: 10;
    }

    .fan-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .fan-name {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 32px;
        color: var(--ink-black);
        margin-bottom: 15px;
    }

    .fan-count {
        font-size: 14px;
        color: var(--ink-gray);
    }

    .quote-section {
        padding: 120px 0;
        text-align: center;
        position: relative;
    }

    .quote-section::before {
        content: '「';
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 200px;
        color: rgba(0, 0, 0, 0.03);
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .quote-text {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 42px;
        color: var(--ink-black);
        line-height: 2;
        max-width: 800px;
        margin: 0 auto;
    }

    .quote-author {
        font-size: 20px;
        color: var(--ink-gray);
        margin-top: 40px;
    }

    footer {
        padding: 80px 0 40px;
        text-align: center;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .footer-logo {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 42px;
        color: var(--ink-black);
        margin-bottom: 30px;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-links a {
        font-size: 16px;
        color: var(--ink-gray);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--ink-black);
    }

    .copyright {
        font-size: 14px;
        color: var(--ink-gray);
    }

    @media (max-width: 1200px) {
        .main-container {
            padding: 0 40px;
        }

        .hero-title {
            font-size: 80px;
        }

        .fan-item {
            width: 150px;
            height: 280px;
        }
    }

    @media (max-width: 768px) {
        .hero-content {
            flex-direction: column;
            gap: 40px;
        }

        .vertical-text {
            writing-mode: horizontal-tb;
        }

        .hero-title {
            font-size: 56px;
        }

        .fan-grid {
            flex-wrap: wrap;
        }

        .fan-item {
            transform: rotate(0deg) !important;
        }
    }

    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track {
        background: var(--paper-cream);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--ink-gray);
        border-radius: 4px;
    }

