        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #0b0d11;
            color: #e8e6e3;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1219 0%, #1a1f2b 100%);
            border-bottom: 2px solid #2a2e3a;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f5c542, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 197, 66, 0.15);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5c542;
            margin-right: 6px;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.75rem;
            display: block;
            letter-spacing: 3px;
            color: #9aa0b0;
            -webkit-text-fill-color: #9aa0b0;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8e6e3;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #c8ccd9;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: color 0.25s, border-color 0.25s;
        }
        .nav-menu a:hover {
            color: #f5c542;
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .nav-menu a.active {
            color: #f5c542;
            border-bottom-color: #f5c542;
        }
        .breadcrumb {
            background: #14181f;
            padding: 0.7rem 0;
            border-bottom: 1px solid #232733;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #6b7280;
        }
        .breadcrumb a {
            color: #9aa0b0;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .current {
            color: #e8e6e3;
            font-weight: 500;
        }
        .hero {
            padding: 3.5rem 0 2.5rem;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1f2533 0%, #0b0d11 70%);
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5c542, #e8b730, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .hero p {
            font-size: 1.15rem;
            color: #b0b7c7;
            max-width: 720px;
            margin: 0 auto 1.8rem;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            color: #7a8296;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .hero .meta-info i {
            margin-right: 6px;
            color: #f5c542;
        }
        section {
            padding: 2.5rem 0;
            border-bottom: 1px solid #1e222d;
        }
        section:last-of-type {
            border-bottom: none;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #f5c542;
            margin-bottom: 1.5rem;
            border-left: 5px solid #f5c542;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e8e6e3;
            margin: 1.8rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4d0c8;
            margin: 1.4rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d1d5db;
        }
        .content-card {
            background: #14181f;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #262b38;
            transition: box-shadow 0.3s ease;
        }
        .content-card:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #2a2e3a;
            background: #14181f;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 16/9;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #9aa0b0;
            background: #0f1219;
            font-style: italic;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .link-grid a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: #1a1f2b;
            padding: 0.8rem 1.2rem;
            border-radius: 10px;
            border: 1px solid #2a2e3a;
            transition: background 0.25s, border-color 0.25s, transform 0.2s;
            color: #e8e6e3;
            font-weight: 500;
        }
        .link-grid a:hover {
            background: #232937;
            border-color: #f5c542;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .link-grid a i {
            color: #f5c542;
            font-size: 1.1rem;
            width: 1.4rem;
            text-align: center;
        }
        .search-box {
            display: flex;
            max-width: 520px;
            margin: 1.2rem 0;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid #2a2e3a;
            background: #0f1219;
            transition: border-color 0.3s;
        }
        .search-box:focus-within {
            border-color: #f5c542;
        }
        .search-box input {
            flex: 1;
            padding: 0.85rem 1.4rem;
            background: transparent;
            border: none;
            color: #e8e6e3;
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #6b7280;
        }
        .search-box button {
            background: #f5c542;
            border: none;
            padding: 0 1.5rem;
            color: #0b0d11;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.25s;
            font-weight: 600;
        }
        .search-box button:hover {
            background: #ffd966;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media(max-width:700px) {
            .interact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .comment-area textarea {
            width: 100%;
            padding: 1rem;
            background: #0f1219;
            border: 1px solid #2a2e3a;
            border-radius: 12px;
            color: #e8e6e3;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 110px;
            transition: border-color 0.3s;
        }
        .comment-area textarea:focus {
            border-color: #f5c542;
            outline: none;
        }
        .comment-area button,
        .score-area button {
            background: #f5c542;
            color: #0b0d11;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            margin-top: 0.6rem;
        }
        .comment-area button:hover,
        .score-area button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .score-area .star-group {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #3a3f4e;
            cursor: pointer;
            margin: 0.6rem 0;
        }
        .score-area .star-group i {
            transition: color 0.2s, transform 0.15s;
        }
        .score-area .star-group i:hover,
        .score-area .star-group i.active {
            color: #f5c542;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            margin-top: 1.5rem;
            padding: 1.5rem 0;
            border-top: 1px solid #232733;
        }
        friend-link .fl-title {
            font-weight: 700;
            color: #f5c542;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
        }
        friend-link .fl-list a {
            color: #9aa0b0;
            font-size: 0.9rem;
            padding: 0.3rem 0.8rem;
            border: 1px solid #2a2e3a;
            border-radius: 20px;
            transition: all 0.25s;
        }
        friend-link .fl-list a:hover {
            color: #f5c542;
            border-color: #f5c542;
            text-decoration: none;
        }
        .site-footer {
            background: #0a0c11;
            border-top: 2px solid #1e222d;
            padding: 2rem 0 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: #6b7280;
        }
        .site-footer .copyright {
            margin-top: 1rem;
            letter-spacing: 0.5px;
        }
        .site-footer .copyright i {
            color: #f5c542;
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 1rem 0 0.5rem;
                gap: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 0.8rem;
                border-bottom: none;
                border-left: 3px solid transparent;
            }
            .nav-menu a:hover {
                border-left-color: #f5c542;
                border-bottom: none;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .content-card {
                padding: 1.2rem 1.2rem;
            }
            .container {
                padding: 0 1rem;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
        }
        @media(max-width:480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-box button {
                padding: 0.7rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #f5c542;
            color: #0b0d11;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 16px rgba(245, 197, 66, 0.25);
            cursor: pointer;
            transition: transform 0.3s, background 0.3s;
            border: none;
            z-index: 999;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
            background: #ffd966;
        }
        .text-gold {
            color: #f5c542;
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        .emoji-lg {
            font-size: 1.6rem;
        }
