        *,
        *::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, sans-serif;
            background: #0b0b0e;
            color: #e8e6e1;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.25rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f0ede8;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid #2a2a35;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #d4cfc8;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: #12121a;
            border-bottom: 2px solid #2a2a3a;
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0.6rem 0;
            backdrop-filter: blur(8px);
            background-color: rgba(12, 12, 16, 0.92);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c542, #e8a832);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5c542;
            font-size: 1.5rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: initial;
            color: #9a9aaa;
            letter-spacing: 0.3px;
            margin-left: 0.3rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #3a3a4a;
            color: #e8e6e1;
            font-size: 1.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2a3a;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #c8c6c1;
            padding: 0.45rem 0.9rem;
            border-radius: 6px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #2a2a3a;
            color: #f5c542;
            text-decoration: none;
        }
        .main-nav a.active {
            color: #f5c542;
            background: #1e1e2a;
        }
        .breadcrumb {
            background: #1a1a24;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2a3a;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.2rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.4rem;
            color: #6a6a7a;
        }
        .breadcrumb a {
            color: #9a9aaa;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .current {
            color: #d4cfc8;
        }
        .main-content {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .search-section {
            background: #1a1a26;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin-bottom: 2.5rem;
            border: 1px solid #2c2c3c;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            flex: 1;
            min-width: 200px;
            gap: 0.5rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 2px solid #2e2e3e;
            background: #0e0e14;
            color: #e8e6e1;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
        }
        .search-form button {
            background: #f5c542;
            color: #0b0b0e;
            border: none;
            border-radius: 8px;
            padding: 0.7rem 1.4rem;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .hero-figure {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #2c2c3e;
            background: #12121c;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .hero-figure img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .hero-figure figcaption {
            padding: 1rem 1.5rem;
            font-size: 0.9rem;
            color: #9a9aaa;
            background: #0e0e16;
            border-top: 1px solid #2a2a3a;
        }
        .interaction-panel {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem 2rem;
            background: #16161f;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2a2a3a;
        }
        .rating-box {
            flex: 1;
            min-width: 200px;
        }
        .rating-box h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.15rem;
            margin: 0.5rem 0 0.3rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #4a4a5a;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5c542;
        }
        .star-rating input:checked~label {
            color: #f5c542;
        }
        .rating-form button {
            background: transparent;
            border: 2px solid #f5c542;
            color: #f5c542;
            border-radius: 8px;
            padding: 0.4rem 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, color 0.25s;
            margin-top: 0.4rem;
        }
        .rating-form button:hover {
            background: #f5c542;
            color: #0b0b0e;
        }
        .comment-box {
            flex: 2;
            min-width: 280px;
        }
        .comment-box h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            margin-top: 0.4rem;
        }
        .comment-form textarea {
            resize: vertical;
            min-height: 72px;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 2px solid #2e2e3e;
            background: #0e0e14;
            color: #e8e6e1;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.25s;
        }
        .comment-form textarea:focus {
            border-color: #f5c542;
        }
        .comment-form .form-row {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .comment-form input[type="text"] {
            flex: 1;
            min-width: 140px;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            border: 2px solid #2e2e3e;
            background: #0e0e14;
            color: #e8e6e1;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
        }
        .comment-form input[type="text"]:focus {
            border-color: #f5c542;
        }
        .comment-form button {
            background: #f5c542;
            color: #0b0b0e;
            border: none;
            border-radius: 8px;
            padding: 0.6rem 1.4rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
        }
        .comment-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .content-section {
            background: #12121a;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            margin-bottom: 2rem;
            border: 1px solid #242434;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .content-section p:last-child {
            margin-bottom: 0;
        }
        .highlight-box {
            background: #1c1c2a;
            border-left: 4px solid #f5c542;
            padding: 1.2rem 1.6rem;
            border-radius: 0 10px 10px 0;
            margin: 1.2rem 0;
        }
        .highlight-box strong {
            color: #f5c542;
        }
        .insight-list {
            list-style: none;
            padding: 0;
        }
        .insight-list li {
            padding: 0.5rem 0 0.5rem 1.8rem;
            position: relative;
            border-bottom: 1px solid #1e1e2e;
        }
        .insight-list li::before {
            content: "✦";
            position: absolute;
            left: 0;
            color: #f5c542;
            font-size: 1rem;
        }
        .inline-link {
            color: #f5c542;
            font-weight: 500;
            border-bottom: 1px dotted #5a5a6a;
        }
        .inline-link:hover {
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        friend-link {
            display: block;
            background: #16161f;
            border-radius: 14px;
            padding: 1.6rem 2rem;
            margin-top: 2.5rem;
            border: 1px solid #2a2a3a;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #f0ede8;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0.6rem 0 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
        }
        friend-link li a {
            color: #9a9aaa;
            font-size: 0.92rem;
        }
        friend-link li a:hover {
            color: #f5c542;
        }
        .site-footer {
            background: #0c0c12;
            border-top: 2px solid #1e1e2e;
            padding: 2rem 0 1.2rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.88rem;
            color: #7a7a8a;
        }
        .footer-inner .copyright {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .footer-inner a {
            color: #9a9aaa;
        }
        .footer-inner a:hover {
            color: #f5c542;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.45rem;
                margin-top: 2rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .container {
                padding: 0 1rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #12121a;
                border-radius: 10px;
                padding: 0.6rem 0;
                border: 1px solid #2a2a3a;
                margin-top: 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1.2rem;
                border-radius: 0;
                white-space: normal;
            }
            .search-section {
                flex-direction: column;
                padding: 1.4rem;
            }
            .search-form {
                width: 100%;
            }
            .content-section {
                padding: 1.4rem 1.2rem;
            }
            .interaction-panel {
                padding: 1.4rem;
                gap: 1.2rem;
            }
            .rating-box,
            .comment-box {
                min-width: 100%;
            }
            .hero-figure figcaption {
                padding: 0.7rem 1rem;
                font-size: 0.8rem;
            }
            friend-link {
                padding: 1.2rem 1.2rem;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .search-form button {
                padding: 0.6rem 0.9rem;
                font-size: 0.9rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .main-nav {
                display: flex !important;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #f5c542;
            color: #0b0b0e;
            border: none;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            font-size: 1.3rem;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(245, 197, 66, 0.3);
            transition: transform 0.2s, background 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 50;
        }
        .scroll-top:hover {
            transform: scale(1.1);
            background: #ffd966;
        }
        @media (max-width: 480px) {
            .scroll-top {
                bottom: 1.2rem;
                right: 1.2rem;
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
            }
        }
