
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, sans-serif;
            background: #000;
            color: white;
            overflow-x: hidden;
        }

        /* Animated Background */
        .background {
            position: fixed;
            inset: 0;
            overflow: hidden;
            z-index: 0;
            background: #000;
        }

        .streak {
            position: absolute;
            width: 2px;
            height: 60px;
            background: linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0),
                rgba(255, 255, 255, 0.6),
                rgba(255, 255, 255, 0)
            );
            transform: rotate(-15deg);
            animation: slideUp linear infinite;
        }

        @keyframes slideUp {
            from {
                transform: translate(0, 0) rotate(-15deg);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            to {
                transform: translate(-200px, -120vh) rotate(-15deg);
                opacity: 0;
            }
        }

        /* Content styles */
        .hero, .projects, .contact, footer {
            position: relative;
            z-index: 1;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 80px 20px;
            text-align: center;
        }

        .welcome-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            font-size: 16px;
            color: #9ca3af;
            margin-bottom: 32px;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: #f97316;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        h1 {
            font-size: 3rem;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .gradient-text {
            background: linear-gradient(90deg, #fb923c, #fbbf24, #34d399);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.25rem;
            color: #9ca3af;
            max-width: 700px;
            margin: 0 auto 48px;
        }

        .scroll-btn {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: #fb923c;
            cursor: pointer;
            transition: color 0.3s;
            background: none;
            border: none;
            font-size: 14px;
            font-weight: 500;
        }

        .scroll-btn:hover {
            color: #fdba74;
        }

        .arrow-down {
            width: 20px;
            height: 20px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

        .projects {
            padding: 80px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 16px;
        }

        .section-header p {
            color: #9ca3af;
            max-width: 700px;
            margin: 0 auto;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .project-card {
            background: rgba(15, 23, 42, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }

        .project-card:hover {
            border-color: rgba(251, 146, 60, 0.5);
            transform: translateY(-4px);
        }

        .project-image {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, #0f172a, rgba(15, 23, 42, 0.5), transparent);
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .project-card:hover .image-overlay {
            opacity: 1;
        }

        .view-site-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: #f97316;
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s;
            text-decoration: none;
        }

        .project-card:hover .view-site-btn {
            opacity: 1;
        }

        .view-site-btn:hover {
            background: #ea580c;
        }

        .project-content {
            padding: 24px;
        }

        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
        }

        .project-title {
            font-size: 1.25rem;
            font-weight: bold;
            transition: color 0.3s;
        }

        .project-card:hover .project-title {
            color: #fb923c;
        }

        .external-icon {
            width: 20px;
            height: 20px;
            color: #9ca3af;
            opacity: 0.5;
            transition: opacity 0.3s;
        }

        .project-card:hover .external-icon {
            opacity: 1;
        }

        .project-description {
            color: #9ca3af;
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag {
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            font-size: 0.75rem;
            color: #9ca3af;
        }

        .contact {
            padding: 128px 20px;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .whatsapp-icon-circle {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #10b981, #059669);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
        }

        .contact h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 16px;
        }

        .contact p {
            color: #9ca3af;
            font-size: 1.125rem;
            margin-bottom: 32px;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: linear-gradient(90deg, #10b981, #059669);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.125rem;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
        }

        .whatsapp-btn:hover {
            background: linear-gradient(90deg, #059669, #047857);
            transform: scale(1.05);
        }

        footer {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 32px 20px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .footer-logo {
            color: #fb923c;
            font-size: 1.25rem;
            font-weight: bold;
        }

        .footer-text {
            color: #9ca3af;
            font-size: 0.875rem;
        }

        .icon {
            width: 24px;
            height: 24px;
        }

        @media (min-width: 768px) {
            h1 {
                font-size: 5rem;
            }

            .section-header h2 {
                font-size: 3rem;
            }

            .contact h2 {
                font-size: 3rem;
            }

            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        @media (min-width: 1024px) {
            h1 {
                font-size: 6rem;
            }

            .projects-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
