* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #0d1117;
            --secondary: #161b22;
            --accent: #f0c040;
            --accent2: #e85d3a;
            --accent3: #4fc3f7;
            --text: #e6edf3;
            --text-muted: #8b949e;
            --border: #30363d;
            --card-bg: #1c2333;
            --radius: 12px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--primary);
            color: var(--text);
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: var(--accent3);
            text-decoration: none;
            transition: color .2s;
        }
        a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--secondary);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--accent);
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: .9;
            text-decoration: none;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 4px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: .92rem;
            color: var(--text-muted);
            transition: all .2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            color: var(--text);
            background: rgba(255, 255, 255, .07);
            text-decoration: none;
        }
        .nav-list li a i {
            font-size: .85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: 1px solid var(--border);
            color: var(--text);
            font-size: 1.4rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background .2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, .05);
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumbs {
            background: var(--secondary);
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: .88rem;
            color: var(--text-muted);
        }
        .breadcrumbs .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumbs a {
            color: var(--text-muted);
        }
        .breadcrumbs a:hover {
            color: var(--accent3);
        }
        .breadcrumbs span {
            margin: 0 4px;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 18px;
            color: var(--accent);
            border-bottom: 2px solid var(--border);
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: var(--accent3);
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: var(--text);
        }
        p {
            margin-bottom: 18px;
            color: var(--text);
        }
        .lead {
            font-size: 1.15rem;
            color: var(--text-muted);
            border-left: 4px solid var(--accent);
            padding-left: 20px;
            margin-bottom: 30px;
        }
        .card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px 28px;
            margin-bottom: 28px;
            transition: transform .2s, box-shadow .2s;
        }
        .card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 12px;
        }
        .highlight {
            color: var(--accent);
            font-weight: 600;
        }
        .tag {
            display: inline-block;
            background: rgba(240, 192, 64, .15);
            color: var(--accent);
            padding: 2px 12px;
            border-radius: 20px;
            font-size: .8rem;
            font-weight: 600;
            margin-right: 6px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            padding: 12px 16px;
            background: var(--secondary);
            font-size: .88rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border);
        }
        .search-box {
            display: flex;
            max-width: 560px;
            background: var(--secondary);
            border: 1px solid var(--border);
            border-radius: 40px;
            overflow: hidden;
            transition: border-color .3s;
        }
        .search-box:focus-within {
            border-color: var(--accent3);
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            background: transparent;
            border: none;
            color: var(--text);
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        .search-box button {
            padding: 14px 24px;
            background: var(--accent3);
            border: none;
            color: #000;
            font-weight: 700;
            cursor: pointer;
            transition: background .2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: var(--accent);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        .comment-area textarea {
            width: 100%;
            padding: 14px 18px;
            background: var(--secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            color: var(--text);
            font-size: .95rem;
            resize: vertical;
            min-height: 120px;
            font-family: var(--font);
            transition: border-color .3s;
        }
        .comment-area textarea:focus {
            border-color: var(--accent3);
            outline: none;
        }
        .comment-area button,
        .rating-area button {
            padding: 12px 28px;
            background: var(--accent3);
            border: none;
            border-radius: 8px;
            color: #000;
            font-weight: 700;
            cursor: pointer;
            transition: background .2s;
            font-size: .95rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-area button:hover,
        .rating-area button:hover {
            background: var(--accent);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: var(--text-muted);
            cursor: pointer;
            margin: 10px 0 16px;
        }
        .rating-stars i {
            transition: color .2s, transform .15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: var(--accent);
            transform: scale(1.2);
        }
        .last-updated {
            display: inline-block;
            background: var(--secondary);
            padding: 6px 18px;
            border-radius: 20px;
            font-size: .85rem;
            color: var(--text-muted);
            border: 1px solid var(--border);
            margin-bottom: 24px;
        }
        .last-updated i {
            margin-right: 6px;
            color: var(--accent);
        }
        .site-footer {
            background: var(--secondary);
            border-top: 1px solid var(--border);
            padding: 40px 0 28px;
            margin-top: 40px;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
        }
        .footer-links a {
            color: var(--text-muted);
            font-size: .92rem;
        }
        .footer-links a:hover {
            color: var(--accent3);
        }
        friend-link {
            display: block;
            text-align: center;
            padding: 16px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            margin: 12px 0;
        }
        friend-link a {
            margin: 0 12px;
            color: var(--accent3);
        }
        friend-link a:hover {
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            color: var(--text-muted);
            font-size: .85rem;
            padding-top: 16px;
        }
        .copyright strong {
            color: var(--text);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--secondary);
                border: 1px solid var(--border);
                border-radius: var(--radius);
                padding: 8px;
                gap: 2px;
                margin-top: 8px;
            }
            .nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrap {
                flex-wrap: wrap;
                width: 100%;
            }
            .nav-toggle {
                display: none;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            .search-box {
                max-width: 100%;
            }
            .card {
                padding: 18px 20px;
            }
            .container {
                padding: 0 14px;
            }
            .breadcrumbs .container {
                font-size: .8rem;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
        }
        .btn-subtle {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text);
            padding: 10px 24px;
            border-radius: 8px;
            cursor: pointer;
            transition: all .2s;
            font-weight: 500;
        }
        .btn-subtle:hover {
            background: rgba(255, 255, 255, .05);
            border-color: var(--accent3);
        }
        .spacer-sm {
            height: 16px;
        }
        .spacer-md {
            height: 32px;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .list-styled {
            list-style: none;
            padding-left: 0;
        }
        .list-styled li {
            padding: 6px 0 6px 28px;
            position: relative;
        }
        .list-styled li::before {
            content: "▸";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }
        .inline-code {
            background: rgba(255, 255, 255, .06);
            padding: 2px 8px;
            border-radius: 4px;
            font-family: monospace;
            font-size: .9rem;
        }
        .rating-stars .fa-solid.fa-star {
            color: var(--accent);
        }
        .rating-stars .fa-regular.fa-star {
            color: var(--text-muted);
        }
        .toast-msg {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 8px;
            background: rgba(79, 195, 247, .15);
            color: var(--accent3);
            font-size: .9rem;
            margin-top: 8px;
            border: 1px solid rgba(79, 195, 247, .2);
        }
