* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0e14;
            color: #e8edf3;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color .2s;
        }
        a:hover {
            color: #ffdd77;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #12171f;
            border-bottom: 2px solid #1f2a36;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(4px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c842, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo small {
            font-size: .7rem;
            font-weight: 400;
            -webkit-text-fill-color: #8899aa;
            display: block;
            letter-spacing: .5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5c842;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
        }
        nav {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 500;
            font-size: .95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: .2s;
            color: #c8d0dc;
        }
        nav a:hover {
            border-bottom-color: #f5c842;
            color: #f5c842;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 8px;
                padding: 16px 0 8px;
                border-top: 1px solid #1f2a36;
                margin-top: 12px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 0;
                width: 100%;
                border-bottom: 1px solid #1a232e;
            }
        }
        .breadcrumb {
            padding: 16px 0 8px;
            font-size: .85rem;
            color: #7a8a9a;
        }
        .breadcrumb a {
            color: #7a8a9a;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb span {
            color: #b0c0d0;
        }
        .hero {
            padding: 40px 0 32px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c842, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #b0c0d0;
            max-width: 700px;
            margin: 0 auto 20px;
        }
        .hero .meta {
            font-size: .9rem;
            color: #6a7a8a;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
        }
        .last-updated {
            color: #f5c842;
            font-weight: 500;
        }
        .search-wrap {
            max-width: 500px;
            margin: 24px auto 32px;
            display: flex;
            gap: 8px;
        }
        .search-wrap input {
            flex: 1;
            padding: 12px 18px;
            border-radius: 40px;
            border: none;
            background: #1a232e;
            color: #e8edf3;
            font-size: 1rem;
            outline: 2px solid transparent;
            transition: .2s;
        }
        .search-wrap input:focus {
            outline-color: #f5c842;
        }
        .search-wrap button {
            padding: 12px 24px;
            border-radius: 40px;
            border: none;
            background: #f5c842;
            color: #0b0e14;
            font-weight: 700;
            cursor: pointer;
            transition: .2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-wrap button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 40px;
            padding: 20px 0 40px;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: #f5c842;
            border-left: 4px solid #f5c842;
            padding-left: 16px;
        }
        .main-content h2:first-of-type {
            margin-top: 0;
        }
        .main-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 28px 0 12px;
            color: #e0d5b8;
        }
        .main-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 20px 0 10px;
            color: #c8d0dc;
        }
        .main-content p {
            margin-bottom: 16px;
            color: #d0d8e0;
            font-size: 1.02rem;
        }
        .main-content ul,
        .main-content ol {
            margin: 0 0 20px 24px;
            color: #c0c8d4;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content strong {
            color: #f5c842;
        }
        .main-content .highlight-box {
            background: #1a232e;
            border-left: 4px solid #f5c842;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .main-content .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .main-content .img-wrap {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #1a232e;
            padding: 8px;
        }
        .main-content .img-wrap img {
            border-radius: 12px;
            width: 100%;
            height: auto;
        }
        .main-content .img-wrap figcaption {
            text-align: center;
            padding: 10px 0 4px;
            font-size: .9rem;
            color: #7a8a9a;
            font-style: italic;
        }
        .sidebar {
            background: #12171f;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #1f2a36;
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            color: #f5c842;
            margin-bottom: 16px;
            border-bottom: 1px solid #1f2a36;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar li a {
            display: block;
            padding: 6px 0;
            border-bottom: 1px solid #1a232e;
            font-size: .92rem;
        }
        .sidebar li a:hover {
            padding-left: 8px;
        }
        .interact-section {
            margin: 48px 0;
            padding: 32px;
            background: #12171f;
            border-radius: 20px;
            border: 1px solid #1f2a36;
        }
        .interact-section h3 {
            font-size: 1.5rem;
            color: #f5c842;
            margin-bottom: 20px;
        }
        .rating-stars {
            display: flex;
            gap: 12px;
            font-size: 2.2rem;
            cursor: pointer;
            margin-bottom: 24px;
            color: #3a4a5a;
            transition: .2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5c842;
        }
        .rating-stars i {
            transition: .2s;
        }
        .rating-stars i:hover {
            transform: scale(1.15);
        }
        .score-btn {
            background: #f5c842;
            color: #0b0e14;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 700;
            cursor: pointer;
            transition: .2s;
            font-size: .95rem;
        }
        .score-btn:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .score-msg {
            margin-left: 16px;
            color: #7a8a9a;
            font-size: .9rem;
        }
        .comment-form {
            margin-top: 28px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 12px;
            border: none;
            background: #1a232e;
            color: #e8edf3;
            font-size: 1rem;
            min-height: 100px;
            resize: vertical;
            outline: 2px solid transparent;
            transition: .2s;
        }
        .comment-form textarea:focus {
            outline-color: #f5c842;
        }
        .comment-form input {
            padding: 12px 18px;
            border-radius: 40px;
            border: none;
            background: #1a232e;
            color: #e8edf3;
            font-size: 1rem;
            outline: 2px solid transparent;
            transition: .2s;
        }
        .comment-form input:focus {
            outline-color: #f5c842;
        }
        .comment-form .row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .comment-form .row input {
            flex: 1;
            min-width: 160px;
        }
        .comment-form .submit-btn {
            background: #f5c842;
            color: #0b0e14;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 700;
            cursor: pointer;
            transition: .2s;
            align-self: flex-start;
            font-size: 1rem;
        }
        .comment-form .submit-btn:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .comment-list {
            margin-top: 24px;
            border-top: 1px solid #1f2a36;
            padding-top: 20px;
        }
        .comment-item {
            padding: 12px 0;
            border-bottom: 1px solid #1a232e;
        }
        .comment-item .name {
            font-weight: 600;
            color: #f5c842;
        }
        .comment-item .date {
            font-size: .8rem;
            color: #6a7a8a;
            margin-left: 12px;
        }
        .comment-item .text {
            margin-top: 4px;
            color: #c0c8d4;
        }
        footer {
            background: #0a0e14;
            border-top: 2px solid #1f2a36;
            padding: 32px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid #1a232e;
        }
        @media (max-width: 700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .footer-inner h4 {
            color: #f5c842;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-inner p,
        .footer-inner a {
            color: #8a9aaa;
            font-size: .92rem;
        }
        .footer-inner a:hover {
            color: #f5c842;
        }
        .friend-link {
            display: block;
            padding: 4px 0;
        }
        .friend-link a {
            display: inline-block;
            margin-right: 16px;
            margin-bottom: 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            color: #5a6a7a;
            font-size: .85rem;
        }
        .copyright strong {
            color: #8a9aaa;
        }
        @media (max-width: 600px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-wrap {
                flex-direction: column;
            }
            .search-wrap button {
                justify-content: center;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
            .interact-section {
                padding: 20px;
            }
            .rating-stars {
                font-size: 1.8rem;
                gap: 8px;
            }
        }
        .fade-in {
            animation: fadeIn .4s ease;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(8px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3a4a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4a5a;
        }
