* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0f1a;
            color: #e8edf5;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #facc15;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffdd55;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1a2e, #1a2d4a);
            border-bottom: 3px solid #facc15;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
            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: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(to right, #facc15, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(250, 204, 21, 0.15);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #facc15;
            color: #facc15;
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #94a3b8;
            color: #94a3b8;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #facc15;
            color: #facc15;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #facc15;
            color: #0f1a2e;
        }
        .main-nav {
            display: flex;
            gap: 6px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #cbd5e1;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            color: #facc15;
            border-bottom-color: #facc15;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap {
            background: #141c2b;
            padding: 12px 0;
            border-bottom: 1px solid #1e2a3a;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 8px 14px;
            font-size: 0.9rem;
        }
        .breadcrumb li {
            color: #94a3b8;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 14px;
            color: #facc15;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #facc15;
        }
        .breadcrumb .active {
            color: #facc15;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #0f1a2e 0%, #1a2d4a 100%);
            padding: 50px 0 40px;
            text-align: center;
            border-bottom: 2px solid #facc1522;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(to right, #facc15, #fde047, #facc15);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            max-width: 750px;
            margin: 0 auto 24px;
            color: #cbd5e1;
            font-size: 1.15rem;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px 32px;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .hero .meta-info i {
            color: #facc15;
            margin-right: 6px;
        }
        .last-updated {
            display: inline-block;
            background: #1e2a3a;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #facc15;
            border: 1px solid #facc1533;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0 60px;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        section {
            margin-bottom: 48px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 18px;
            padding-bottom: 10px;
            border-bottom: 3px solid #facc1533;
            color: #f1f5f9;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h2 i {
            color: #facc15;
            font-size: 1.5rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #facc15;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #e2e8f0;
        }
        p {
            margin-bottom: 16px;
            color: #d1d8e6;
        }
        .highlight-box {
            background: #141c2b;
            border-left: 5px solid #facc15;
            padding: 20px 24px;
            border-radius: 8px;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #facc15;
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
            color: #d1d8e6;
        }
        li {
            margin-bottom: 8px;
        }
        .emoji-big {
            font-size: 1.3rem;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            background: #1a2d4a;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 10px;
            width: 100%;
        }
        .featured-image figcaption {
            text-align: center;
            padding: 12px 8px 4px;
            font-size: 0.9rem;
            color: #94a3b8;
            font-style: italic;
        }
        .search-form {
            display: flex;
            gap: 10px;
            max-width: 520px;
            margin: 24px 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 14px 18px;
            border: none;
            border-radius: 8px;
            background: #1a2d4a;
            color: #e8edf5;
            font-size: 1rem;
            border: 2px solid #2a3f5a;
            transition: 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #facc15;
            background: #1f334f;
        }
        .search-form button {
            padding: 14px 28px;
            background: #facc15;
            color: #0b0f1a;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #fde047;
            transform: scale(1.02);
        }
        .interaction-panel {
            background: #141c2b;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 40px 0;
            border: 1px solid #2a3f5a;
        }
        .interaction-panel h3 {
            margin-top: 0;
        }
        .comment-form,
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin: 18px 0 10px;
        }
        .comment-form textarea,
        .score-form select,
        .score-form input,
        .comment-form input {
            padding: 12px 16px;
            border-radius: 8px;
            border: 2px solid #2a3f5a;
            background: #0f1a2e;
            color: #e8edf5;
            font-size: 1rem;
            transition: 0.3s;
            width: 100%;
        }
        .comment-form textarea:focus,
        .score-form select:focus,
        .score-form input:focus,
        .comment-form input:focus {
            outline: none;
            border-color: #facc15;
        }
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            align-self: flex-start;
            padding: 12px 32px;
            background: #facc15;
            color: #0b0f1a;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #fde047;
            transform: scale(1.02);
        }
        .score-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #2a3f5a;
            cursor: pointer;
        }
        .score-stars i.active {
            color: #facc15;
        }
        .score-stars i:hover {
            color: #facc15;
        }
        .sidebar-card {
            background: #141c2b;
            border-radius: 14px;
            padding: 22px 20px;
            margin-bottom: 28px;
            border: 1px solid #1e2a3a;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 14px;
            border-bottom: 2px solid #facc1522;
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-card h3 i {
            color: #facc15;
        }
        .sidebar-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar-links li {
            padding: 8px 0;
            border-bottom: 1px solid #1e2a3a;
        }
        .sidebar-links li:last-child {
            border-bottom: none;
        }
        .sidebar-links a {
            color: #cbd5e1;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
        }
        .sidebar-links a:hover {
            color: #facc15;
            padding-left: 6px;
        }
        .sidebar-links a i {
            width: 20px;
            color: #facc15;
            font-size: 0.85rem;
        }
        .site-footer {
            background: #0a0e17;
            border-top: 3px solid #facc1522;
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            color: #facc15;
            font-size: 1.05rem;
            margin-bottom: 14px;
            border-bottom: 2px solid #facc1522;
            padding-bottom: 8px;
        }
        .footer-col p,
        .footer-col li {
            color: #94a3b8;
            font-size: 0.92rem;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            padding: 4px 0;
        }
        .footer-col ul li a {
            color: #94a3b8;
        }
        .footer-col ul li a:hover {
            color: #facc15;
        }
        friend-link {
            display: block;
            background: #0f1a2e;
            border-radius: 12px;
            padding: 18px 22px;
            margin: 20px 0 10px;
            border: 1px solid #1e2a3a;
            font-size: 0.95rem;
            color: #cbd5e1;
        }
        friend-link a {
            color: #facc15;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #fde047;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1e2a3a;
            color: #64748b;
            font-size: 0.88rem;
        }
        .copyright strong {
            color: #94a3b8;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f1a2e;
                padding: 16px 0;
                border-top: 2px solid #facc1522;
                margin-top: 12px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-bottom: 1px solid #1e2a3a;
                width: 100%;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form {
                max-width: 100%;
            }
            .interaction-panel {
                padding: 18px 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 4px 10px;
            }
            .hero .meta-info {
                flex-direction: column;
                gap: 8px;
                font-size: 0.85rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.1rem;
                flex-wrap: wrap;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .sidebar-card {
                padding: 16px;
            }
            .score-stars {
                font-size: 1.3rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        ::selection {
            background: #facc1544;
            color: #fff;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #141c2b;
            border-radius: 10px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #1e2a3a;
        }
        th {
            background: #1a2d4a;
            color: #facc15;
            font-weight: 600;
        }
        td {
            color: #cbd5e1;
        }
        tr:hover td {
            background: #1a2d4a55;
        }
        .tag {
            display: inline-block;
            background: #facc1522;
            color: #facc15;
            padding: 2px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            border: 1px solid #facc1533;
        }
