        /* Shared Variables */
        :root {
            --primary: #00FF41;
            --primary-dark: #00D635;
            --secondary: #0D0208;
            --accent: #FF073A;
            --text-primary: #E5E5E5;
            --text-secondary: #888888;
            --background: #0A0A0A;
            --background-alt: #151515;
            --success: #00FF41;
            --warning: #FFD700;
            --error: #FF073A;
            --info: #00BFFF;
            --glow: 0 0 10px rgba(0, 255, 65, 0.5);
            --glow-strong: 0 0 20px rgba(0, 255, 65, 0.8);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --container-width: 1200px;
            --border-radius: 4px;
            --section-spacing: 100px;
        }

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

        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            background: var(--background);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Common Loader */
        .common-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--background);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .common-loader.active {
            display: flex;
            opacity: 1;
        }

        .common-loader-content {
            width: 100%;
            max-width: 500px;
            padding: 20px;
        }

        .common-loader .terminal {
            background: var(--background-alt);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .common-loader .terminal-header {
            background: var(--secondary);
            padding: 10px 15px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(0, 255, 65, 0.2);
        }

        .common-loader .terminal-button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 8px;
        }

        .common-loader .terminal-title {
            color: var(--text-primary);
            font-size: 0.9rem;
            margin-left: 10px;
            font-family: 'Source Code Pro', monospace;
        }

        .common-loader .terminal-body {
            padding: 20px;
            font-family: 'Source Code Pro', monospace;
        }

        .common-loader .status-line {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .common-loader .progress-bar {
            width: 100%;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
            overflow: hidden;
            margin-top: 20px;
        }

        .common-loader .progress {
            height: 100%;
            background: var(--primary);
            width: 0%;
            transition: width 0.5s ease;
        }

        /* Matrix Background for selector */
        .matrix-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.08;
            z-index: 1;
        }

        /* View Selection Screen */
        .view-selector {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--background);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.6s ease;
        }

        .selector-content {
            text-align: center;
            max-width: 800px;
            padding: 2rem;
            position: relative;
            z-index: 10;
        }

        .selector-title {
            font-family: 'Source Code Pro', monospace;
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
            text-shadow: var(--glow);
        }

        .selector-subtitle {
            font-family: 'Source Code Pro', monospace;
            color: var(--text-secondary);
            font-size: 1.2rem;
            margin-bottom: 3rem;
        }

        .view-options {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .view-option {
            background: rgba(0, 255, 65, 0.05);
            border: 2px solid var(--primary);
            border-radius: 8px;
            padding: 2rem;
            width: 300px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            color: inherit;
            position: relative;
            z-index: 10;
        }

        .view-option:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-strong);
            background: rgba(0, 255, 65, 0.1);
        }

        .option-icon {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .option-title {
            font-family: 'Source Code Pro', monospace;
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .option-description {
            font-family: 'Source Code Pro', monospace;
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* ===== TERMINAL STYLES ===== */
        .terminal-mode {
            font-family: 'Source Code Pro', monospace;
        }

        .terminal-interface {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--background);
            z-index: 1000;
            display: none;
            flex-direction: column;
            overflow: hidden;
        }

        .terminal-top-bar {
            background: var(--background-alt);
            padding: 10px 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid var(--primary);
            box-shadow: 0 2px 15px rgba(0, 255, 65, 0.3);
        }

        .terminal-window-controls {
            display: flex;
            align-items: center;
        }

        .terminal-window-button {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            margin-right: 8px;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .terminal-window-button:hover {
            transform: scale(1.2);
            box-shadow: var(--glow);
        }

        .terminal-window-title {
            color: var(--text-primary);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .terminal-content {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            background: var(--background);
            font-size: 1.1rem;
        }

        .terminal-input-container {
            display: flex;
            align-items: center;
            margin: 8px 0;
            animation: fadeIn 0.3s ease-in;
        }

        .terminal-prompt {
            color: var(--primary);
            margin-right: 8px;
            white-space: nowrap;
            text-shadow: var(--glow);
            font-weight: 500;
            font-size: 1.1rem;
        }

        .terminal-input {
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-family: 'Source Code Pro', monospace;
            font-size: 1.1rem;
            width: 100%;
            outline: none;
            caret-color: var(--primary);
        }

        .terminal-cursor {
            background: var(--primary);
            width: 8px;
            height: 18px;
            display: inline-block;
            animation: blink 1s infinite;
            margin-left: 2px;
        }

        .terminal-output {
            margin-bottom: 12px;
            line-height: 1.4;
            white-space: pre-wrap;
            font-size: 0.9rem;
        }

        .ascii-art {
            color: var(--primary);
            font-size: 1rem;
            line-height: 1.3;
            margin: 15px 0;
            text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
            white-space: pre-wrap;   /* ✅ allow wrapping instead of scrolling */
            overflow-x: hidden;      /* ✅ remove horizontal scrollbar */
            word-break: break-word;  /* ✅ break long text if needed */
            font-weight: 400;
            font-family: 'Source Code Pro', monospace;
            display: block;          /* ✅ flex not needed here */

        }

        .command-line {
            color: var(--primary);
        }

        .error {
            color: var(--error);
            font-size: 1.1rem;
        }

        /* ===== GUI STYLES ===== */
        .gui-mode {
            font-family: 'Roboto Mono', monospace;
        }

        .gui-interface {
            display: none;
        }

        /* Container */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 255, 65, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            position: relative;
            border-bottom: 1px solid rgba(0, 255, 65, 0.1);
        }

        .logo {
            font-size: 1.5rem;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 101;
            cursor: pointer;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            transition: var(--transition);
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
            box-shadow: var(--glow);
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 101;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(13, 2, 8, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 7, 58, 0.1) 0%, transparent 50%);
            z-index: 1;
            animation: pulse 10s ease-in-out infinite;
        }

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

        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 255, 65, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 65, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
            padding-top: 100px;
            padding-bottom: 100px;
        }

        .hero-profile {
            position: relative;
            width: 200px;
            height: 200px;
            margin: 0 auto 2.5rem;
        }

        .hero-img-wrapper {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-img-wrapper::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: conic-gradient(transparent, transparent, transparent, var(--primary));
            animation: rotate-border 4s linear infinite;
        }

        .hero-img-wrapper::after {
            content: '';
            position: absolute;
            inset: 5px;
            background: var(--background);
            border-radius: 50%;
            z-index: 1;
        }

        .profile-img {
            position: relative;
            width: 94%;
            height: 94%;
            border-radius: 50%;
            overflow: hidden;
            z-index: 2;
            background: linear-gradient(45deg, var(--primary-dark), var(--primary));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .profile-img i {
            font-size: 4rem;
            color: var(--background);
        }

        .hero-name {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: 700;
            text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
            letter-spacing: 1px;
        }

        .hero-title-container {
            min-height: 60px;
            margin-bottom: 2rem;
        }

        .hero-title {
            font-size: 1.8rem;
            color: var(--primary);
            display: inline-block;
            position: relative;
        }

        .typed-cursor {
            font-size: 2rem;
            color: var(--primary);
            animation: blink 1s infinite;
        }

        .hero-description {
            max-width: 600px;
            margin: 0 auto 2.5rem;
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.8rem 1.8rem;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--background);
            border: 1px solid var(--primary);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--primary);
            box-shadow: var(--glow);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--background);
            box-shadow: var(--glow);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            min-width: 150px;
            background: rgba(0, 255, 65, 0.05);
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 255, 65, 0.1);
        }

        .stat-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 0.8rem;
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.3rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }

        .mouse {
            width: 24px;
            height: 40px;
            border: 2px solid var(--text-secondary);
            border-radius: 12px;
            position: relative;
            margin: 0 auto;
        }

        .wheel {
            width: 4px;
            height: 8px;
            background: var(--primary);
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll 2s infinite;
        }

        /* About Section */
        #about {
            padding: var(--section-spacing) 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .section-title p {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2rem;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .about-stat {
            text-align: center;
            padding: 1.5rem;
            background: rgba(0, 255, 65, 0.1);
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 255, 65, 0.2);
        }

        .about-stat i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .about-stat h4 {
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .about-stat p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin: 0;
        }

        .about-image {
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
        }

        .about-image-wrapper {
            width: 300px;
            height: 300px;
            margin: 0 auto;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--primary);
            box-shadow: var(--glow);
        }

        .about-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .tech-stack {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .tech-stack i {
            font-size: 2.5rem;
            color: var(--primary);
        }

        /* tech-stack-icons */
        .tech-stack-icons {
            grid-template-columns: 1fr;
            background: rgba(0, 255, 65, 0.1);
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 255, 65, 0.2);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            flex-direction: column;
            gap: 0.5rem;
            padding: 1rem;
        }

        /* Skills Section */
        #skills {
            padding: var(--section-spacing) 0;
            background: var(--background-alt);
        }

        .skills-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .skill-category h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .skill-item {
            margin-bottom: 1.5rem;
        }

        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .skill-info h4 {
            color: var(--text-primary);
            font-size: 1.1rem;
        }

        .skill-info span {
            color: var(--primary);
        }

        .skill-bar {
            height: 6px;
            background: var(--secondary);
            border-radius: 3px;
            overflow: hidden;
        }

        .skill-level {
            height: 100%;
            background: var(--primary);
            border-radius: 3px;
            position: relative;
            width: 0;
            transition: width 1.5s ease;
        }

        /* Projects Section */
        #projects {
            padding: var(--section-spacing) 0;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background: var(--background-alt);
            border-radius: var(--border-radius);
            overflow: hidden;
            border: 1px solid rgba(0, 255, 65, 0.1);
            transition: var(--transition);
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow);
            border-color: var(--primary);
        }

        .project-img {
            width: 100%;
            height: 200px;
            background: var(--secondary);
            position: relative;
            overflow: hidden;
        }

        .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .project-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            height: calc(100% - 200px);
            justify-content: space-between;
        }

        .project-title {
            font-size: 1.3rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .project-description {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .project-tech span {
            background: rgba(0, 255, 65, 0.1);
            color: var(--primary);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        .project-links {
            display: flex;
            gap: 1rem;
            margin-top: auto;
        }

        .project-links a {
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .project-links a:hover {
            color: var(--text-primary);
        }

        /* Contact Section */
        #contact {
            padding: var(--section-spacing) 0;
            background: var(--background-alt);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(0, 255, 65, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            color: var(--text-primary);
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }

        .contact-details p, .contact-details a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1rem;
            cursor: pointer;
        }

        .contact-details a:hover {
            color: var(--primary);
        }

        .contact-form {
            background: var(--background);
            padding: 2rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 255, 65, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            background: var(--secondary);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            color: var(--text-primary);
            font-family: 'Roboto Mono', monospace;
            transition: var(--transition);
            font-size: 1rem;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: var(--glow);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--primary);
            color: var(--background);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-family: 'Roboto Mono', monospace;
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
        }

        .submit-btn:hover {
            box-shadow: var(--glow);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background: var(--background);
            padding: 1rem 0;
            text-align: center;
            border-top: 1px solid rgba(0, 255, 65, 0.1);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            margin-top: 1rem;

        }

        .social-links a {
            color: var(--text-secondary);
            font-size: 1.5rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .social-links a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            border-top: 1px solid rgba(0, 255, 65, 0.1);
            padding-top: 1rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(5px); }
            to { opacity: 1; transform: translateY(0); }
        }

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

        @keyframes rotate-border {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes scroll {
            0% { opacity: 0; transform: translateX(-50%) translateY(0); }
            50% { opacity: 1; }
            100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .view-options {
                flex-direction: column;
                align-items: center;
            }
            
            .view-option {
                width: 100%;
                max-width: 300px;
            }
            
            .selector-title {
                font-size: 2rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .about-image-wrapper {
                width: 250px;
                height: 250px;
            }
            
            .hero-name {
                font-size: 3rem;
            }
            
            .hero-title {
                font-size: 1.5rem;
            }
            
            .hero-stats {
                gap: 2rem;
            }
            
            .stat-item {
                min-width: 120px;
                padding: 1rem;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }

            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--background);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 2rem 0;
                transition: var(--transition);
                z-index: 100;
            }
            
            .nav-links.active {
                left: 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-name {
                font-size: 2.5rem;
            }
            
            .hero-title {
                font-size: 1.3rem;
            }
            
            .hero-profile {
                width: 170px;
                height: 170px;
            }
            
            .profile-img i {
                font-size: 3rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            /* Terminal responsive adjustments */
            .terminal-content {
                font-size: 1rem;
                padding: 15px;
            }
            
            .terminal-input, .terminal-prompt {
                font-size: 1rem;
            }
            
            .ascii-art {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .hero-name {
                font-size: 2rem;
            }
            
            .hero-title {
                font-size: 1.1rem;
            }
            
            .hero-description {
                font-size: 1rem;
                padding: 0 1rem;
                text-align: center;
                margin-bottom: 2rem;
                line-height: 1.6;
                max-width: 100%;
                box-sizing: border-box;
                color: var(--text-secondary);
                font-weight: 400;
            }
            
            .hero-profile {
                width: 150px;
                height: 150px;
            }
            
            .nav-links {
                top: 70px;
                height: calc(100vh - 70px);
            }

            .hero-stats {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-item {
                width: 100%;
                max-width: 200px;
            }

            /* Terminal mobile adjustments */
            .terminal-content {
                font-size: 0.9rem;
            }
            
            .terminal-input, .terminal-prompt {
                font-size: 0.9rem;
            }
            
            .ascii-art {
                font-size: 0.8rem;
            }
        }
