
        /* ── Variables ── */
        :root {
            --primary: #0b1a2a;
            --primary-light: #1a3450;
            --secondary: #1e88b3;
            --secondary-hover: #2a9fd6;
            --accent: #5fc3e4;
            --text-dark: #1a2634;
            --bg-light: #f7f9fc;
            --bg-white: #ffffff;
            --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --card-hover-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            --border-radius: 12px;
            --transition: all 0.25s ease;
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        /* ── Reset & Base ── */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-family);
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            text-decoration: none;
            color: var(--secondary);
        }
        a:hover {
            color: var(--secondary-hover);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--primary);
            letter-spacing: -0.02em;
        }
        .text-center {
            text-align: center;
        }

        /* ── Buttons ── */
        .btn {
            display: inline-block;
            padding: 1px 9px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-align: center;
            background: var(--secondary);
            color: #fff;
            text-shadow: 2px 2px 2px #000;
            border: 2px solid #FFF;
        }
        .btn:hover {
            background: var(--secondary-hover);
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 136, 179, 0.3);
        }
        .btn-sm {
            padding: 8px 16px;
            font-size: 0.85rem;
        }
        .btn-outline {
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }
        .btn-outline:hover {
            background: var(--secondary);
            color: #fff;
            border-color: var(--secondary);
        }

        /* ── Header ── */
        .site-header {
            background: var(--primary);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo {
            font-weight: 800;
            font-size: 1.25rem;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
        }
        .logo span {
            color: var(--accent);
        }
        .logo small {
            font-weight: 400;
            font-size: 0.7rem;
            opacity: 0.7;
            margin-left: 6px;
        }
        .nav-links {
            display: flex;
            gap: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #d0e4f0;
            transition: color 0.2s;
        }
        .nav-links a:hover {
            color: #fff;
            text-decoration: none;
        }
        .nav-links .btn-nav {
            background: var(--secondary);
            color: #fff;
            padding: 6px 16px;
            border-radius: 30px;
            font-weight: 600;
            transition: background 0.2s;
        }
        .nav-links .btn-nav:hover {
            background: var(--secondary-hover);
            text-decoration: none;
        }

        /* ── Hero ── */
        .hero {
            background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
            color: #fff;
            padding: 10px 0 30px;                                     <!--Change-->
            border-bottom: 4px solid var(--secondary);
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "";
            position: absolute;
            right: -10%;
            top: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(30, 136, 179, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero .container {
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero h1 span {
            color: var(--accent);
        }
        .hero p {
            font-size: 1.0rem;                              <!--Change-->
            opacity: 0.9;
            max-width: 720px;
            margin-bottom: 24px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 36px;
            font-size: 0.9rem;
            opacity: 0.8;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 8px;
        }
        .hero-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ── TOC ── */
        .toc-wrap {
            background: var(--bg-white);
            border-radius: var(--border-radius);
            padding: 24px 28px;
            margin: 32px 0 40px;
            box-shadow: var(--card-shadow);
            border: 1px solid #e8edf3;
        }
        .toc-wrap h3 {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #4a5a6a;
            margin-bottom: 12px;
        }
        .toc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 4px 24px;
            font-size: 0.9rem;
        }
        .toc-grid a {
            color: var(--primary);
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .toc-grid a:hover {
            border-color: var(--secondary);
            text-decoration: none;
        }

        /* ── Article Layout ── */
        .article-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 32px 0 60px;
        }
        .main-content {
            background: var(--bg-white);
            border-radius: var(--border-radius);
            padding: 40px 44px;
            box-shadow: var(--card-shadow);
            border: 1px solid #e8edf3;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }

        /* ── Article Typography ── */
        .main-content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-top: 8px;
            border-bottom: 2px solid #eef3f8;
            padding-bottom: 10px;
            color: var(--primary);
        }
        .main-content h2:first-of-type {
            margin-top: 0;
        }
        .main-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 28px 0 12px;
            color: var(--primary-light);
        }
        .main-content h4 {
            font-size: 1.05rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: #2a4a6a;
        }
        .main-content p {
            margin-bottom: 16px;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 24px;
        }
        .main-content li {
            margin-bottom: 6px;
        }
        .main-content .note-box {
            background: #e8f4fa;
            border-radius: 8px;
            padding: 16px 20px;
            margin: 20px 0;
            border-left: 4px solid var(--secondary);
        }
        .main-content .warning-box {
            background: #fff3e8;
            border-radius: 8px;
            padding: 16px 20px;
            margin: 20px 0;
            border-left: 4px solid #d97a2a;
        }
        .main-content .highlight-box {
            background: #f0f7ee;
            border-radius: 8px;
            padding: 16px 20px;
            margin: 20px 0;
            border-left: 4px solid #3a9e5a;
        }
        .main-content .code-block {
            background: #1a2634;
            color: #d4e4f0;
            border-radius: 8px;
            padding: 16px 20px;
            margin: 16px 0;
            overflow-x: auto;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        .main-content .code-block .comment {
            color: #7a9ab5;
        }
        .main-content .code-block .keyword {
            color: #f5a623;
        }
        .main-content .code-block .number {
            color: #4fc3f7;
        }

        /* ── Tables ── */
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
        }
        .table-wrap th {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            padding: 10px 14px;
            text-align: left;
        }
        .table-wrap td {
            padding: 10px 14px;
            border-bottom: 1px solid #e8edf3;
        }
        .table-wrap tr:nth-child(even) td {
            background: #f8fafc;
        }
        .table-wrap tr:hover td {
            background: #eef3f8;
        }

        /* ── Sidebar Widgets ── */
        .sidebar-widget {
            background: var(--bg-white);
            border-radius: var(--border-radius);
            padding: 20px 22px;
            margin-bottom: 24px;
            border: 1px solid #e8edf3;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .sidebar-widget h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            border-bottom: 2px solid #eef3f8;
            padding-bottom: 8px;
        }
        .sidebar-widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-widget ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f0f4f8;
        }
        .sidebar-widget ul li:last-child {
            border-bottom: none;
        }
        .sidebar-widget ul li a {
            color: var(--primary);
            font-weight: 500;
        }
        .sidebar-widget ul li a:hover {
            color: var(--secondary);
            text-decoration: none;
        }
        .sidebar-widget .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .sidebar-widget .tag-cloud span {
            background: #eef3f8;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--primary-light);
        }

        /* ── Footer ── */
        .site-footer {
            background: var(--primary);
            color: #b0c8d8;
            padding: 48px 0 32px;
            border-top: 4px solid var(--secondary);
            margin-top: 20px;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .site-footer h5 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 12px;
        }
        .site-footer a {
            color: #b0c8d8;
        }
        .site-footer a:hover {
            color: #fff;
            text-decoration: none;
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
        }
        .site-footer ul li {
            padding: 4px 0;
        }
        .footer-bottom {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            margin-top: 12px;
            font-size: 0.85rem;
            text-align: center;
        }

        /* ── Back to top ── */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--secondary);
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            z-index: 999;
            border: none;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .back-to-top:hover {
            background: var(--secondary-hover);
            transform: translateY(-4px);
        }

        /* ── Responsive ── */
        @media (max-width: 1024px) {
            .article-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .site-header .container {
                flex-direction: column;
                align-items: stretch;
            }
            .nav-links {
                justify-content: center;
                gap: 12px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .main-content {
                padding: 24px 18px;
            }
            .toc-grid {
                grid-template-columns: 1fr 1fr;
            }
            .site-footer .container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .toc-grid {
                grid-template-columns: 1fr;
            }
            .hero-meta {
                flex-direction: column;
                gap: 6px;
            }
        }

        /* ── Utility ── */
        .badge {
            display: inline-block;
            background: var(--secondary);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 2px 12px;
            border-radius: 20px;
            letter-spacing: 0.3px;
        }
        .badge.gold {
            background: #c98f2a;
        }
        .badge.green {
            background: #3a9e5a;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .img-placeholder {
            background: #e8edf3;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            color: #4a5a6a;
            font-size: 0.9rem;
            margin: 16px 0;
            border: 2px dashed #b8c8d8;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }