    @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Source+Code+Pro:wght@300;400;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: #000;
            color: #00ff41;
            font-family: 'Source Code Pro', monospace;
            overflow-x: hidden;
            position: relative;
            line-height: 1.6;
        }
        
        /* Matrix Rain Effect */
        #matrix-canvas {
            position: fixed;
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0.1;
        }
        
        /* Header */
        .header {
            background: linear-gradient(135deg, #001100 0%, #003300 100%);
            border-bottom: 2px solid #00ff41;
            padding: 20px 0;
            box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            font-weight: 900;
            text-shadow: 0 0 10px #00ff41;
            animation: glow 2s ease-in-out infinite alternate;
            text-decoration: none;
            color: #00ff41;
        }
        
        @keyframes glow {
            from { text-shadow: 0 0 10px #00ff41; }
            to { text-shadow: 0 0 20px #00ff41, 0 0 30px #00ff41; }
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-menu a {
            color: #00ff41;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            padding: 10px 15px;
            border: 1px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .nav-menu a:hover {
            border-color: #00ff41;
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
            background: rgba(0, 255, 65, 0.1);
        }
        
        /* Main Content */
        .main-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
            min-height: calc(100vh - 200px);
        }
        
        /* Breadcrumb */
        .breadcrumb {
            margin-bottom: 30px;
            color: #888;
            font-size: 0.9rem;
        }
        
        .breadcrumb a {
            color: #00ff41;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .breadcrumb a:hover {
            text-shadow: 0 0 5px #00ff41;
        }
        
        .breadcrumb span {
            margin: 0 10px;
        }
        
        /* Article */
        .article {
            background: linear-gradient(135deg, rgba(0, 20, 0, 0.9), rgba(0, 40, 0, 0.9));
            border: 1px solid #00ff41;
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .article:before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00ff41, #44ff44, #00ff41);
            z-index: -1;
            opacity: 0.1;
            animation: borderGlow 3s ease-in-out infinite alternate;
        }
        
        @keyframes borderGlow {
            from { opacity: 0.1; }
            to { opacity: 0.3; }
        }
        
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            border-bottom: 2px solid #00ff41;
            padding-bottom: 30px;
        }
        
        .article-date {
            color: #888;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .article-date:before,
        .article-date:after {
            content: '';
            width: 50px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00ff41, transparent);
        }
        
        .article-title {
            font-family: 'Orbitron', monospace;
            font-size: 2.8rem;
            font-weight: 700;
            color: #00ff41;
            text-shadow: 0 0 15px #00ff41;
            margin-bottom: 20px;
            animation: titleGlow 2s ease-in-out infinite alternate;
        }
        
        @keyframes titleGlow {
            from { text-shadow: 0 0 15px #00ff41; }
            to { text-shadow: 0 0 25px #00ff41, 0 0 35px #00ff41; }
        }
        
        .article-meta {
            color: #aaffaa;
            font-size: 1rem;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* Article Content */
        .article-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #ccffcc;
        }
        
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
        }
        
        .article-content h2 {
            font-family: 'Orbitron', monospace;
            color: #00ff41;
            font-size: 1.8rem;
            margin: 40px 0 20px 0;
            text-shadow: 0 0 10px #00ff41;
            border-left: 4px solid #00ff41;
            padding-left: 20px;
        }
        
        .article-content h3 {
            font-family: 'Orbitron', monospace;
            color: #44ff44;
            font-size: 1.4rem;
            margin: 30px 0 15px 0;
            text-shadow: 0 0 8px #44ff44;
        }
        
        .article-content blockquote {
            background: rgba(0, 255, 65, 0.05);
            border-left: 4px solid #00ff41;
            padding: 20px;
            margin: 30px 0;
            font-style: italic;
            position: relative;
            border-radius: 0 5px 5px 0;
        }
        
        .article-content blockquote:before {
            content: '"';
            font-size: 3rem;
            color: #00ff41;
            position: absolute;
            top: -10px;
            left: 10px;
            opacity: 0.5;
        }
        
        .article-content code {
            background: #001100;
            color: #00ff41;
            padding: 2px 6px;
            border-radius: 3px;
            font-family: 'Source Code Pro', monospace;
            border: 1px solid rgba(0, 255, 65, 0.3);
        }
        
        .article-content pre {
            background: #001100;
            border: 1px solid #00ff41;
            border-radius: 5px;
            padding: 20px;
            margin: 20px 0;
            overflow-x: auto;
            position: relative;
        }
        
        .article-content pre:before {
            content: 'user@matrix:~$ ';
            color: #00ff41;
            font-weight: bold;
        }
        
        .article-content ul, .article-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .article-content li {
            margin-bottom: 10px;
            position: relative;
        }
        
        .article-content ul li:before {
            content: '▸';
            color: #00ff41;
            position: absolute;
            left: -20px;
        }
        
        /* Special Matrix Elements */
        .matrix-quote {
            background: linear-gradient(45deg, rgba(0, 20, 0, 0.8), rgba(0, 40, 0, 0.8));
            border: 1px solid #00ff41;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .matrix-quote:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
            animation: scan 3s linear infinite;
        }
        
        @keyframes scan {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .matrix-quote p {
            font-family: 'Orbitron', monospace;
            font-size: 1.3rem;
            color: #00ff41;
            text-shadow: 0 0 10px #00ff41;
            margin: 0;
        }
        
        /* Navigation */
        .post-navigation {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 40px 0;
        }
        
        .nav-link {
            background: linear-gradient(135deg, rgba(0, 15, 0, 0.9), rgba(0, 30, 0, 0.9));
            border: 1px solid #00ff41;
            border-radius: 10px;
            padding: 20px;
            text-decoration: none;
            color: #00ff41;
            transition: all 0.3s ease;
            display: block;
            text-align: center;
        }
        
        .nav-link:hover {
            background: rgba(0, 255, 65, 0.1);
            box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
        }
        
        .nav-link.prev:before {
            content: '← ';
        }
        
        .nav-link.next:after {
            content: ' →';
        }
        
        /* Comments Section */
        .comments-section {
            background: linear-gradient(135deg, rgba(0, 15, 0, 0.9), rgba(0, 30, 0, 0.9));
            border: 1px solid #00ff41;
            border-radius: 10px;
            padding: 40px;
            margin-top: 40px;
        }
        
        .comments-title {
            font-family: 'Orbitron', monospace;
            color: #00ff41;
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 1px solid #00ff41;
            padding-bottom: 15px;
        }
        
        .comment {
            background: rgba(0, 255, 65, 0.05);
            border-left: 3px solid #00ff41;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 0 5px 5px 0;
        }
        
        .comment-author {
            color: #00ff41;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .comment-date {
            color: #888;
            font-size: 0.9rem;
            margin-left: 10px;
        }
        
        .comment-text {
            color: #aaffaa;
            line-height: 1.6;
        }
        
        /* Sidebar */
        .sidebar {
            background: linear-gradient(135deg, rgba(0, 15, 0, 0.9), rgba(0, 30, 0, 0.9));
            border: 1px solid #00ff41;
            border-radius: 10px;
            padding: 30px;
            margin-top: 40px;
        }
        
        .sidebar h3 {
            font-family: 'Orbitron', monospace;
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #00ff41;
            text-align: center;
            border-bottom: 1px solid #00ff41;
            padding-bottom: 10px;
        }
        
        .related-posts {
            list-style: none;
        }
        
        .related-posts li {
            margin-bottom: 15px;
            padding: 15px;
            background: rgba(0, 255, 65, 0.05);
            border-left: 3px solid #00ff41;
            transition: all 0.3s ease;
            border-radius: 0 5px 5px 0;
        }
        
        .related-posts li:hover {
            background: rgba(0, 255, 65, 0.1);
            padding-left: 20px;
        }
        
        .related-posts a {
            color: #aaffaa;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            font-weight: 500;
        }
        
        .related-posts a:hover {
            color: #00ff41;
        }
        
        .related-posts .post-date {
            color: #666;
            font-size: 0.8rem;
            margin-top: 5px;
        }
        
        /* Tags */
        .tags {
            margin: 30px 0;
            text-align: center;
        }
        
        .tags h4 {
            color: #00ff41;
            margin-bottom: 15px;
            font-family: 'Orbitron', monospace;
        }
        
        .tag {
            display: inline-block;
            background: rgba(0, 255, 65, 0.1);
            color: #00ff41;
            padding: 8px 15px;
            margin: 5px;
            border: 1px solid #00ff41;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background: #00ff41;
            color: #000;
            box-shadow: 0 0 15px #00ff41;
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #001100 0%, #003300 100%);
            border-top: 2px solid #00ff41;
            padding: 30px 0;
            text-align: center;
            margin-top: 60px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer p {
            color: #888;
            margin-bottom: 10px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-menu {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .article-title {
                font-size: 2rem;
            }
            
            .article {
                padding: 20px;
            }
            
            .post-navigation {
                grid-template-columns: 1fr;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
        }
        
        /* Glitch Effect */
        .glitch {
            animation: glitch 2s linear infinite;
        }
        
        @keyframes glitch {
            2%, 64% {
                transform: translate(2px, 0) skew(0deg);
            }
            4%, 60% {
                transform: translate(-2px, 0) skew(0deg);
            }
            62% {
                transform: translate(0, 0) skew(5deg);
            }
        }