      :root {
            --dark-blue: #0B1C3F;
            --gold: #D4AF37;
            --gold-light: #e6c65c;
            --white: #FFFFFF;
            --gray-light: #F8F9FC;
            --shadow-sm: 0 10px 30px -12px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
            --border-radius-card: 24px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Poppins', sans-serif;
            background-color: #ffffff;
            color: #1A2C3E;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4 {
            font-family: 'Montserrat', 'Inter', sans-serif;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: 1.9rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            color: var(--dark-blue);
            border-bottom: 3px solid var(--gold);
            padding-bottom: 10px;
            margin-top: 2.2rem;
        }

        h2:first-of-type {
            margin-top: 0;
        }

        p {
            margin-bottom: 1.1rem;
            color: #2d3a4a;
            font-size: 1.02rem;
        }

        ul {
            margin: 0.8rem 0 1.4rem 1.5rem;
        }

        ul li {
            padding: 6px 0;
            font-size: 1rem;
            color: #2d3a4a;
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            border-radius: 16px;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: var(--gold);
            color: var(--dark-blue);
            font-weight: 700;
            padding: 13px 30px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.25s ease;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            margin-top: 1.2rem;
        }

        .btn i {
            font-size: 1.1rem;
        }

        .btn:hover {
            background-color: #c9a53b;
            transform: translateY(-3px);
            box-shadow: 0 12px 20px -10px rgba(212, 175, 55, 0.4);
            color: #0B1C3F;
        }

        /* WeChat Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 24px;
            text-align: center;
            max-width: 400px;
            width: 90%;
            position: relative;
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
            color: #666;
            transition: 0.2s;
        }

        .close-modal:hover {
            color: #000;
        }

        .qr-code {
            width: 250px;
            height: 286px;
            margin: 20px auto;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            overflow: hidden;
        }

        .qr-code img {
            width: 100%;
            height: auto;
            border-radius: 0;
        }

        .wechat-id {
            font-size: 1.2rem;
            color: var(--dark-blue);
            margin-top: 15px;
            font-weight: 600;
        }

        /* Floating WeChat Button */
        .floating-wechat {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            background: #07C160;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(7, 193, 96, 0.4);
            transition: all 0.3s ease;
        }

        .floating-wechat:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(7, 193, 96, 0.6);
        }

        .floating-wechat i {
            font-size: 32px;
            color: white;
        }

        /* Sticky Header */
        .sticky-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(11, 28, 63, 0.96);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 14px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            width: 70px;
            height: auto;
        }

        .logo img {
            width: 100%;
            height: auto;
            border-radius: 0;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: 0.2s;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .header-cta {
            background: var(--gold);
            padding: 8px 20px;
            border-radius: 40px;
            color: var(--dark-blue) !important;
            font-weight: 700;
        }

        .header-cta:hover {
            background: #f5e09e;
            transform: scale(1.02);
        }

        .header-wechat {
            background: #07C160;
            padding: 8px 20px;
            border-radius: 40px;
            color: white !important;
            font-weight: 700;
        }

        .header-wechat:hover {
            background: #06ad56;
            color: white !important;
        }

        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: white;
            cursor: pointer;
        }

        /* Hero Article */
        .hero-article {
            min-height: 40vh;
            background: linear-gradient(135deg, rgba(11, 28, 63, 0.85), rgba(0, 0, 0, 0.6)),
                url('assets/blog/penang-street-art.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 120px;
            padding-bottom: 50px;
            color: white;
        }

        .hero-article h1 {
            font-size: 2.8rem;
            margin-bottom: 0.8rem;
            color: white;
            font-weight: 800;
        }

        .hero-article .article-meta {
            font-size: 1rem;
            color: var(--gold-light);
            margin-bottom: 0.6rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .hero-article .article-meta i {
            color: var(--gold);
        }

        .hero-article p {
            color: #e0e0e0;
            font-size: 1.1rem;
            margin-bottom: 0;
        }

        /* Featured Image */
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 20px;
            margin: -50px 0 30px 0;
            box-shadow: var(--shadow-md);
            position: relative;
            z-index: 2;
        }

        /* Article Content */
        .article-content {
            max-width: 800px;
            margin: 0 auto;
            padding-bottom: 40px;
        }

        .article-content p {
            font-size: 1.05rem;
            line-height: 1.75;
            color: #2d3a4a;
            margin-bottom: 1.3rem;
        }

        .article-content strong {
            color: var(--dark-blue);
        }

        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, #fef9e7, #fdf3d0);
            border-left: 5px solid var(--gold);
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            box-shadow: 0 6px 18px rgba(212, 175, 55, 0.12);
        }

        .highlight-box i {
            flex-shrink: 0;
            margin-top: 2px;
        }

        .highlight-box strong {
            display: block;
            margin-bottom: 6px;
            color: var(--dark-blue);
            font-size: 1.05rem;
        }

        .highlight-box a {
            color: var(--dark-blue);
            font-weight: bold;
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color 0.2s;
        }

        .highlight-box a:hover {
            color: #000;
        }

        /* Footer */
        footer {
            background: var(--dark-blue);
            color: #ddd;
            padding: 48px 0 24px;
            margin-top: 60px;
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        .social-links a {
            color: var(--gold);
            font-size: 1.6rem;
            margin: 0 12px;
            transition: 0.2s;
        }

        .social-links a:hover {
            opacity: 0.7;
        }

        /* Responsive */
        @media (max-width: 920px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                background: rgba(11, 28, 63, 0.98);
                backdrop-filter: blur(12px);
                width: 80%;
                height: 100vh;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: 0.3s;
                gap: 35px;
                font-size: 1.2rem;
            }

            .nav-links.active {
                left: 0;
            }

            .hero-article h1 {
                font-size: 2rem;
            }

            .featured-img {
                margin-top: -30px;
                border-radius: 14px;
            }

            .article-content {
                padding: 0 10px 30px;
            }

            h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .floating-wechat {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }

            .floating-wechat i {
                font-size: 26px;
            }

            .hero-article {
                padding-top: 110px;
                min-height: 35vh;
            }

            .hero-article h1 {
                font-size: 1.7rem;
            }

            .hero-article p {
                font-size: 0.95rem;
            }

            .container {
                padding: 0 18px;
            }

            .btn {
                padding: 11px 24px;
                font-size: 0.95rem;
            }

            .highlight-box {
                flex-direction: column;
                gap: 8px;
                padding: 18px 20px;
            }
        }

        @media (max-width: 560px) {
            .hero-article h1 {
                font-size: 1.5rem;
            }

            .featured-img {
                margin-top: -20px;
                border-radius: 10px;
            }

            h2 {
                font-size: 1.35rem;
            }
        }