*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --accent-hover: #ff6b81;
            --gold: #f5c518;
            --gold-dark: #d4a800;
            --bg-light: #f8f9fa;
            --bg-card: #ffffff;
            --text-dark: #222;
            --text-muted: #555;
            --text-light: #f0f0f0;
            --border: #e0e0e0;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
            --radius: 14px;
            --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            --max-width: 1200px;
            --header-bg: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: var(--accent-hover);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--header-bg);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
            color: #fff;
        }
        .my-logo i {
            color: var(--gold);
            font-size: 1.5rem;
        }
        .my-logo span {
            background: linear-gradient(to right, var(--gold), #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: rgba(255, 255, 255, 0.85);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: var(--gold);
            text-decoration: none;
        }
        .nav-menu a.active {
            background: var(--accent);
            color: #fff;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.06);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 10px;
            color: var(--gold);
        }
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.7);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb .current {
            color: var(--gold);
        }
        main {
            flex: 1;
            padding: 40px 0 60px;
        }
        .page-header {
            text-align: center;
            padding: 30px 0 20px;
        }
        .page-header h1 {
            font-size: 2.6rem;
            font-weight: 900;
            background: linear-gradient(135deg, #1a1a2e, #e94560);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 10px;
        }
        .page-header .subhead {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 720px;
            margin: 0 auto;
        }
        .last-update {
            display: inline-block;
            margin-top: 10px;
            font-size: 0.85rem;
            color: var(--text-muted);
            background: #f0f0f0;
            padding: 4px 16px;
            border-radius: 30px;
        }
        .last-update i {
            margin-right: 6px;
            color: var(--accent);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            margin-top: 30px;
        }
        .content-main {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 36px 40px;
            box-shadow: var(--shadow);
        }
        .content-main h2 {
            font-size: 1.9rem;
            font-weight: 800;
            margin: 48px 0 16px;
            color: var(--primary);
            border-left: 6px solid var(--accent);
            padding-left: 18px;
        }
        .content-main h2:first-of-type {
            margin-top: 0;
        }
        .content-main h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 32px 0 12px;
            color: var(--secondary);
        }
        .content-main h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #2a2a4a;
        }
        .content-main p {
            margin-bottom: 18px;
            color: #333;
        }
        .content-main ul,
        .content-main ol {
            margin: 12px 0 20px 24px;
        }
        .content-main li {
            margin-bottom: 8px;
        }
        .content-main .featured-image {
            margin: 30px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .content-main .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .content-main .featured-image figcaption {
            padding: 12px 18px;
            background: #f0f0f0;
            font-size: 0.85rem;
            color: var(--text-muted);
            text-align: center;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef9e7, #fdebd0);
            border-left: 6px solid var(--gold);
            padding: 20px 24px;
            border-radius: 10px;
            margin: 24px 0;
        }
        .stat-badge {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.3px;
        }
        .link-card {
            display: inline-block;
            background: #f0f2ff;
            padding: 4px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 4px 0;
            transition: 0.2s;
        }
        .link-card:hover {
            background: var(--accent);
            color: #fff;
            text-decoration: none;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px 22px;
            box-shadow: var(--shadow);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--primary);
            border-bottom: 2px solid var(--gold);
            padding-bottom: 8px;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-links li {
            padding: 6px 0;
            border-bottom: 1px solid var(--border);
        }
        .sidebar-links li:last-child {
            border-bottom: none;
        }
        .sidebar-links a {
            font-size: 0.92rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-links a i {
            color: var(--gold);
            font-size: 0.75rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 6px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.12);
        }
        .search-form button {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 12px 22px;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-form button:hover {
            background: var(--accent-hover);
        }
        .comment-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid var(--border);
        }
        .comment-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-form .row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: var(--font);
            outline: none;
            transition: 0.2s;
            width: 100%;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.08);
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form .btn-submit {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form .btn-submit:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-stars i {
            transition: 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: var(--gold);
            transform: scale(1.1);
        }
        .rating-stars i.active~i {
            color: #ccc;
        }
        .score-info {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 6px;
        }
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.8);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .site-footer .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .site-footer h4 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .site-footer a {
            color: rgba(255, 255, 255, 0.7);
        }
        .site-footer a:hover {
            color: var(--gold);
        }
        .site-footer .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }
        .site-footer .copyright strong {
            color: var(--gold);
        }
        friend-link {
            display: block;
            margin-top: 18px;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            font-size: 0.92rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 2px 0;
        }
        friend-link a::before {
            content: "🔗 ";
            font-size: 0.7rem;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                flex-basis: 100%;
                display: none;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                margin-top: 14px;
                padding-top: 14px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 16px;
                border-radius: 8px;
            }
            .page-header h1 {
                font-size: 1.8rem;
            }
            .content-main {
                padding: 20px 18px;
            }
            .content-main h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            .content-main h3 {
                font-size: 1.2rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .site-footer .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .comment-form .row {
                grid-template-columns: 1fr;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 1.5rem;
            }
            .content-main {
                padding: 14px 12px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        .text-gold {
            color: var(--gold);
        }
        .text-accent {
            color: var(--accent);
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-10 {
            margin-bottom: 10px;
        }
        .gap-8 {
            gap: 8px;
        }
        .flex-center {
            display: flex;
            align-items: center;
        }
        .rating-stars i.active {
            color: var(--gold);
        }
        .rating-stars i.selected {
            color: var(--gold-dark);
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f0f0f0;
        }
        ::-webkit-scrollbar-thumb {
            background: #b0b0b0;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #888;
        }
