        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0d0f14;
            color: #e8edf2;
            line-height: 1.75;
            font-size: 16px;
        }
        a {
            color: #f5b041;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #f7c35c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4em;
        }
        li {
            margin-bottom: 0.4em;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.2em;
            margin-bottom: 0.5em;
            color: #f0f4fa;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f5b041;
            padding-bottom: 0.3em;
            margin-top: 0.2em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f5b041;
            padding-left: 0.7em;
            margin-top: 2em;
        }
        h3 {
            font-size: 1.4rem;
            color: #f5d48a;
        }
        h4 {
            font-size: 1.2rem;
            color: #d4dce8;
        }
        p {
            margin-bottom: 1.2em;
        }
        strong {
            color: #f5b041;
            font-weight: 700;
        }
        em {
            color: #b0c4de;
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid #f5b041;
            padding: 1em 1.2em;
            margin: 1.5em 0;
            background: rgba(245, 176, 65, 0.08);
            border-radius: 0 12px 12px 0;
            font-style: italic;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1f2b 0%, #0d0f14 100%);
            border-bottom: 2px solid #f5b04133;
            padding: 0.8em 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f5b041;
            text-decoration: none;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 12px rgba(245, 176, 65, 0.25);
            display: flex;
            align-items: center;
            gap: 0.3em;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #f7c35c;
        }
        .my-logo i {
            font-size: 1.4rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8edf2;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.3em 0.6em;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(245, 176, 65, 0.15);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2em;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #c8d0dc;
            font-weight: 500;
            padding: 0.4em 0.2em;
            border-bottom: 2px solid transparent;
            transition: all 0.25s ease;
            font-size: 0.95rem;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #f5b041;
            border-bottom-color: #f5b041;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3em;
        }
        .breadcrumb {
            padding: 1em 0 0.2em;
            font-size: 0.9rem;
            color: #88929e;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4em;
        }
        .breadcrumb a {
            color: #b0b8c4;
        }
        .breadcrumb a:hover {
            color: #f5b041;
        }
        .breadcrumb span {
            color: #f5b041;
        }
        .breadcrumb .sep {
            color: #555e6a;
            margin: 0 0.3em;
        }
        .search-section {
            background: #151a24;
            border-radius: 16px;
            padding: 2.5em 2em;
            margin: 2em 0 3em;
            border: 1px solid #2a3140;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 640px;
            margin: 0 auto;
            border-radius: 60px;
            overflow: hidden;
            border: 2px solid #2a3140;
            transition: border-color 0.3s;
            background: #0d0f14;
        }
        .search-form:focus-within {
            border-color: #f5b041;
        }
        .search-form input {
            flex: 1;
            padding: 0.9em 1.4em;
            border: none;
            background: transparent;
            color: #e8edf2;
            font-size: 1rem;
            outline: none;
        }
        .search-form input::placeholder {
            color: #5a6470;
        }
        .search-form button {
            background: #f5b041;
            border: none;
            padding: 0 1.8em;
            color: #0d0f14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5em;
        }
        .search-form button:hover {
            background: #f7c35c;
        }
        .content-area {
            padding: 1.5em 0 3em;
        }
        .featured-image {
            margin: 2em 0 2.5em;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            background: #1a1f2b;
            padding: 0.5em;
        }
        .featured-image img {
            width: 100%;
            border-radius: 12px;
        }
        .featured-image figcaption {
            text-align: center;
            padding: 0.8em 0.5em 0.3em;
            font-size: 0.9rem;
            color: #88929e;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 0.8em 1.2em;
            background: #151a24;
            border-radius: 16px;
            padding: 1.8em 2em;
            border: 1px solid #2a3140;
            margin: 2em 0;
        }
        .link-grid a {
            display: flex;
            align-items: center;
            gap: 0.6em;
            padding: 0.5em 0.8em;
            border-radius: 8px;
            background: rgba(245, 176, 65, 0.05);
            transition: background 0.25s, transform 0.15s;
            font-weight: 500;
        }
        .link-grid a:hover {
            background: rgba(245, 176, 65, 0.15);
            transform: translateX(4px);
            text-decoration: none;
        }
        .link-grid a i {
            color: #f5b041;
            font-size: 0.9rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8em 0;
            border-radius: 12px;
            overflow: hidden;
            background: #151a24;
        }
        .data-table th {
            background: #1f2636;
            color: #f5b041;
            padding: 1em 1.2em;
            text-align: left;
            font-weight: 700;
        }
        .data-table td {
            padding: 0.9em 1.2em;
            border-bottom: 1px solid #232a38;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: rgba(245, 176, 65, 0.04);
        }
        .interaction-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2em;
            margin: 3em 0 2em;
        }
        @media (max-width:720px) {
            .interaction-section {
                grid-template-columns: 1fr;
            }
        }
        .rating-box,
        .comment-box {
            background: #151a24;
            border-radius: 16px;
            padding: 2em 1.8em;
            border: 1px solid #2a3140;
        }
        .rating-box h3,
        .comment-box h3 {
            margin-top: 0;
            border-left: none;
            padding-left: 0;
            color: #f5d48a;
        }
        .star-group {
            display: flex;
            gap: 0.5em;
            font-size: 2rem;
            color: #3a4252;
            cursor: pointer;
            margin: 0.6em 0 1em;
            transition: color 0.2s;
        }
        .star-group i.active,
        .star-group i:hover,
        .star-group i:hover~i {
            color: #f5b041;
        }
        .star-group i {
            transition: color 0.2s, transform 0.1s;
        }
        .star-group i:hover {
            transform: scale(1.2);
        }
        .rating-box form,
        .comment-box form {
            display: flex;
            flex-direction: column;
            gap: 0.8em;
        }
        .rating-box form input,
        .comment-box form input,
        .comment-box form textarea {
            padding: 0.8em 1.2em;
            border-radius: 10px;
            border: 1px solid #2a3140;
            background: #0d0f14;
            color: #e8edf2;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .rating-box form input:focus,
        .comment-box form input:focus,
        .comment-box form textarea:focus {
            border-color: #f5b041;
        }
        .comment-box form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-submit {
            background: #f5b041;
            color: #0d0f14;
            font-weight: 700;
            padding: 0.8em 1.6em;
            border: none;
            border-radius: 60px;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            font-size: 1rem;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background: #f7c35c;
            transform: translateY(-2px);
        }
        .site-footer {
            background: #0a0c10;
            border-top: 2px solid #1f2636;
            padding: 3em 0 2em;
            margin-top: 4em;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2.5em 3em;
        }
        @media (max-width:640px) {
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        .footer-copyright {
            text-align: center;
            padding-top: 2em;
            margin-top: 2em;
            border-top: 1px solid #1a202e;
            color: #5a6470;
            font-size: 0.85rem;
        }
        .footer-copyright strong {
            color: #88929e;
        }
        friend-link {
            display: block;
            margin-top: 0.8em;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2em;
            margin-bottom: 0.4em;
            color: #b0b8c4;
            border-bottom: 1px dotted #2a3140;
        }
        friend-link a:hover {
            color: #f5b041;
            border-bottom-color: #f5b041;
            text-decoration: none;
        }
        @media (max-width:860px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 1em 0 0.5em;
                gap: 0.3em;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7em 1em;
                border-bottom: 1px solid #1f2636;
                border-radius: 8px;
            }
            .main-nav a:hover {
                background: rgba(245, 176, 65, 0.06);
                border-bottom-color: #1f2636;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .search-section {
                padding: 1.8em 1.2em;
            }
            .link-grid {
                grid-template-columns: 1fr;
                padding: 1.2em 1.2em;
            }
            .header-inner {
                gap: 0.5em;
            }
        }
        @media (max-width:480px) {
            body {
                font-size: 15px;
            }
            .container {
                padding: 0 14px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
                border: 2px solid #2a3140;
            }
            .search-form input {
                padding: 0.8em 1em;
            }
            .search-form button {
                padding: 0.8em 1em;
                justify-content: center;
            }
            .interaction-section {
                grid-template-columns: 1fr;
            }
        }
        .last-updated {
            display: inline-block;
            background: #1a202e;
            padding: 0.3em 1em;
            border-radius: 60px;
            font-size: 0.85rem;
            color: #88929e;
            margin-bottom: 1em;
        }
        .last-updated i {
            margin-right: 0.4em;
            color: #f5b041;
        }
        .tag {
            display: inline-block;
            background: #f5b04115;
            color: #f5b041;
            padding: 0.2em 0.9em;
            border-radius: 60px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #f5b04133;
        }
        .emoji-big {
            font-size: 1.4em;
            line-height: 1;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a202e, #151a24);
            border-radius: 16px;
            padding: 1.8em 2em;
            border-left: 5px solid #f5b041;
            margin: 1.8em 0;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5em 2em;
            margin: 1.5em 0;
        }
        @media (max-width:600px) {
            .two-col {
                grid-template-columns: 1fr;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards;
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
