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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #000000, #1a1a1a, #000000);
    color: white;
    overflow-x: hidden;
}

@keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -50px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(50px, 50px) scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.4),
                    0 0 40px rgba(249, 115, 22, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(249, 115, 22, 0.6),
                    0 0 60px rgba(249, 115, 22, 0.3);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2s {
    animation-delay: 2s;
}

.animation-delay-4s {
    animation-delay: 4s;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-rotate {
    animation: rotate 20s linear infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

.animate-shimmer {
    animation: shimmer 2s infinite;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-200 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-400 {
    animation-delay: 0.4s;
    opacity: 0;
}

.bg-blob {
    position: fixed;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(80px);
    opacity: 0.2;
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 50;
    transition: all 0.3s;
    opacity: 0.3;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.4) 0%, transparent 70%);
}

.nav-link {
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #f97316;
}

.nav-link.active {
    color: #f97316;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #f97316, #fbbf24);
}

.project-card {
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 4px solid #f97316;
    object-fit: cover;
    position: relative;
}

.gradient-text {
    background: linear-gradient(to right, #f97316, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background: linear-gradient(to right, #ea580c, #d97706);
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 32px;
    border: 2px solid #f97316;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
}

.icon-float {
    position: absolute;
    opacity: 0.3;
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 24px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 40;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
}

.app-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
}
