:root {
    --bg: #0b0612;
    --card: rgba(18, 12, 28, 0.88);
    --border: rgba(173, 102, 255, 0.2);
    --text: #f3ebff;
    --muted: #b4a8ca;
    --accent: #9b4dff;
    --accent-strong: #c084ff;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
body {
    margin: 0; min-height: 100vh; font-family: "Segoe UI", sans-serif;
    color: var(--text); background: radial-gradient(circle at top, rgba(120, 53, 255, 0.15), transparent 40%), linear-gradient(160deg, #05030a 0%, #10081a 45%, #05030a 100%);
    overflow-x: hidden;
}

.background { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.orb { position: absolute; width: 35rem; height: 35rem; border-radius: 50%; filter: blur(80px); opacity: 0.15; }
.orb-left { top: -10rem; left: -10rem; background: #7b2cff; }
.orb-right { right: -15rem; bottom: -10rem; background: #d14dff; }
.grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(circle at center, black 30%, transparent 80%); }

.page { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 60px 20px; }

.hero { text-align: center; margin-bottom: 60px; }
.avatar-container { width: 120px; height: 120px; margin: 0 auto 24px; position: relative; }
.avatar-placeholder, .avatar-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 255, 255, 0.1); box-shadow: 0 10px 30px rgba(155, 77, 255, 0.3); }
.avatar-placeholder { background: linear-gradient(135deg, var(--accent), var(--accent-strong)); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; font-weight: 800; color: white; }
.eyebrow { display: inline-block; margin-bottom: 12px; padding: 6px 16px; border: 1px solid var(--border); border-radius: 999px; color: var(--accent-strong); background: rgba(155, 77, 255, 0.1); font-size: 0.9rem; font-weight: 600; }
.hero h1 { margin: 0; font-size: clamp(2.5rem, 8vw, 4rem); }
.lead { color: var(--muted); font-size: 1.1rem; line-height: 1.6; max-width: 600px; margin: 20px auto 0; }

.social-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 80px; }
.social-btn { display: flex; align-items: center; gap: 12px; padding: 14px 24px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: 16px; color: var(--text); text-decoration: none; font-weight: 600; transition: 0.3s; }
.social-btn:hover { background: rgba(155, 77, 255, 0.1); border-color: var(--accent); transform: translateY(-3px); }

.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .projects-grid { grid-template-columns: 1fr; } }
.project-card { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border); border-radius: 24px; padding: 28px; transition: 0.3s; backdrop-filter: blur(10px); }
.project-card:hover { border-color: var(--accent); background: rgba(255, 255, 255, 0.04); transform: scale(1.02); }
.project-card h3 { margin: 0 0 12px; color: var(--accent-strong); }
.project-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.5; margin: 0; }
.btn-project { display: inline-flex; align-items: center; gap: 8px; color: var(--text); text-decoration: none; font-weight: 700; margin-top: 15px; font-size: 0.9rem; }
