        :root {
            --bg-dark: #121212;
            --bg-light: #1e1e1e;
            --border-color: #333;
            --text-primary: #e0e0e0;
            --text-secondary: #aaa;
            --accent-purple: #bb86fc;
            --accent-green: #4CAF50;
            --accent-red: #f44336;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-primary);
            margin: 0;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .container {
            width: 95%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }
        
        header {
            background-color: var(--bg-light);
            padding: 0.8rem 1rem;
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        header .container {
             display: flex;
             justify-content: flex-end;
             align-items: center;
             padding: 0;
             position: relative;
             height: 70px;
        }
        .logo { 
            position: absolute;
            left: 0;
            top: 5px;
            height: 100px; 
            width: auto;
            z-index: 200;
        }
        
        @media (max-width: 480px) {
            .logo {
                height: 75px;
            }
        }
        
        .hamburger-menu {
            width: 40px; height: 40px; background: none; border: none;
            display: flex; flex-direction: column; justify-content: space-around;
            padding: 8px; cursor: pointer; z-index: 1001;
        }
        .hamburger-menu span {
            width: 100%; height: 3px; background-color: var(--text-primary);
            border-radius: 2px; transition: all 0.3s ease;
        }
        .menu-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 999;
        }
        .slide-out-menu {
            position: fixed; top: 0; right: 0; width: 280px; height: 100%;
            background-color: var(--bg-light); transform: translateX(100%);
            transition: transform 0.3s ease; z-index: 1000;
            display: flex; flex-direction: column; padding: 2rem;
            box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        }
        .slide-out-menu .close-btn {
            position: absolute; top: 20px; right: 20px;
            background: none; border: none; color: var(--text-primary);
            font-size: 2.5rem; cursor: pointer; line-height: 1;
        }
        .close-btn:hover {transform: scale(1.1);}
        .slide-out-menu ul { list-style: none; padding: 0; margin-top: 4rem; }
        .slide-out-menu ul li a {
            color: var(--accent-purple); text-decoration: none; font-size: 1.5rem;
            padding: 1rem 0; display: block; transition: color 0.2s;
        }
        .slide-out-menu ul li a:hover { color: var(--text-primary); }
        body.menu-open { overflow: hidden; }
        body.menu-open .menu-overlay { opacity: 1; visibility: visible; }
        body.menu-open .slide-out-menu { transform: translateX(0); }
        body.menu-open .hamburger-menu span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        body.menu-open .hamburger-menu span:nth-child(2) { opacity: 0; }
        body.menu-open .hamburger-menu span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

        main {
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
        }
        
        .animated-border-box {
            position: relative; padding: 3px;
            border-radius: 12px; overflow: hidden; background: transparent;
            width: 100%; max-width: 800px;
        }
        .animated-border-box::before {
            content: '';
            position: absolute; top: -50%; left: -50%;
            width: 200%; height: 200%; z-index: 1;
            background: conic-gradient(from 0deg, #007bff, #dc3545, #007bff);
            animation: rotate 6s linear infinite;
        }
        @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

        .content-box {
            position: relative; z-index: 2;
            background-color: var(--bg-light); border-radius: 10px;
            padding: 2.5rem;
        }
        .content-box h1 { 
            margin-top: 0; 
            color: var(--accent-purple);
            text-align: center;
            font-size: 2em;
            margin-bottom: 2rem;
        }
        .content-box h2 {
            color: var(--accent-teal);
            font-size: 1.5em;
            margin-top: 2rem;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 0.5rem;
        }
        .content-box p { 
            color: var(--text-secondary); 
            line-height: 1.6;
            text-align: justify;
        }

        
        .align-left {
            display: block; 
            margin-left: 0;
            margin-right: auto;
        }
        .align-center {
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        .align-right {
            display: block;
            margin-left: auto;
            margin-right: 0;
        }
        

        .blog-image {
            width: 60%; 
            height: auto;
            border-radius: 8px;
            
            margin-top: 1.5rem;
            margin-bottom: 1.5rem;
        }        

        
        @media (max-width:480px){
            .blog-image {
                width: 100%; 
                height: auto;
                border-radius: 8px;
                margin: 1.5rem 0;
                
            }
            
            .align-left, .align-center, .align-right {
                display: block;
                margin-left: auto;
                margin-right: auto;
            }

            .content-box h1 { 
                margin-top: 0; 
                color: var(--accent-purple);
                text-align: center;
                font-size: 1.5em;
                margin-bottom: 2rem;
            }
            .content-box h2 {
                color: var(--accent-teal);
                font-size: .9em;
                margin-top: 2rem;
                border-bottom: 1px solid var(--border-color);
                padding-bottom: 0.5rem;
            }
            .content-box {
                position: relative; z-index: 2;
                background-color: var(--bg-light); border-radius: 10px;
                padding: .9rem;
                font-size: .9rem
            }
        }
