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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

#particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.navbar {
    position: fixed;
    top: 0; width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,159,10,0.1);
}

.logo { font-size: 24px; font-weight: 700; }
.logo span { color: #ff9f0a; }

.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { color: #888; text-decoration: none; font-size: 15px; transition: color 0.3s; }
.nav-links a:hover { color: #ff9f0a; }

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 60px;
    position: relative;
    z-index: 1;
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}
.animate:nth-child(1) { animation-delay: 0.1s; }
.animate:nth-child(2) { animation-delay: 0.3s; }
.animate:nth-child(3) { animation-delay: 0.5s; }
.animate:nth-child(4) { animation-delay: 0.7s; }
.animate:nth-child(5) { animation-delay: 0.9s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.greeting { font-size: 18px; color: #888; margin-bottom: 10px; }
.name { font-size: 72px; font-weight: 700; line-height: 1.1; margin-bottom: 15px; background: linear-gradient(135deg, #fff, #aaa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.role { font-size: 24px; color: #888; margin-bottom: 20px; }
.role span { color: #ff9f0a; font-weight: 600; }
.bio { font-size: 16px; color: #555; max-width: 500px; line-height: 1.8; margin-bottom: 35px; }

.hero-btns { display: flex; gap: 15px; }
.btn { padding: 14px 30px; border-radius: 8px; text-decoration: none; font-size: 15px; font-weight: 600; transition: all 0.3s; }
.btn.primary { background: #ff9f0a; color: black; box-shadow: 0 0 30px rgba(255,159,10,0.3); }
.btn.primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(255,159,10,0.5); }
.btn.secondary { border: 1px solid #333; color: white; }
.btn.secondary:hover { border-color: #ff9f0a; color: #ff9f0a; transform: translateY(-3px); }

.avatar-wrapper { position: relative; }
.avatar-ring {
    position: absolute;
    width: 260px; height: 260px;
    border-radius: 50%;
    border: 2px solid rgba(255,159,10,0.3);
    top: -20px; left: -20px;
    animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.avatar {
    width: 220px; height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9f0a, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 700;
    box-shadow: 0 0 80px rgba(255,159,10,0.4);
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

section { padding: 100px 60px; position: relative; z-index: 1; }

.section-title { font-size: 42px; font-weight: 700; text-align: center; margin-bottom: 60px; }
.section-title span { color: #ff9f0a; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.about { background: rgba(15,15,15,0.8); }
.about-content { display: flex; gap: 25px; justify-content: center; flex-wrap: wrap; }

.about-card {
    background: rgba(26,26,26,0.9);
    padding: 35px;
    border-radius: 20px;
    width: 280px;
    border: 1px solid #222;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.about-card h3 { font-size: 20px; margin-bottom: 12px; color: #ff9f0a; }
.about-card p { color: #888; line-height: 1.6; font-size: 14px; }
.card-glow {
    position: absolute;
    width: 100px; height: 100px;
    background: rgba(255,159,10,0.1);
    border-radius: 50%;
    top: -30px; right: -30px;
    filter: blur(20px);
}

.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }

.skill-card {
    background: rgba(26,26,26,0.9);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #222;
    transition: all 0.3s;
    position: relative;
}
.skill-icon { font-size: 30px; margin-bottom: 10px; }
.skill-card h3 { font-size: 15px; margin-bottom: 10px; color: #ccc; }
.skill-bar { background: #2a2a2a; height: 6px; border-radius: 10px; overflow: hidden; margin-bottom: 5px; }
.skill-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #ff9f0a, #ff6b35); border-radius: 10px; transition: width 1.5s ease; }
.skill-percent { font-size: 12px; color: #ff9f0a; }

.projects { background: rgba(15,15,15,0.8); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; max-width: 1000px; margin: 0 auto; }

.project-card {
    background: rgba(26,26,26,0.9);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #222;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.project-glow {
    position: absolute;
    width: 150px; height: 150px;
    background: rgba(255,159,10,0.05);
    border-radius: 50%;
    top: -50px; right: -50px;
    filter: blur(30px);
    transition: all 0.3s;
}
.project-card:hover .project-glow { background: rgba(255,159,10,0.15); }
.project-icon { font-size: 40px; margin-bottom: 15px; }
.project-card h3 { font-size: 17px; margin-bottom: 10px; }
.project-card p { color: #888; font-size: 13px; line-height: 1.6; margin-bottom: 15px; }
.tech-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 15px; }
.tech-tags span { background: rgba(255,159,10,0.1); color: #ff9f0a; padding: 4px 12px; border-radius: 20px; font-size: 12px; border: 1px solid rgba(255,159,10,0.2); }
.project-link { color: #ff9f0a; text-decoration: none; font-size: 14px; font-weight: 600; }
.project-link:hover { color: #ffb84d; }

.contact-cards { display: flex; gap: 25px; justify-content: center; flex-wrap: wrap; }
.contact-card {
    background: rgba(26,26,26,0.9);
    padding: 40px 50px;
    border-radius: 20px;
    border: 1px solid #222;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}
.contact-card:hover { border-color: #ff9f0a; box-shadow: 0 0 30px rgba(255,159,10,0.15); transform: translateY(-5px); }
.contact-card span { font-size: 40px; }
.contact-card p { color: #888; margin-top: 10px; font-size: 15px; }

footer { text-align: center; padding: 30px; color: #444; border-top: 1px solid #1a1a1a; font-size: 14px; position: relative; z-index: 1; }
