        *,
        *::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, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f0c850;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffdf7e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(145deg, #121820 0%, #1a2535 100%);
            border-bottom: 3px solid #f0c850;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            color: #f0c850;
            text-shadow: 0 0 12px rgba(240, 200, 80, 0.25);
            transition: text-shadow 0.3s;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            text-shadow: 0 0 24px rgba(240, 200, 80, 0.5);
            text-decoration: none;
        }
        .my-logo .logo-icon {
            font-size: 2rem;
        }
        .my-logo .logo-sub {
            font-weight: 300;
            font-size: 0.9rem;
            color: #8a9bb5;
            letter-spacing: 0.15em;
            margin-left: 0.3rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0c850;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(240, 200, 80, 0.12);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #c8d4e6;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.1rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s, color 0.25s;
        }
        .main-nav a:hover {
            color: #f0c850;
            border-bottom-color: #f0c850;
            text-decoration: none;
        }
        .main-nav a.active {
            color: #f0c850;
            border-bottom-color: #f0c850;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.04);
            padding: 0.6rem 0;
            font-size: 0.85rem;
            color: #7a8aa3;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #9aadc9;
        }
        .breadcrumb a:hover {
            color: #f0c850;
        }
        .breadcrumb .sep {
            color: #4a5a73;
            margin: 0 0.15rem;
        }
        .hero {
            padding: 2.5rem 0 1.5rem;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, rgba(240, 200, 80, 0.07) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #f0c850;
            line-height: 1.2;
            text-shadow: 0 2px 20px rgba(240, 200, 80, 0.15);
            margin-bottom: 0.5rem;
        }
        .hero .subtitle {
            font-size: 1.1rem;
            color: #90a2c0;
            max-width: 720px;
            margin: 0 auto 1rem;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.2rem 2.5rem;
            font-size: 0.9rem;
            color: #7a8aa3;
        }
        .hero .meta-info i {
            color: #f0c850;
            margin-right: 0.4rem;
        }
        .last-updated {
            background: rgba(240, 200, 80, 0.1);
            padding: 0.2rem 1rem;
            border-radius: 30px;
            border: 1px solid rgba(240, 200, 80, 0.15);
        }
        .search-section {
            padding: 0.75rem 0 1.5rem;
        }
        .search-form {
            display: flex;
            max-width: 580px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid rgba(240, 200, 80, 0.25);
            background: #1a2535;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #f0c850;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.8rem 1.5rem;
            border: none;
            background: transparent;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
        }
        .search-form input[type="text"]::placeholder {
            color: #5a6a83;
        }
        .search-form button {
            background: #f0c850;
            border: none;
            padding: 0 1.6rem;
            color: #0b0e14;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffd96a;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 1.5rem 0 3rem;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 110px;
            align-self: start;
        }
        .main-content h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #f0c850;
            margin: 2.2rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 2px solid rgba(240, 200, 80, 0.15);
            letter-spacing: -0.01em;
        }
        .main-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #e0e8f5;
            margin: 1.6rem 0 0.7rem 0;
        }
        .main-content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #c8d4e6;
            margin: 1.2rem 0 0.5rem 0;
        }
        .main-content p {
            margin-bottom: 1.1rem;
            color: #d0dae8;
        }
        .main-content strong {
            color: #f0e6c0;
            font-weight: 600;
        }
        .main-content em {
            color: #b0c4e0;
        }
        .main-content ul,
        .main-content ol {
            margin-bottom: 1.2rem;
            color: #c8d4e6;
        }
        .main-content li {
            margin-bottom: 0.3rem;
        }
        .main-content .highlight-box {
            background: rgba(240, 200, 80, 0.06);
            border-left: 4px solid #f0c850;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .main-content .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .main-content .stat-badge {
            display: inline-block;
            background: rgba(240, 200, 80, 0.12);
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #f0c850;
            border: 1px solid rgba(240, 200, 80, 0.15);
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a2535;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-image .img-caption {
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #7a8aa3;
            background: #121820;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .sidebar-card {
            background: #141e2a;
            border-radius: 14px;
            padding: 1.4rem 1.5rem;
            margin-bottom: 1.8rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #f0c850;
            margin-bottom: 0.8rem;
            border-bottom: 1px solid rgba(240, 200, 80, 0.12);
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 0.35rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-size: 0.9rem;
            color: #b0c4e0;
            display: block;
            transition: color 0.2s, padding-left 0.2s;
        }
        .sidebar-card ul li a:hover {
            color: #f0c850;
            padding-left: 0.3rem;
            text-decoration: none;
        }
        .sidebar-card ul li a i {
            margin-right: 0.4rem;
            color: #f0c850;
            font-size: 0.75rem;
        }
        .interaction-area {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid rgba(240, 200, 80, 0.1);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .comment-section,
        .rating-section {
            background: #141e2a;
            border-radius: 14px;
            padding: 1.5rem 1.8rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .comment-section h3,
        .rating-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #f0c850;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .comment-section textarea,
        .comment-section input,
        .rating-section input,
        .rating-section select {
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            transition: border-color 0.25s;
            outline: none;
            font-family: inherit;
        }
        .comment-section textarea:focus,
        .comment-section input:focus,
        .rating-section input:focus,
        .rating-section select:focus {
            border-color: #f0c850;
        }
        .comment-section textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-section button,
        .rating-section button {
            align-self: flex-start;
            padding: 0.6rem 1.8rem;
            border: none;
            border-radius: 50px;
            background: #f0c850;
            color: #0b0e14;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #ffd96a;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #4a5a73;
            cursor: pointer;
        }
        .rating-stars i.active {
            color: #f0c850;
        }
        .rating-stars i:hover {
            color: #f0c850;
        }
        .site-footer {
            background: #0a0f16;
            border-top: 3px solid rgba(240, 200, 80, 0.15);
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-col h4 {
            color: #f0c850;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            letter-spacing: 0.03em;
        }
        .footer-col p,
        .footer-col li {
            font-size: 0.88rem;
            color: #8a9bb5;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            padding: 0.2rem 0;
        }
        .footer-col ul li a {
            color: #8a9bb5;
            font-size: 0.88rem;
        }
        .footer-col ul li a:hover {
            color: #f0c850;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
            margin: 1rem 0 0.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            color: #8a9bb5;
            font-size: 0.88rem;
        }
        friend-link a:hover {
            color: #f0c850;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.82rem;
            color: #5a6a83;
        }
        .copyright span {
            color: #8a9bb5;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.4rem;
                padding: 0.8rem 0 0.4rem;
                border-top: 1px solid rgba(240, 200, 80, 0.1);
                margin-top: 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.4rem 0;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-form button {
                padding: 0.7rem;
                justify-content: center;
            }
            .hero .meta-info {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo .logo-sub {
                font-size: 0.7rem;
            }
            .main-content h2 {
                font-size: 1.4rem;
            }
            .main-content h3 {
                font-size: 1.15rem;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #f0c850;
            color: #0b0e14;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 16px rgba(240, 200, 80, 0.3);
            transition: transform 0.25s, background 0.25s;
            z-index: 50;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
            background: #ffd96a;
        }
        @media (max-width: 480px) {
            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }
        .inline-link {
            color: #f0c850;
            font-weight: 500;
        }
        .inline-link:hover {
            text-decoration: underline;
        }
        .emoji-big {
            font-size: 1.3em;
            margin-right: 0.2em;
        }
        .divider {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(240, 200, 80, 0.15), transparent);
            margin: 2rem 0;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 0.8rem 0;
        }
        .tag-list .tag {
            background: rgba(240, 200, 80, 0.08);
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #b0c4e0;
            border: 1px solid rgba(240, 200, 80, 0.08);
        }
