        /* ===== MODERN GLASSMORPHISM DESIGN ===== */
        :root {
            --bg-primary: linear-gradient(135deg, #0a0b1e 0%, #1a1f3a 50%, #2d3561 100%);
            --bg-secondary: rgba(255, 255, 255, 0.05);
            --surface: rgba(255, 255, 255, 0.08);
            --surface-hover: rgba(255, 255, 255, 0.12);
            --surface-accent: rgba(96, 165, 250, 0.1);
            --border: rgba(255, 255, 255, 0.15);
            --border-accent: rgba(96, 165, 250, 0.4);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.75);
            --text-muted: rgba(255, 255, 255, 0.5);
            --accent: #60a5fa;
            --accent-light: #93c5fd;
            --accent-bright: #3b82f6;
            --success: #34d399;
            --warning: #fbbf24;
            --danger: #f87171;
            --glow: 0 0 20px rgba(96, 165, 250, 0.3);
            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --brutal-shadow: 4px 4px 0px rgba(96, 165, 250, 0.6);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            display: flex;
            min-height: 100vh;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(52, 211, 153, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(251, 191, 36, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        /* ===== GLASSMORPHISM SIDEBAR ===== */
        .sidebar {
            width: 280px;
            background: var(--surface);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-right: 2px solid var(--border);
            box-shadow: var(--glass-shadow);
            height: 100vh;
            position: fixed;
            left: 0;
            top: 0;
            display: flex;
            flex-direction: column;
            z-index: 100;
            padding: 2rem 1.5rem;
            overflow: hidden;
        }

        .profile-section {
            text-align: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .logo-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 3px solid var(--border);
            transition: all 0.3s ease;
            background: var(--surface);
            margin: 0 auto 1rem;
        }
        
        .profile-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }
        
        .profile-status {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--success);
            animation: pulse 2s infinite;
        }

        .logo-icon:hover {
            border-color: var(--accent);
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .nav-section {
            flex: 1;
            margin-bottom: 1rem;
        }
        
        .nav-title {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            padding-left: 0.5rem;
        }

        .nav-links {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .nav-links li {
            list-style: none;
            width: 100%;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.75rem 1rem;
            width: 100%;
            border-radius: 8px;
            gap: 0.75rem;
        }

        .nav-links a.active {
            color: var(--accent);
            background: var(--surface-hover);
        }

        .nav-links a:hover {
            color: var(--accent);
            background: var(--surface-hover);
        }

        .nav-links i {
            font-size: 1.1rem;
            color: inherit;
            transition: all 0.2s ease;
            width: 20px;
            text-align: center;
        }

        .nav-links a:hover i,
        .nav-links a.active i {
            color: inherit;
        }

        .social-section {
            margin-top: auto;
        }
        
        .social-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            background: var(--surface-light);
            color: var(--text-secondary);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
            text-decoration: none;
        }

        .social-links a:hover {
            color: var(--accent);
            background: var(--surface-hover);
            border-color: var(--accent);
            transform: translateX(5px);
        }

        .social-links a i {
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        /* ===== CONTENT ===== */
        .content {
            flex: 1;
            margin-left: 280px;
            padding: 0;
            width: calc(100% - 280px);
            height: 100vh;
            overflow: hidden;
            position: relative;
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
            font-weight: 600;
            text-align: center;
        }


        section {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 4rem 2rem 12rem;
            box-sizing: border-box;
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            background: var(--bg-primary);
            color: var(--text-primary);
        }

        section.active {
            opacity: 1;
            visibility: visible;
            animation: fadeInSlide 0.6s ease-out;
        }

        @keyframes fadeInSlide {
            0% { 
                opacity: 0; 
                transform: translateX(30px) scale(0.95);
                filter: blur(10px);
            }
            100% { 
                opacity: 1; 
                transform: translateX(0) scale(1);
                filter: blur(0);
            }
        }
        
        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 8px 32px var(--accent-glow);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 12px 40px var(--accent-glow);
            }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* ===== MODERN HERO SECTION ===== */
        .hero {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: calc(100vh - 80px);
            padding: 2rem;
        }
        
        .hero-container {
            max-width: 900px;
            width: 100%;
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.1;
        }
        
        .highlight {
            color: var(--accent);
            position: relative;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        
        .hero-description {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .stat-card {
            background: var(--surface);
            backdrop-filter: blur(15px);
            border: 2px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem 1rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: var(--glass-shadow);
            position: relative;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--accent), var(--accent-bright), var(--success));
            border-radius: 16px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: var(--brutal-shadow), var(--glow);
            border-color: var(--accent);
        }
        
        .stat-card:hover::before {
            opacity: 0.3;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .intro h3 {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .intro h1 {
            font-size: 3.5rem; /* Slightly smaller */
            margin-bottom: 1rem;
            line-height: 1.1;
            font-weight: 700;
        }

        .intro h1 span {
            color: var(--accent);
            position: relative;
        }

        .intro h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(106, 106, 240, 0.3);
            z-index: -1;
        }

        .intro h2 {
            font-weight: 300;
            font-size: 1.8rem; /* Slightly smaller */
            color: var(--text-secondary);
            margin-bottom: 2rem; /* Reduced space */
            letter-spacing: 1px;
        }

        .about-text p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.8rem; /* Reduced space */
        }

        .about-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem; /* Reduced gap */
            max-width: 700px;
        }

        .detail {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem;
            background: var(--surface);
            border-radius: 8px;
            border: 1px solid var(--border);
            transition: all 0.2s ease;
        }

        .detail:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-lg);
            background: var(--surface-hover);
        }

        .detail i {
            font-size: 1.8rem;
            color: var(--accent);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(106, 106, 240, 0.1);
            border-radius: 50%;
        }

        .detail div {
            display: flex;
            flex-direction: column;
        }

        .detail strong {
            font-size: 0.9rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .detail span {
            font-size: 1.2rem;
            font-weight: 500;
        }

        /* ===== MODERN SECTIONS ===== */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }
        
        .section-header p {
            font-size: 1.2rem;
            color: var(--text-secondary);
        }
        
        /* Tech Categories */
        .tech-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .tech-category {
            background: var(--surface);
            backdrop-filter: blur(15px);
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: var(--glass-shadow);
            position: relative;
            overflow: hidden;
        }
        
        .tech-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--surface-accent), transparent);
            transition: left 0.6s ease;
        }
        
        .tech-category:hover {
            transform: translateY(-5px) rotate(-1deg);
            box-shadow: var(--brutal-shadow), var(--glow);
            border-color: var(--accent);
        }
        
        .tech-category:hover::before {
            left: 100%;
        }
        
        .tech-category h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .tech-category h3 i {
            color: var(--accent);
            font-size: 1.1rem;
        }
        
        .tech-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .tech-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        
        .tech-item:hover {
            background: var(--bg-secondary);
            transform: translateX(5px);
        }
        
        .tech-item img {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
        }
        
        .tech-info {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        
        .tech-name {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .tech-level {
            font-size: 0.8rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Learning Grid */
        .learning-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .learning-card {
            background: var(--surface);
            backdrop-filter: blur(15px);
            border: 2px solid var(--border);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: var(--glass-shadow);
            position: relative;
        }
        
        .learning-card:hover {
            transform: translateY(-8px) rotate(1deg) scale(1.02);
            box-shadow: var(--brutal-shadow), var(--glow);
            border-color: var(--accent-bright);
        }
        
        .learning-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .learning-header i {
            font-size: 1.5rem;
            color: var(--accent);
        }
        
        .learning-header h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .learning-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        /* Learning Status Badges */
        .learning-status {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .status-badge {
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .status-badge.beginner {
            background: rgba(255, 215, 0, 0.2);
            border-color: var(--warning);
            color: var(--warning);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        
        .status-badge.exploring {
            background: rgba(0, 255, 136, 0.2);
            border-color: var(--success);
            color: var(--success);
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
        }
        
        .status-badge:hover {
            transform: scale(1.1);
            box-shadow: 0 0 25px currentColor;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1.2rem; /* Reduced gap */
        }

        .skill-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.2s ease;
            text-align: center;
        }

        .skill-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-lg);
        }

        .skill-item img {
            width: 50px;
            height: 50px;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .skill-item:hover img {
            transform: scale(1.15);
        }

        .skill-item span {
            font-size: 1.1rem;
            text-align: center;
            font-weight: 500;
        }

        /* Learning Section */
        #learning {
            text-align: center;
            padding: 4rem 2rem;
        }
        
        .learning-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .learning-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem;
            transition: all 0.2s ease;
            text-align: center;
        }

        .learning-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-lg);
        }

        .icon-container {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--surface-hover);
            border: 1px solid var(--border);
            border-radius: 50%;
            margin: 0 auto 1rem;
            transition: all 0.2s ease;
        }

        .learning-item:hover .icon-container {
            border-color: var(--accent);
        }

        .learning-item i {
            font-size: 1.5rem;
            color: var(--accent);
        }

        .learning-item h3 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem; /* Reduced space */
            color: var(--text-primary);
        }

        .learning-item p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Fitness Section */
        #fitness {
            text-align: center;
            padding: 4rem 2rem;
        }
        
        .fitness-grid, .interests-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .fitness-card, .interest-card {
            background: var(--surface);
            backdrop-filter: blur(15px);
            border: 2px solid var(--border);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: var(--glass-shadow);
            position: relative;
        }

        .fitness-card:hover, .interest-card:hover {
            transform: translateY(-8px) rotate(1deg) scale(1.02);
            box-shadow: var(--brutal-shadow), var(--glow);
            border-color: var(--accent-bright);
        }

        .fitness-header, .interest-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .fitness-header i, .interest-icon i {
            font-size: 1.5rem;
            color: var(--accent);
        }
        
        .fitness-header h3, .interest-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .interest-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--surface-hover);
            border: 1px solid var(--border);
            margin: 0 auto 1rem;
        }

        .fitness-items {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .fitness-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            background: var(--bg-secondary);
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        
        .fitness-item:hover {
            background: var(--surface-hover);
            transform: translateX(5px);
        }
        
        .lift-name {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .lift-target, .lift-current {
            font-size: 1rem;
            font-weight: 700;
            color: var(--accent);
        }

        /* Interests Section */
        #interests {
            text-align: center;
            padding: 4rem 2rem;
        }
        
        .interests-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .interest-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem;
            transition: all 0.2s ease;
            text-align: center;
        }

        .interest-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-lg);
        }

        .interest-item:hover .icon-container {
            border-color: var(--accent);
        }

        .interest-item i {
            color: var(--accent);
        }

        .interest-item h3 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem; /* Reduced space */
        }

        .interest-item p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Clean Footer */
        footer {
            position: fixed;
            bottom: 0;
            left: 280px;
            right: 0;
            text-align: center;
            padding: 1rem 2rem;
            border-top: 1px solid var(--border);
            color: var(--text-secondary);
            font-size: 0.9rem;
            background: var(--surface);
            z-index: 50;
        }

        .fa-heart {
            color: #f97316;
            transition: all 0.3s ease;
        }
        
        .fa-code {
            color: var(--accent);
            margin: 0 5px;
        }
        
        .fa-coffee {
            color: #a16207;
            margin: 0 5px;
        }
        
        /* ===== UNIQUE FEATURES ===== */
        
        /* Typing Animation */
        .typing-text {
            position: relative;
            display: inline-block;
        }
        
        .typing-text::after {
            content: '|';
            color: var(--accent);
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        
        /* Progress Bars */
        .progress-bar {
            position: relative;
            background: var(--bg-secondary);
            border-radius: 10px;
            height: 8px;
            margin-top: 1rem;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
            border-radius: 10px;
            width: 0;
            animation: fillProgress 2s ease-out forwards;
            animation-delay: 0.5s;
        }
        
        .progress-text {
            position: absolute;
            right: 8px;
            top: -25px;
            font-size: 0.75rem;
            color: var(--accent);
            font-weight: 600;
        }
        
        @keyframes fillProgress {
            to { width: var(--progress-width); }
        }
        
        /* Live Time Display */
        .time-display {
            position: relative;
        }
        
        .time-display i {
            color: var(--warning);
        }
        
        #local-time {
            font-family: 'Courier New', monospace;
            font-weight: 600;
            color: var(--warning);
        }
        
        /* Terminal Footer */
        .terminal-footer {
            background: #2e3440;
            border: 1px solid #4c566a;
            border-radius: 6px;
            font-family: 'Ubuntu Mono', 'Consolas', 'Monaco', 'Courier New', monospace;
            font-size: 0.85rem;
            width: 100%;
            box-sizing: border-box;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            overflow: hidden;
        }
        
        .terminal-header {
            background: linear-gradient(to bottom, #404040, #383838);
            padding: 0.4rem 1rem;
            border-bottom: 1px solid #555;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 32px;
        }
        
        .terminal-controls {
            display: flex;
            gap: 0.3rem;
            order: 3;
        }
        
        .terminal-button {
            width: 16px;
            height: 16px;
            border: 1px solid #666;
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: #ccc;
        }
        
        .terminal-button:hover {
            background: #555;
            border-color: #888;
        }
        
        .terminal-button.minimize {
            background: #404040;
        }
        
        .terminal-button.minimize::after {
            content: '−';
            font-weight: bold;
        }
        
        .terminal-button.maximize {
            background: #404040;
        }
        
        .terminal-button.maximize::after {
            content: '□';
            font-size: 8px;
        }
        
        .terminal-button.close {
            background: #404040;
        }
        
        .terminal-button.close::after {
            content: '×';
            font-weight: bold;
        }
        
        .terminal-button.close:hover {
            background: #e74c3c;
            border-color: #e74c3c;
            color: white;
        }
        
        .terminal-title {
            color: #ccc;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .terminal-content {
            padding: 0.75rem 1rem;
            background: #2e3440;
            color: #d8dee9;
        }
        
        .terminal-prompt {
            color: #a3be8c;
            font-weight: bold;
        }
        
        .terminal-user {
            color: #88c0d0;
            font-weight: bold;
        }
        
        .terminal-at {
            color: #d8dee9;
        }
        
        .terminal-host {
            color: #a3be8c;
            font-weight: bold;
        }
        
        .terminal-path {
            color: #5e81ac;
            font-weight: bold;
        }
        
        .terminal-command {
            color: #eceff4;
            margin-left: 0.5rem;
        }
        
        .terminal-cursor {
            background: #d8dee9;
            animation: blink 1s infinite;
            display: inline-block;
            width: 8px;
            height: 1.2em;
            margin-left: 2px;
        }
        
        /* Terminal Control States */
        .terminal-footer {
            transition: all 0.3s ease;
        }
        
        .terminal-footer.minimized {
            height: 40px;
            overflow: hidden;
        }
        
        .terminal-footer.maximized {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90vw;
            height: 70vh;
            max-width: 1000px;
            z-index: 2000;
            border-radius: 12px;
        }
        
        .terminal-footer.maximized .terminal-content {
            height: calc(100% - 40px);
            overflow-y: auto;
        }
        
        /* Restore Terminal Button */
        .restore-terminal-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(96, 165, 250, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            border: 2px solid var(--border);
        }
        
        .restore-terminal-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(96, 165, 250, 0.6);
        }
        
        .restore-terminal-btn i {
            color: white;
            font-size: 1.5rem;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .content {
                padding: 2rem;
            }
        }

        @media (max-width: 1024px) {
            .sidebar {
                width: 240px;
            }
            
            .content {
                margin-left: 240px;
                width: calc(100% - 240px);
            }
            
            footer {
                left: 240px;
            }
        }

        @media (max-width: 768px) {
            .sidebar {
                width: 100% !important;
                height: auto !important;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                z-index: 1000 !important;
                padding: 1rem !important;
                padding-top: max(1rem, env(safe-area-inset-top)) !important;
                flex-direction: row !important;
                justify-content: space-between !important;
                align-items: center !important;
                border-right: none !important;
                border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
                background: rgba(255, 255, 255, 0.08) !important;
                backdrop-filter: blur(20px) !important;
                -webkit-backdrop-filter: blur(20px) !important;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
                margin: 0 !important;
            }
            
            .profile-section {
                margin-bottom: 0;
                padding-bottom: 0;
                border-bottom: none;
                display: flex;
                align-items: center;
                gap: 1rem;
                text-align: left;
            }
            
            .logo-icon {
                width: 50px;
                height: 50px;
                margin: 0;
            }
            
            .profile-status {
                justify-content: flex-start;
            }
            
            .nav-section {
                flex: none;
                margin-bottom: 0;
            }
            
            .nav-title {
                display: none;
            }
            
            .nav-links {
                flex-direction: row;
                gap: 0.5rem;
            }
            
            .nav-links a {
                padding: 0.5rem;
                min-width: 44px;
                justify-content: center;
            }
            
            .nav-links span {
                display: none;
            }
            
            .social-section {
                margin-top: 0;
            }
            
            .social-links {
                flex-direction: row;
            }
            
            .social-links a {
                padding: 0.5rem;
                min-width: 44px;
                justify-content: center;
            }
            
            .social-links a span {
                display: none;
            }
            
            .content {
                margin-left: 0;
                width: 100%;
                margin-top: 80px;
                height: calc(100vh - 80px);
            }
            
            footer {
                left: 0;
                margin-top: 80px;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .tech-categories,
            .learning-grid,
            .fitness-grid,
            .interests-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .tech-category,
            .learning-card,
            .fitness-card,
            .interest-card {
                padding: 1.5rem;
                border-radius: 16px;
            }
            
            .section-header {
                margin-bottom: 2rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            section {
                padding: 2rem 1rem 12rem;
            }
        }

        @media (max-width: 480px) {
            .sidebar {
                padding: 0.75rem !important;
                background: rgba(255, 255, 255, 0.08) !important;
                backdrop-filter: blur(20px) !important;
                -webkit-backdrop-filter: blur(20px) !important;
            }
            
            .profile-status span:not(.status-dot) {
                display: none;
            }
            
            .nav-links {
                gap: 0.25rem;
            }
            
            .nav-links a {
                padding: 0.4rem;
                min-width: 40px;
            }
            
            .social-links a {
                padding: 0.4rem;
                min-width: 40px;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 1rem;
            }
            
            .tech-category,
            .learning-card,
            .fitness-card,
            .interest-card {
                padding: 1rem;
                border-radius: 12px;
            }
            
            .tech-category h3,
            .learning-header h3,
            .fitness-header h3,
            .interest-card h3 {
                font-size: 1.1rem;
            }
            
            .section-header {
                margin-bottom: 1.5rem;
            }
            
            section {
                padding: 1.5rem 0.75rem 12rem;
            }
            
            .terminal-footer {
                margin: 0 0.75rem;
            }
        }

        /* Mobile Navbar Background Fix */
        @media screen and (max-width: 768px) {
            body {
                margin: 0 !important;
                padding: 0 !important;
                overflow-x: hidden !important;
            }
            
            html {
                margin: 0 !important;
                padding: 0 !important;
            }
            
            /* Cover any potential white space above navbar */
            body::after {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                height: 100px;
                background: rgba(255, 255, 255, 0.08);
                z-index: 999;
                pointer-events: none;
            }
            
            nav.sidebar {
                background: rgba(255, 255, 255, 0.08) !important;
                backdrop-filter: blur(20px) !important;
                -webkit-backdrop-filter: blur(20px) !important;
                border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
                margin-top: 0 !important;
                z-index: 1000 !important;
            }
        }
        
        /* Force navbar background on very small screens */
        @media screen and (max-width: 480px) {
            nav.sidebar {
                background: rgba(46, 52, 64, 0.9) !important;
                backdrop-filter: blur(20px) !important;
                -webkit-backdrop-filter: blur(20px) !important;
            }
            
            .restore-terminal-btn {
                width: 50px;
                height: 50px;
                bottom: 15px;
                right: 15px;
            }
            
            .restore-terminal-btn i {
                font-size: 1.2rem;
            }
            
            .terminal-footer.maximized {
                width: 95vw;
                height: 80vh;
            }
        }
        
        /* Heart animation */
        @keyframes heartbeat {
            0% { transform: scale(1); }
            25% { transform: scale(1.2); }
            50% { transform: scale(1); }
            75% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .fa-heart {
            animation: heartbeat 1.5s infinite;
            display: inline-block;
        }
