*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg: #0d0d1a;
            --bg-card: #1a1a2e;
            --bg-card-hover: #252540;
            --text: #f0e6d0;
            --text-muted: #b8a88a;
            --accent: #ff4a4a;
            --accent-glow: #ff2a2a;
            --gold: #ffb347;
            --gold-dark: #c9861e;
            --cyan: #4ad4ff;
            --purple: #9b59b6;
            --border: #2a2a4a;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 16px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --header-h: 72px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--cyan);
            text-decoration: none;
            transition: color 0.25s, text-shadow 0.25s;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 12px var(--cyan);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(13, 13, 26, 0.92);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            height: var(--header-h);
            display: flex;
            align-items: center;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 16px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 0.04em;
            background: linear-gradient(135deg, var(--accent), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 74, 74, 0.25);
            transition: transform 0.3s;
            white-space: nowrap;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo small {
            font-size: 0.45em;
            -webkit-text-fill-color: var(--text-muted);
            background: none;
            margin-left: 6px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--border);
            color: var(--text);
            font-size: 1.6rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        .navbar {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .navbar a {
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
            transition: 0.25s;
            white-space: nowrap;
        }
        .navbar a:hover,
        .navbar a.active {
            color: #fff;
            background: rgba(255, 74, 74, 0.15);
            text-shadow: none;
        }
        .navbar a.active {
            color: var(--accent);
            border-bottom: 2px solid var(--accent);
        }
        .breadcrumb {
            padding: 16px 0 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
            padding: 2px 6px;
            border-radius: 4px;
        }
        .breadcrumb a:hover {
            color: var(--accent);
            background: rgba(255, 74, 74, 0.08);
        }
        .breadcrumb span {
            margin: 0 4px;
            color: var(--border);
        }
        .hero {
            padding: 32px 0 24px;
            text-align: center;
            position: relative;
        }
        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.6rem);
            font-weight: 900;
            background: linear-gradient(135deg, #fff, var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero .subhead {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .meta-badge {
            display: inline-flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
            font-size: 0.9rem;
            color: var(--text-muted);
            background: var(--bg-card);
            padding: 10px 24px;
            border-radius: 40px;
            border: 1px solid var(--border);
        }
        .hero .meta-badge i {
            color: var(--gold);
            margin-right: 4px;
        }
        .last-updated {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 8px;
        }
        .search-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 32px;
            margin: 20px 0 32px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: var(--accent);
            box-shadow: 0 0 20px rgba(255, 74, 74, 0.15);
        }
        .search-section button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, var(--accent), var(--gold-dark));
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            transform: scale(1.04);
            box-shadow: 0 0 30px rgba(255, 74, 74, 0.3);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 36px;
            margin: 20px 0 40px;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            position: sticky;
            top: calc(var(--header-h) + 20px);
            align-self: start;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 32px;
            margin-bottom: 28px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: border-color 0.3s, background 0.3s;
        }
        .card:hover {
            border-color: rgba(255, 74, 74, 0.2);
            background: var(--bg-card-hover);
        }
        .card h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            border-left: 4px solid var(--accent);
            padding-left: 16px;
        }
        .card h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--gold);
            margin: 24px 0 10px;
        }
        .card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--cyan);
            margin: 18px 0 8px;
        }
        .card p {
            margin-bottom: 16px;
            color: var(--text);
        }
        .card p:last-child {
            margin-bottom: 0;
        }
        .card ul,
        .card ol {
            margin: 12px 0 16px 24px;
            color: var(--text);
        }
        .card li {
            margin-bottom: 8px;
        }
        .card .highlight-box {
            background: rgba(255, 74, 74, 0.06);
            border-left: 4px solid var(--accent);
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 16px 0;
        }
        .card .highlight-box strong {
            color: var(--accent);
        }
        .emoji {
            font-style: normal;
        }
        .feature-img-wrap {
            margin: 20px 0 24px;
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
        }
        .feature-img-wrap img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .feature-img-wrap:hover img {
            transform: scale(1.02);
        }
        .feature-img-wrap .img-caption {
            background: rgba(13, 13, 26, 0.7);
            backdrop-filter: blur(4px);
            padding: 8px 16px;
            font-size: 0.85rem;
            color: var(--text-muted);
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }
        .sidebar-widget {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 22px 20px;
            margin-bottom: 24px;
            border: 1px solid var(--border);
        }
        .sidebar-widget h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 14px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 8px;
        }
        .sidebar-widget ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-widget ul li {
            padding: 6px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .sidebar-widget ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.92rem;
        }
        .sidebar-widget ul li a i {
            color: var(--accent);
            font-size: 0.7rem;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--border);
            transition: 0.2s;
            user-select: none;
        }
        .rating-stars .star {
            transition: 0.2s;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover {
            color: var(--gold);
            text-shadow: 0 0 16px var(--gold);
        }
        .rating-stars .star:hover~.star {
            color: var(--border);
        }
        .rating-result {
            margin-top: 8px;
            font-size: 0.95rem;
            color: var(--text-muted);
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 16px;
            border-radius: 12px;
            border: 2px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: 0.3s;
            font-family: var(--font);
        }
        .comment-form textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 16px rgba(255, 74, 74, 0.1);
        }
        .comment-form .btn-row {
            display: flex;
            gap: 12px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        .comment-form button {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, var(--accent), var(--gold-dark));
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.95rem;
        }
        .comment-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 0 28px rgba(255, 74, 74, 0.25);
        }
        .comment-form button.reset-btn {
            background: var(--bg-card);
            border: 1px solid var(--border);
            color: var(--text-muted);
        }
        .comment-form button.reset-btn:hover {
            border-color: var(--accent);
            color: #fff;
        }
        friend-link {
            display: block;
            margin-top: 24px;
            padding: 20px 28px;
            background: var(--bg-card);
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }
        friend-link h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 12px;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            padding: 0;
        }
        friend-link ul li a {
            font-size: 0.9rem;
            color: var(--text-muted);
            padding: 4px 8px;
            border-radius: 6px;
            transition: 0.2s;
        }
        friend-link ul li a:hover {
            color: var(--accent);
            background: rgba(255, 74, 74, 0.06);
        }
        .site-footer {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            padding: 28px 0 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .site-footer .copyright {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4px 16px;
        }
        .site-footer a {
            color: var(--text-muted);
        }
        .site-footer a:hover {
            color: var(--accent);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                position: static;
            }
            .sidebar-widget {
                display: inline-block;
                width: 100%;
            }
            .sidebar-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .navbar {
                display: none;
                width: 100%;
                flex-direction: column;
                background: var(--bg-card);
                border-radius: 12px;
                padding: 12px 8px;
                border: 1px solid var(--border);
                margin-top: 8px;
                gap: 2px;
            }
            .navbar.open {
                display: flex;
            }
            .navbar a {
                padding: 10px 16px;
                width: 100%;
                border-radius: 6px;
            }
            .card {
                padding: 20px 16px;
            }
            .search-section {
                padding: 20px 16px;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                width: 100%;
                min-width: unset;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .sidebar-grid {
                grid-template-columns: 1fr;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.4em;
            }
            friend-link ul {
                flex-direction: column;
                gap: 6px;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 12px 0 4px;
            }
        }
        @media (max-width: 420px) {
            .container {
                padding: 0 12px;
            }
            .card h2 {
                font-size: 1.4rem;
                padding-left: 12px;
            }
            .hero .meta-badge {
                font-size: 0.75rem;
                padding: 6px 14px;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 20px;
            padding: 12px 24px;
            background: var(--accent);
            color: #fff;
            border-radius: 8px;
            z-index: 9999;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 20px;
        }
