        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #6c2bd9;
            --primary-dark: #4a1a96;
            --secondary: #f57c00;
            --accent: #00e5ff;
            --bg-dark: #0d0b1a;
            --bg-card: #1a1530;
            --bg-card2: #231d3d;
            --text-light: #f0edff;
            --text-muted: #b8b0d4;
            --text-body: #e0dcf0;
            --border-glow: rgba(108, 43, 217, 0.35);
            --shadow-glow: 0 0 30px rgba(108, 43, 217, 0.2);
            --radius: 16px;
            --radius-sm: 10px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg-dark);
            color: var(--text-body);
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
            text-shadow: 0 0 12px rgba(245, 124, 0, 0.3);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #120d25 0%, #1a1530 50%, #0d0b1a 100%);
            border-bottom: 1px solid var(--border-glow);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--secondary), #ffb74d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px rgba(245, 124, 0, 0.25);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: var(--accent);
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            transform: scale(1.02);
        }
        .my-logo span {
            font-size: 0.75rem;
            -webkit-text-fill-color: initial;
            color: var(--text-muted);
            font-weight: 400;
            letter-spacing: 1px;
            display: block;
            margin-top: -4px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(108, 43, 217, 0.2);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: var(--text-muted);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        .nav-menu a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--text-light);
            background: rgba(108, 43, 217, 0.25);
            box-shadow: 0 0 20px rgba(108, 43, 217, 0.15);
        }
        .nav-menu a.active {
            background: var(--primary);
            color: #fff;
        }
        .breadcrumb-wrap {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .breadcrumb-wrap a {
            color: var(--accent);
        }
        .breadcrumb-wrap a:hover {
            color: var(--secondary);
        }
        .breadcrumb-wrap span {
            color: var(--text-muted);
        }
        .breadcrumb-wrap .sep {
            margin: 0 8px;
            opacity: 0.5;
        }
        .hero-section {
            padding: 30px 0 20px;
            text-align: center;
        }
        .hero-section h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #fff 20%, var(--accent) 60%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
            text-shadow: 0 0 60px rgba(0, 229, 255, 0.15);
        }
        .hero-section .subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 750px;
            margin: 0 auto 18px;
        }
        .hero-section .last-update {
            display: inline-block;
            background: rgba(108, 43, 217, 0.2);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: var(--text-muted);
            border: 1px solid var(--border-glow);
        }
        .hero-section .last-update i {
            margin-right: 6px;
            color: var(--accent);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 20px 0 40px;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 32px;
            margin-bottom: 28px;
            border: 1px solid var(--border-glow);
            box-shadow: var(--shadow-glow);
            transition: var(--transition);
        }
        .card:hover {
            border-color: rgba(108, 43, 217, 0.5);
            box-shadow: 0 0 40px rgba(108, 43, 217, 0.15);
        }
        .card h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 16px;
            border-left: 4px solid var(--secondary);
            padding-left: 16px;
        }
        .card h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-light);
            margin: 24px 0 12px;
        }
        .card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--accent);
            margin: 18px 0 8px;
        }
        .card p {
            margin-bottom: 14px;
            color: var(--text-body);
        }
        .card p:last-child {
            margin-bottom: 0;
        }
        .feature-image {
            margin: 24px 0;
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        }
        .feature-image img {
            width: 100%;
            transition: var(--transition);
        }
        .feature-image img:hover {
            transform: scale(1.02);
        }
        .feature-image figcaption {
            background: var(--bg-card2);
            padding: 10px 16px;
            font-size: 0.85rem;
            color: var(--text-muted);
            text-align: center;
            border-top: 1px solid var(--border-glow);
        }
        .styled-list {
            list-style: none;
            padding-left: 0;
        }
        .styled-list li {
            padding: 8px 0 8px 28px;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .styled-list li::before {
            content: "▸";
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: 700;
        }
        .styled-list li strong {
            color: var(--text-light);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: var(--primary-dark);
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .data-table tr:hover td {
            background: rgba(108, 43, 217, 0.08);
        }
        .data-table .highlight {
            color: var(--secondary);
            font-weight: 600;
        }
        .sidebar-widget {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 22px 24px;
            margin-bottom: 24px;
            border: 1px solid var(--border-glow);
        }
        .sidebar-widget h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-widget h3 i {
            color: var(--secondary);
        }
        .sidebar-widget ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar-widget ul li {
            padding: 6px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .sidebar-widget ul li a {
            color: var(--text-muted);
            font-size: 0.92rem;
            display: block;
            padding: 4px 0;
        }
        .sidebar-widget ul li a:hover {
            color: var(--accent);
            padding-left: 6px;
        }
        .search-form {
            display: flex;
            gap: 10px;
            margin: 16px 0;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border-radius: 30px;
            border: 1px solid var(--border-glow);
            background: var(--bg-card2);
            color: var(--text-light);
            font-size: 0.95rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
        }
        .search-form input::placeholder {
            color: var(--text-muted);
        }
        .search-form button {
            padding: 12px 24px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
        }
        .search-form button:hover {
            transform: scale(1.04);
            box-shadow: 0 0 30px rgba(108, 43, 217, 0.3);
        }
        .comment-box,
        .score-box {
            background: var(--bg-card2);
            border-radius: var(--radius-sm);
            padding: 20px 24px;
            margin-top: 16px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .comment-box textarea {
            width: 100%;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-glow);
            background: var(--bg-dark);
            color: var(--text-light);
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: var(--transition);
            font-family: var(--font);
        }
        .comment-box textarea:focus {
            border-color: var(--accent);
        }
        .comment-box .btn,
        .score-box .btn {
            margin-top: 12px;
            padding: 10px 28px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, var(--secondary), #e65100);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
        }
        .comment-box .btn:hover,
        .score-box .btn:hover {
            transform: scale(1.04);
            box-shadow: 0 0 30px rgba(245, 124, 0, 0.25);
        }
        .score-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: var(--text-muted);
            cursor: pointer;
            margin: 8px 0;
        }
        .score-stars i {
            transition: var(--transition);
        }
        .score-stars i:hover,
        .score-stars i.active {
            color: var(--secondary);
            transform: scale(1.1);
        }
        .score-stars i.active {
            text-shadow: 0 0 20px rgba(245, 124, 0, 0.4);
        }
        .site-footer {
            background: linear-gradient(135deg, #0d0b1a 0%, #120d25 100%);
            border-top: 1px solid var(--border-glow);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .footer-inner h4 {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-inner p,
        .footer-inner a {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-inner a:hover {
            color: var(--accent);
        }
        .friend-link {
            display: block;
            padding: 6px 0;
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .friend-link:hover {
            color: var(--accent);
            padding-left: 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .copyright strong {
            color: var(--text-light);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                position: static;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: var(--bg-card);
                border-radius: var(--radius);
                padding: 12px;
                margin-top: 10px;
                border: 1px solid var(--border-glow);
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 16px;
                border-radius: var(--radius-sm);
            }
            .header-inner {
                gap: 6px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero-section h1 {
                font-size: 1.6rem;
            }
            .card {
                padding: 20px 18px;
            }
            .card h2 {
                font-size: 1.4rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .data-table {
                font-size: 0.82rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
            .score-stars {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero-section h1 {
                font-size: 1.3rem;
            }
            .card h2 {
                font-size: 1.2rem;
            }
            .card h3 {
                font-size: 1.1rem;
            }
            .breadcrumb-wrap {
                font-size: 0.75rem;
            }
            .sidebar-widget {
                padding: 16px 14px;
            }
        }
        .text-accent {
            color: var(--accent);
        }
        .text-secondary {
            color: var(--secondary);
        }
        .text-light {
            color: var(--text-light);
        }
        .fw-700 {
            font-weight: 700;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .gap-8 {
            gap: 8px;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .align-center {
            align-items: center;
        }
        .emoji-big {
            font-size: 1.6rem;
            line-height: 1;
        }
        .highlight-box {
            background: rgba(245, 124, 0, 0.08);
            border-left: 4px solid var(--secondary);
            padding: 14px 20px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 18px 0;
        }
        .highlight-box p {
            margin-bottom: 4px;
        }
        .badge {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .inline-link {
            color: var(--accent);
            font-weight: 500;
        }
        .inline-link:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
