:root {
    --primary: #007bff;
    --primary-hover: #0056b3;
    --bg-dark: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: white;
    overflow-x: hidden;
}

nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    padding: 1.2rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

nav a { color: #a0a0a0; margin-left: 25px; text-decoration: none; font-weight: 600; transition: 0.3s; }
nav a:hover { color: var(--primary); }

.hero {
    height: 100vh;
    background: url('stylish-mansion-v0-ognilnhzcx1c1.webp') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.75); }

.content {
    position: relative;
    z-index: 2;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    text-align: center;
    max-width: 500px;
    animation: fadeIn 1s ease-out;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0,123,255,0.3);
}

h1 { font-size: 3rem; margin: 0; background: linear-gradient(to right, #fff, var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    margin: 10px;
    transition: 0.4s;
}

.btn-outline { background: transparent; border: 2px solid white; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,123,255,0.4); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }