        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0f1a;
            color: #e8edf5;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #f5b342;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #ffffff;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: clamp(1.8rem, 5vw, 3rem);
        }
        h2 {
            font-size: clamp(1.4rem, 3.5vw, 2.2rem);
            border-left: 5px solid #f5b342;
            padding-left: 0.75rem;
        }
        h3 {
            font-size: clamp(1.15rem, 2.5vw, 1.6rem);
        }
        h4 {
            font-size: clamp(1rem, 1.8vw, 1.25rem);
            color: #f5b342;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            width: 100%;
        }
        header {
            background: linear-gradient(135deg, #0f1628 0%, #1a2540 100%);
            border-bottom: 3px solid #f5b342;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5b342, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5b342;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.1rem;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 0.9rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #cfd9ed;
            transition: background 0.25s, color 0.25s;
        }
        .nav-list li a:hover {
            background: rgba(245, 179, 66, 0.15);
            color: #f5b342;
            text-decoration: none;
        }
        .nav-list li a.active {
            background: #f5b342;
            color: #0b0f1a;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.4rem;
            gap: 5px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #f5b342;
            border-radius: 4px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.04);
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #9aabca;
        }
        .breadcrumb a:hover {
            color: #f5b342;
        }
        .breadcrumb span {
            color: #6f7d9e;
        }
        main {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .section {
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: box-shadow 0.3s;
        }
        .section:hover {
            box-shadow: 0 8px 40px rgba(245, 179, 66, 0.06);
        }
        .section-dark {
            background: rgba(0, 0, 0, 0.25);
            border-color: rgba(245, 179, 66, 0.15);
        }
        .featured-img {
            border-radius: 14px;
            overflow: hidden;
            margin: 1.5rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            background: #1a2540;
        }
        .featured-img img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-img figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #b0bedd;
            background: rgba(0, 0, 0, 0.4);
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.8rem;
            margin: 1.2rem 0;
            padding: 0;
            list-style: none;
        }
        .link-list li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1rem;
            background: rgba(245, 179, 66, 0.07);
            border-radius: 8px;
            border: 1px solid rgba(245, 179, 66, 0.12);
            transition: background 0.25s, transform 0.2s;
            font-size: 0.95rem;
        }
        .link-list li a:hover {
            background: rgba(245, 179, 66, 0.15);
            transform: translateY(-2px);
            text-decoration: none;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin: 1rem 0;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #f5b342;
        }
        .search-form input::placeholder {
            color: #7a8aaa;
        }
        .search-form button {
            padding: 0.8rem 1.6rem;
            border: none;
            border-radius: 8px;
            background: #f5b342;
            color: #0b0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .comment-form,
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin: 1.2rem 0;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .comment-form label,
        .score-form label {
            font-weight: 600;
            color: #f5b342;
            font-size: 0.95rem;
        }
        .comment-form input,
        .comment-form textarea,
        .score-form select {
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .score-form select:focus {
            border-color: #f5b342;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            align-self: flex-start;
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 8px;
            background: #f5b342;
            color: #0b0f1a;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            font-size: 0.95rem;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        footer {
            background: #080c16;
            border-top: 2px solid rgba(245, 179, 66, 0.2);
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        footer .container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-col h4 {
            color: #f5b342;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 0.4rem;
        }
        .footer-col ul li a {
            color: #9aabca;
            font-size: 0.9rem;
        }
        .footer-col ul li a:hover {
            color: #f5b342;
        }
        friend-link {
            display: block;
            padding: 1rem 1.2rem;
            background: rgba(245, 179, 66, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(245, 179, 66, 0.12);
            font-size: 0.95rem;
            line-height: 1.8;
        }
        friend-link a {
            margin: 0 0.3rem;
        }
        .copyright {
            text-align: center;
            font-size: 0.85rem;
            color: #6f7d9e;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 1.5rem;
            margin-top: 0.5rem;
        }
        .copyright strong {
            color: #b0bedd;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #101826;
                border-radius: 10px;
                padding: 0.5rem 0;
                border: 1px solid rgba(245, 179, 66, 0.15);
                margin-top: 0.5rem;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 0.7rem 1.2rem;
            }
            .header-inner {
                align-items: center;
            }
            .nav-wrapper {
                width: 100%;
                order: 3;
            }
            .section {
                padding: 1.2rem;
            }
            .link-list {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .link-list {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        .tag {
            display: inline-block;
            background: rgba(245, 179, 66, 0.12);
            color: #f5b342;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 0.3rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(245, 179, 66, 0.15), transparent);
            padding: 0 0.4rem;
            border-radius: 4px;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 0.3rem;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            color: #9aabca;
            background: rgba(255, 255, 255, 0.04);
            padding: 0.3rem 0.9rem;
            border-radius: 20px;
            margin-bottom: 1rem;
        }
        .last-updated i {
            color: #f5b342;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.2rem 0;
        }
        .stat-card {
            background: rgba(245, 179, 66, 0.06);
            border-radius: 10px;
            padding: 1rem;
            text-align: center;
            border: 1px solid rgba(245, 179, 66, 0.1);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #f5b342;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #b0bedd;
        }
        .quote {
            border-left: 4px solid #f5b342;
            padding: 1rem 1.5rem;
            margin: 1.2rem 0;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 0 10px 10px 0;
            font-style: italic;
            color: #cfd9ed;
        }
        .quote cite {
            display: block;
            margin-top: 0.5rem;
            color: #f5b342;
            font-style: normal;
            font-weight: 600;
        }
        .section {
            animation: fadeUp 0.6s ease forwards;
            opacity: 0;
        }
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .section:nth-child(1) {
            animation-delay: 0.05s;
        }
        .section:nth-child(2) {
            animation-delay: 0.1s;
        }
        .section:nth-child(3) {
            animation-delay: 0.15s;
        }
        .section:nth-child(4) {
            animation-delay: 0.2s;
        }
        .section:nth-child(5) {
            animation-delay: 0.25s;
        }
        .section:nth-child(6) {
            animation-delay: 0.3s;
        }
        .section:nth-child(7) {
            animation-delay: 0.35s;
        }
        .section:nth-child(8) {
            animation-delay: 0.4s;
        }
        .section:nth-child(9) {
            animation-delay: 0.45s;
        }
