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

        body {
            background: #0a0a0a;
            color: #00ff00;
            font-family: 'Courier New', monospace;
            padding: 20px;
            line-height: 1.6;
        }

        .terminal {
            max-width: 900px;
            margin: 0 auto;
            background: #000;
            border: 2px solid #00ff00;
            border-radius: 5px;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
        }

        .terminal-header {
            background: #1a1a1a;
            padding: 10px 15px;
            border-bottom: 1px solid #00ff00;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .btn-red { background: #ff5f56; }
        .btn-yellow { background: #ffbd2e; }
        .btn-green { background: #27c93f; }

        .terminal-title {
            margin-left: 10px;
            font-size: 14px;
            color: #00ff00;
        }

        .terminal-body {
            padding: 20px;
            min-height: 500px;
        }

        .prompt {
            color: #00ff00;
            margin-right: 5px;
        }

        .command {
            color: #00d4ff;
        }

        .output {
            color: #00ff00;
            margin: 10px 0 20px 0;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .section {
            margin-bottom: 30px;
        }

        .section-title {
            color: #ff00ff;
            font-weight: bold;
            margin-bottom: 10px;
            text-decoration: underline;
        }

        .highlight {
            color: #ffff00;
        }

        .link {
            color: #00d4ff;
            text-decoration: none;
            border-bottom: 1px dotted #00d4ff;
        }

        .link:hover {
            color: #ffff00;
            border-bottom-color: #ffff00;
        }

        .ascii-art {
            color: #f803f8;
            font-size: 15px;
            line-height: 1.5;
            margin: 20px 0;
            text-align: center;
        }

        .blink {
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .bullet {
            color: #ff00ff;
            margin-right: 5px;
        }

        .tree-line {
            color: #00ff00;
        }

        .photo-container {
            text-align: center;
            margin: 20px 0;
        }

        .profile-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 3px solid #00ff00;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
            object-fit: cover;
            filter: grayscale(10%) brightness(0.8) contrast(1.2);
        }

        .profile-photo:hover {
            filter: grayscale(0%) brightness(1) contrast(1);
            transition: all 0.3s ease;
        }

        .blog-post {
            background: #0d0d0d;
            border-left: 3px solid #ff00ff;
            padding: 15px;
            margin: 15px 0;
            border-radius: 3px;
        }

        .blog-title {
            color: #ffff00;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .blog-date {
            color: #00d4ff;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .blog-excerpt {
            color: #00ff00;
        }

        .blog-link {
            color: #ff00ff;
            text-decoration: none;
            border-bottom: 1px dotted #ff00ff;
            margin-top: 10px;
            display: inline-block;
        }

        .blog-link:hover {
            color: #ffff00;
            border-bottom-color: #ffff00;
        }

        .typing {
            overflow: hidden;
            white-space: nowrap;
            display: inline-block;
        }

        @media (max-width: 768px) {
            body {
                padding: 10px;
            }
            
            .terminal-body {
                padding: 15px;
                font-size: 14px;
            }
            
            .ascii-art {
                font-size: 8px;
            }

            .profile-photo {
                width: 150px;
                height: 150px;
            }
        }