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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', Arial, sans-serif;
            background: #000000;
            color: #FFFFFF;
            text-transform: uppercase;
            letter-spacing: 2px;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 216, 255, 0.3);
        }

        nav ul {
            display: flex;
            justify-content: center;
            gap: 40px;
            list-style: none;
            flex-wrap: wrap;
        }

        nav a {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: #00D8FF;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #00D8FF;
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 20px 50px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 216, 255, 0.1) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
        }

        .hero-content {
            text-align: center;
            z-index: 1;
            max-width: 1000px;
        }

        .hero h1 {
            font-size: clamp(40px, 8vw, 80px);
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #FFFFFF 0%, #00D8FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease;
        }

        .hero .role {
            font-size: clamp(16px, 3vw, 24px);
            color: #E0E0E0;
            margin-bottom: 40px;
            font-weight: 300;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .btn {
            padding: 15px 35px;
            background: transparent;
            color: #FFFFFF;
            border: 2px solid #00D8FF;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            display: inline-block;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #00D8FF;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .btn:hover::before {
            left: 0;
        }

        .btn:hover {
            color: #000000;
            box-shadow: 0 0 20px rgba(0, 216, 255, 0.5);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sections */
        section {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        h2 {
            font-size: clamp(32px, 5vw, 48px);
            margin-bottom: 50px;
            text-align: center;
            position: relative;
            font-weight: 700;
        }

        h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: #00D8FF;
            margin: 20px auto 0;
        }

        /* About Section */
        .about-content {
            display: grid;
            gap: 40px;
            line-height: 1.8;
        }

        .about-box {
            background: rgba(255, 255, 255, 0.03);
            padding: 30px;
            border: 1px solid rgba(0, 216, 255, 0.2);
            transition: all 0.3s ease;
        }

        .about-box:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(0, 216, 255, 0.5);
            transform: translateY(-5px);
        }

        .about-box h3 {
            color: #00D8FF;
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .about-box p, .about-box ul {
            color: #E0E0E0;
            font-size: 13px;
            font-weight: 300;
        }

        .about-box ul {
            list-style: none;
            padding-left: 0;
        }

        .about-box li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .about-box li::before {
            content: '▹';
            position: absolute;
            left: 0;
            color: #00D8FF;
        }

        .interests {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .interest-tag {
            padding: 8px 16px;
            background: rgba(0, 216, 255, 0.1);
            border: 1px solid rgba(0, 216, 255, 0.3);
            font-size: 11px;
            transition: all 0.3s ease;
        }

        .interest-tag:hover {
            background: rgba(0, 216, 255, 0.2);
            border-color: #00D8FF;
        }

        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .skill-category {
            background: rgba(255, 255, 255, 0.03);
            padding: 30px;
            border: 1px solid rgba(0, 216, 255, 0.2);
            transition: all 0.3s ease;
        }

        .skill-category:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(0, 216, 255, 0.5);
            box-shadow: 0 0 30px rgba(0, 216, 255, 0.2);
        }

        .skill-category h3 {
            color: #00D8FF;
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .skill-tag {
            padding: 8px 16px;
            background: rgba(0, 216, 255, 0.1);
            border: 1px solid rgba(0, 216, 255, 0.3);
            font-size: 11px;
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            background: #00D8FF;
            color: #000000;
            transform: translateY(-2px);
        }

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

        .project-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 216, 255, 0.2);
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: #00D8FF;
            transition: left 0.3s ease;
        }

        .project-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(0, 216, 255, 0.5);
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(0, 216, 255, 0.2);
        }

        .project-card:hover::before {
            left: 0;
        }

        .project-card h3 {
            color: #FFFFFF;
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .project-tech {
            color: #00D8FF;
            font-size: 11px;
            margin-bottom: 15px;
            font-weight: 300;
        }

        .project-card p {
            color: #E0E0E0;
            font-size: 12px;
            line-height: 1.6;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .project-links {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .project-link {
            padding: 8px 20px;
            background: transparent;
            color: #00D8FF;
            border: 1px solid #00D8FF;
            text-decoration: none;
            font-size: 10px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .project-link:hover {
            background: #00D8FF;
            color: #000000;
        }

        /* Contact Section */
        .contact-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .form-group label {
            font-size: 12px;
            color: #00D8FF;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 216, 255, 0.3);
            color: #FFFFFF;
            font-family: 'Montserrat', Arial, sans-serif;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00D8FF;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(0, 216, 255, 0.2);
        }

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

        .contact-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .contact-link {
            color: #00D8FF;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-link:hover {
            color: #FFFFFF;
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid rgba(0, 216, 255, 0.3);
            font-size: 11px;
            color: #E0E0E0;
            font-weight: 300;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                gap: 20px;
                padding: 0 20px;
            }

            nav a {
                font-size: 10px;
            }

            .hero {
                padding: 120px 20px 50px;
            }

            section {
                padding: 60px 20px;
            }

            .skills-grid,
            .projects-grid {
                grid-template-columns: 1fr;
            }

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

            .btn {
                width: 100%;
                max-width: 300px;
            }
        }