        @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;
        }
        
        /* Matrix Rain Effect */
        #matrix-canvas {
            position: fixed;
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0.15;
        }
        
        /* 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;
        }
        
        @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);
        }
        
        .nav-menu a:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .nav-menu a:hover:before {
            left: 100%;
        }
        
        /* Main Content */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            min-height: calc(100vh - 200px);
        }
        
        .hero-section {
            text-align: center;
            margin-bottom: 60px;
            padding: 60px 0;
            background: linear-gradient(45deg, rgba(0, 20, 0, 0.8), rgba(0, 40, 0, 0.8));
            border: 1px solid #00ff41;
            border-radius: 10px;
            box-shadow: inset 0 0 50px rgba(0, 255, 65, 0.1);
        }
        
        .hero-title {
            font-family: 'Orbitron', monospace;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 0 20px #00ff41;
            animation: typewriter 3s steps(30, end);
            overflow: hidden;
            white-space: nowrap;
            margin: 0 auto 20px auto;
            width: fit-content;
            border-right: 3px solid #00ff41;
        }
        
        @keyframes typewriter {
            from { width: 0; }
            to { width: 100%; }
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: #88ff88;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeIn 2s ease-in 3s forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .cta-button {
            display: inline-block;
            background: transparent;
            color: #00ff41;
            border: 2px solid #00ff41;
            padding: 15px 30px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button:hover {
            background: #00ff41;
            color: #000;
            box-shadow: 0 0 30px #00ff41;
        }
        
        /* Blog Posts Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .blog-post {
            background: linear-gradient(135deg, rgba(0, 20, 0, 0.9), rgba(0, 40, 0, 0.9));
            border: 1px solid #00ff41;
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .blog-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3);
            border-color: #44ff44;
        }
        
        .blog-post:before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00ff41, #44ff44, #00ff41);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .blog-post:hover:before {
            opacity: 0.3;
        }
        
        .post-date {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .post-title {
            font-family: 'Orbitron', monospace;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #00ff41;
        }
        
        .post-excerpt {
            color: #aaffaa;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .read-more {
            color: #00ff41;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            text-shadow: 0 0 10px #00ff41;
        }
        
        .read-more:after {
            content: '→';
            transition: transform 0.3s ease;
        }
        
        .read-more:hover:after {
            transform: translateX(5px);
        }
        
        /* 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;
        }
        
        .recent-posts, .categories {
            list-style: none;
        }
        
        .recent-posts li, .categories li {
            margin-bottom: 10px;
            padding: 10px;
            background: rgba(0, 255, 65, 0.05);
            border-left: 3px solid #00ff41;
            transition: all 0.3s ease;
        }
        
        .recent-posts li:hover, .categories li:hover {
            background: rgba(0, 255, 65, 0.1);
            padding-left: 15px;
        }
        
        .recent-posts a, .categories a {
            color: #aaffaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .recent-posts a:hover, .categories a:hover {
            color: #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;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        
        .social-links a {
            color: #00ff41;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            text-shadow: 0 0 10px #00ff41;
            transform: scale(1.2);
        }
        
        /* Terminal Effect */
        .terminal {
            background: #000;
            border: 1px solid #00ff41;
            border-radius: 5px;
            padding: 20px;
            margin: 20px 0;
            font-family: 'Source Code Pro', monospace;
            position: relative;
        }
        
        .terminal:before {
            content: 'user@matrix:~$ ';
            color: #00ff41;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-menu {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* 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);
            }
        }