        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none !important;
        }

        :root {
            --bg: #0a0a0a;
            --surface: #111111;
            --surface-light: #1a1a1a;
            --text: #ffffff;
            --text-secondary: #aaaaaa;
            --border: #2a2a2a;
            --accent: #ffffff;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            font-weight: 300;
            cursor: none;
        }

        ::selection {
            background: rgba(255, 255, 255, 0.1);
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1.2rem 0;
            border-bottom: 1px solid var(--border);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: 1px;
            position: relative;
            padding-right: 10px;
        }


        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: color 0.3s;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--text);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 5px;
        }

        /* Hero */
        .hero {
            padding: 200px 0 150px;
            position: relative;
        }

        .hero-content {
            max-width: 700px;
        }

        .hero-subtitle {
            color: var(--text-secondary);
            font-size: 0.9rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: -1px;
        }

        .hero-title span {
            font-weight: 600;
            position: relative;
        }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 10px;
            right: -15px;
            width: 8px;
            height: 8px;
            background: var(--text);
            border-radius: 50%;
        }


        .hero-description {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 3rem;
            font-weight: 300;
        }

        /* Sections */
        section {
            padding: 120px 0;
        }

        .section-header {
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 300;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--text);
        }

        .section-subtitle {
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 500px;
        }

        /* Grids */
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        /* Cards */
        .card {
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }


        .card:hover {
            border-color: var(--text-secondary);
        }

        .card:hover::before {
            opacity: 1;
        }

        .card h3 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        .card p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        /* Focus Areas */
        .focus-card {
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 2.5rem;
            height: 100%;
            position: relative;
            overflow: hidden;
        }


        .focus-card:hover::before {
            transform: translateX(0);
        }

        .focus-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .focus-card ul {
            list-style: none;
            margin-top: 1.5rem;
        }

        .focus-card li {
            color: var(--text-secondary);
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            padding-left: 1.2rem;
            position: relative;
            transition: color 0.3s;
        }

        .focus-card li:hover {
            color: var(--text);
        }

        .focus-card li::before {
            content: '→';
            position: absolute;
            left: 0;
            opacity: 0.5;
        }

        /* Skills */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .skill-card {
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 1.8rem;
            transition: all 0.3s ease;
        }

        .skill-card:hover {
            border-color: var(--text-secondary);
        }

        .skill-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.2rem;
        }

        .skill-icon {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--surface-light);
            border-radius: 8px;
            font-size: 1.2rem;
        }

        .skill-content h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            font-weight: 500;
        }

        .skill-content p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Contact */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-card {
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            border-color: var(--text-secondary);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--surface-light);
            border: 1px solid var(--border);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }


        .contact-content h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .contact-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* Tech Stack */
        #tech {
            background: var(--surface);
        }
        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }
        .tech-stack-section {
            margin-top: 3rem;
        }

        .tech-item {
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .tech-item:hover {
            border-color: var(--text-secondary);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            padding: 4rem 0;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-text {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        .footer-id {
            color: var(--text);
            font-size: 0.95rem;
            letter-spacing: 1px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-top: 1px solid var(--border);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 150px 0 100px;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .grid-2 {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            section {
                padding: 80px 0;
            }

            .card, .focus-card {
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.3rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .container {
                padding: 0 20px;
            }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            z-index: 999;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
        }

        .scroll-indicator.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-indicator:hover {
            border-color: var(--text);
        }

        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 8px;
            height: 8px;
            background: var(--text);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s ease;
            mix-blend-mode: difference;
        }

        .cursor.hover {
            transform: scale(2);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--text-secondary);
        }