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

        body {
            font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
            line-height: 1.6;
            color: #1e293b;
            background: #0f172a;
            font-size: 14px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Terminal-like Header */
        .header {
            background: #0f172a;
            border-bottom: 1px solid #334155;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }

        .terminal-prompt {
            color: #22c55e;
            font-weight: 600;
        }

        .cursor {
            animation: blink 1s infinite;
            color: #22c55e;
        }

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

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 13px;
        }

        .nav-links a:hover {
            color: #22c55e;
        }

        /* Hero Section */
        .hero {
            background: #0f172a;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .data-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 100;
            background-size: 20px 20px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .terminal-window {
            background: #1e293b;
            border-radius: 8px;
            border: 1px solid #334155;
            overflow: hidden;
            max-width: 800px;
        }

        .terminal-header {
            background: #334155;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .terminal-dots {
            display: flex;
            gap: 6px;
        }

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

        .dot.red { background: #ef4444; }
        .dot.yellow { background: #eab308; }
        .dot.green { background: #22c55e; }

        .terminal-title {
            color: #94a3b8;
            font-size: 12px;
            margin-left: auto;
        }

        .terminal-body {
            padding: 24px;
            font-family: 'SF Mono', Monaco, monospace;
        }

        .code-line {
            display: flex;
            margin-bottom: 8px;
            align-items: center;
        }

        .line-number {
            color: #64748b;
            margin-right: 16px;
            width: 20px;
            text-align: right;
            font-size: 12px;
        }

        .code-content {
            color: #e2e8f0;
            a:link{
                color: #5394ee;
            }
            a:visited{
                color: #5394ee;
            }

        }

        .keyword { color: #22c55e; }
        .string { color: #fbbf24; }
        .comment { color: #64748b; font-style: italic; }
        .function { color: #3b82f6; }

        /* Main Content */
        .main-content {
            background: #0f172a;
        }

        .section {
            padding: 40px 0;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 48px;
        }

        .section-title {
            color: #e2e8f0;
            font-size: 24px;
            font-weight: 600;
        }

        .section-divider {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, #22c55e, transparent);
        }

        /* Experience Timeline */
        .experience-timeline {
            position: relative;
            max-width: 900px;
        }

        .experience-timeline::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #22c55e, #3b82f6);
        }

        .experience-item {
            position: relative;
            margin-bottom: 48px;
            margin-left: 60px;
        }

        .experience-item::before {
            content: '';
            position: absolute;
            left: -46px;
            top: 8px;
            width: 12px;
            height: 12px;
            background: #22c55e;
            border-radius: 50%;
            border: 5px solid #0f172a;
        }

        .experience-card {
            background: rgba(30, 41, 59, 0.8);
            border: 1px solid #334155;
            border-radius: 8px;
            padding: 24px;
            backdrop-filter: blur(10px);
        }

        .experience-card h3 {
            color: #22c55e;
            font-size: 18px;
            margin-bottom: 8px;
        }

        .experience-card .company {
            color: #3b82f6;
            font-size: 16px;
            margin-bottom: 4px;
        }

        .experience-card .period {
            color: #64748b;
            font-size: 12px;
            margin-bottom: 16px;
        }

        .experience-card p {
            color: #cbd5e1;
            line-height: 1.6;
        }

        /* Skills Matrix */
        .skills-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            max-width: 1000px;
        }

        .skill-card {
            background: rgba(30, 41, 59, 0.6);
            border: 1px solid #334155;
            border-radius: 8px;
            padding: 24px;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(to right, #22c55e, #3b82f6);
        }

        .skill-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .skill-icon {
            width: 32px;
            height: 32px;
            background: rgba(34, 197, 94, 0.1);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #22c55e;
        }

        .skill-card h3 {
            color: #e2e8f0;
            font-size: 16px;
        }

        .skill-items {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .skill-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #cbd5e1;
            font-size: 13px;
        }

        .skill-level {
            display: flex;
            gap: 2px;
        }

        .skill-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #374151;
        }

        .skill-dot.active {
            background: #22c55e;
        }

        /* Projects Grid */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 24px;
        }

        .project-card {
            background: rgba(30, 41, 59, 0.6);
            border: 1px solid #334155;
            border-radius: 8px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .project-card:hover {
            border-color: #22c55e;
            transform: translateY(-4px);
        }

        .project-header {
            padding: 20px 24px 16px;
            border-bottom: 1px solid #334155;
        }

        .project-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .project-date {
            color: #64748b;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .project-status {
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .status-published {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
        }

        .status-project {
            background: #49687a;
            color: #e2e8f0;
        }

        .project-title {
            color: #e2e8f0;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.4;
        }

        .project-body {
            padding: 20px 24px;
        }

        .project-description {
            color: #94a3b8;
            font-size: 13px;
            line-height: 1.5;
            margin-bottom: 16px;
            a:link{
                color: #5394ee;
            }
            a:visited{
                color: #5394ee;
            }
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 16px;
        }

        .tech-tag {
            background: rgba(59, 130, 246, 0.1);
            color: #3b82f6;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .project-metrics {
            display: flex;
            gap: 16px;
            font-size: 11px;
        }

        .metric {
            color: #64748b;
        }

        .metric-value {
            color: #22c55e;
            font-weight: 600;
        }

        /* Analytics Dashboard */
        .analytics-section {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid #334155;
            border-radius: 8px;
            padding: 32px;
            margin: 48px 0;
        }

        .dashboard-header {
            display: flex;
            justify-content: between;
            align-items: center;
            margin-bottom: 24px;
        }

        .dashboard-title {
            color: #e2e8f0;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .live-indicator {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
        }

        .stat-card {
            background: rgba(30, 41, 59, 0.4);
            border: 1px solid #374151;
            border-radius: 6px;
            padding: 20px;
            text-align: center;
        }

        .stat-value {
            color: #22c55e;
            font-size: 28px;
            font-weight: 700;
            display: block;
        }

        .stat-label {
            color: #94a3b8;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Contact Section */
         .contact {
            background: #0f172a;
            padding: 120px 0 0 300px;
            position: relative;
            overflow: hidden;
        }
        .contact-terminal {
            background: rgba(30, 41, 59, 0.8);
            border: 1px solid #334155;
            border-radius: 8px;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-body {
            padding: 32px;
        }

        .contact-prompt {
            color: #22c55e;
            margin-bottom: 16px;
        }

        .contact-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-command {
            color: #cbd5e1;
            font-family: 'SF Mono', Monaco, monospace;
            padding: 8px 0;
            border-bottom: 1px solid rgba(51, 65, 85, 0.5);
        }

        .contact-command:last-child {
            border-bottom: none;
        }

        .contact-command .command {
            color: #3b82f6;
        }

        .contact-command .path {
            color: #fbbf24;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .terminal-window { margin: 0 -12px; }
            .projects-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .experience-item { margin-left: 40px; }
        }