:root {
            --primary: #4361ee;
            --secondary: #3a0ca3;
            --accent: #4cc9f0;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --shadow: 0 10px 30px rgba(0,0,0,0.08);
            --radius: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }

        /* Container for the whole blog post area */
.post-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
    color: #e0e0e0; /* Off-white for better readability on black */
    line-height: 1.8; /* Increases spacing between lines */
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Styling the headers */
h1, h2, h3 {
    color: #ffffff;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* The body text */
p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 300;
    text-align: justify; /* Optional: keeps the edges clean */
}

/* Highlights for specific terms (like "Native to Asia") */
.highlight-text {
    color: #a0a0a0;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: block;
    margin-top: 2rem;
}

/* Subtle divider between sections */
hr {
    border: 0;
    border-top: 1px solid #333;
    margin: 40px 0;
}


        /* Modern navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 1rem 5%;
            box-shadow: var(--shadow);
        }

        .logo {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }



        /* Dark mode support */
        @media (prefers-color-scheme: dark) {
            :root {
                --light: #121212;
                --dark: #f8f9fa;
            }

            body {
                background: var(--light);
                color: var(--dark);
            }

            nav {
                background: rgba(18, 18, 18, 0.95);
            }
        }

        header {
            background: linear-gradient(135deg, #2e2e2e 0%, #1f2125 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 40px;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }


        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 60px;
        }

        .social-icons {
            margin: 20px 0;
        }

        .social-icons a {
            color: white;
            font-size: 20px;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: #6a11cb;
        }

        .copyright {
            margin-top: 20px;
            font-size: 14px;
            opacity: 0.7;
        }
