        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            background-position: 0 0, 0 0;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            padding: 40px 0;
            position: relative;
        }

        nav {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 14px;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .hero {
            padding: 120px 0;
            opacity: 0;
            animation: fadeIn 1s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero .subtitle {
            font-size: 20px;
            color: #888;
            margin-bottom: 30px;
        }

        .hero .description {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin-bottom: 40px;
        }

        .divider {
            width: 60px;
            height: 1px;
            background: #333;
            margin-top: 40px;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: #fff;
            color: #0a0a0a;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }

        .section {
            padding: 80px 0;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s forwards;
            animation-delay: 0.3s;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title {
            font-size: 14px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 40px;
        }

        .about-content {
            font-size: 18px;
            color: #999;
            line-height: 1.8;
            max-width: 700px;
        }

        .projects-grid {
            display: grid;
            gap: 30px;
        }

        .tech-stack {
            margin-top: 60px;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .tech-card {
            background: transparent;
            border: 1px solid #222;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s;
        }

        .tech-card:hover {
            transform: translateY(-5px);
            border-color: #444;
        }

        .tech-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 20px;
        }

        .tech-card ul {
            list-style: none;
        }

        .tech-card li {
            padding: 8px 0;
            color: #888;
            font-size: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            transition: color 0.3s;
        }

        .tech-card li:last-child {
            border-bottom: none;
        }

        .tech-card:hover li {
            color: #bbb;
        }

        .project-card {
            background: #111;
            border: 1px solid #222;
            border-radius: 12px;
            padding: 30px;
            transition: transform 0.3s, border-color 0.3s;
            cursor: pointer;
        }

        .project-card:hover {
            transform: translateY(-5px);
            border-color: #444;
        }

        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 15px;
        }

        .project-title {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
        }

        .project-status {
            font-size: 12px;
            padding: 4px 12px;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 20px;
            color: #888;
        }

        .project-status.live {
            border-color: #2ecc71;
            color: #2ecc71;
        }

        .project-status.dev {
            border-color: #f39c12;
            color: #f39c12;
        }

        .project-description {
            color: #888;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .project-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tag {
            font-size: 12px;
            padding: 4px 12px;
            background: #1a1a1a;
            border-radius: 4px;
            color: #666;
        }

        .contact {
            text-align: center;
            padding: 100px 0;
        }

        .contact h2 {
            font-size: 36px;
            color: #fff;
            margin-bottom: 20px;
        }

        .contact p {
            color: #666;
            margin-bottom: 30px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: #111;
            border: 1px solid #222;
            color: #888;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .social-link:hover {
            border-color: #444;
            color: #fff;
            transform: translateY(-2px);
        }

        footer {
            padding: 40px 0;
            text-align: center;
            color: #444;
            font-size: 14px;
            border-top: 1px solid #1a1a1a;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .hero .subtitle {
                font-size: 18px;
            }

            .nav-links {
                display: none;
            }

            .section {
                padding: 60px 0;
            }
        }