:root {
    --primary-color: #ffffff;
    --accent-color: #3498db; /* Cool Blue Accent */
    --accent-gradient: linear-gradient(135deg, #3498db, #8e44ad);
    --dark-overlay: rgba(0, 0, 0, 0.65);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--primary-color);
    background-color: #0a0a0a;
    height: 100vh;
    overflow: hidden; /* Prevent scroll for the simple landing view */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Handling */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1); /* Slight zoom for parallax starting point */
    transition: transform 0.2s ease-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
    backdrop-filter: blur(4px);
    z-index: 1;
}

/* Content */
.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
}

.profile-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    opacity: 0; /* JS Animation trigger */
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.profile-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.name {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.separator {
    height: 4px;
    width: 60px;
    background: var(--accent-gradient);
    margin: 1rem auto;
    border-radius: 2px;
}

.role {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.role .accent {
    color: #3498db;
    font-weight: 600;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Social Buttons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    text-decoration: none;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}

.social-btn i {
    font-size: 1.2rem;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-color: transparent;
}

.social-btn.facebook:hover {
    background: #1877F2;
    border-color: transparent;
}

/* Responsive */
@media (max-width: 480px) {
    .name {
        font-size: 2.2rem;
    }
    
    .role {
        font-size: 1.2rem;
    }
    
    .profile-card {
        padding: 2rem 1.5rem;
    }
    
    .social-btn {
        width: 100%; /* Stack buttons on very small screens */
        justify-content: center;
    }
}
