:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: #333333;
    --accent-primary: #8b5cf6;
    --accent-secondary: #ec4899;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --radius: 12px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    transition: background-color var(--transition), color var(--transition);
    overflow-x: hidden;
    position: relative;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

/* Profile Card */
.profile-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    backdrop-filter: blur(40px) saturate(180%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent-primary);
}

.profile-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform var(--transition);
    position: relative;
    overflow: hidden;
}

.profile-card:hover .profile-icon {
    transform: scale(1.05);
}

#profileAvatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.initial {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    z-index: 1;
}

.profile-info {
    margin-bottom: 1.5rem;
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #43b581;
    animation: pulse 2s infinite;
}

.status-dot.offline {
    background: #747f8d;
    animation: none;
}

.status-dot.dnd {
    background: #f04747;
}

.status-dot.idle {
    background: #faa61a;
}

.status-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.location {
    color: var(--text-muted);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-stats {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    transition: color var(--transition);
}

.profile-card:hover .stat {
    color: var(--text-primary);
}

.stat i {
    font-size: 0.7rem;
    opacity: 0.8;
}



/* Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 25s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    animation: orbit1 15s ease-in-out infinite;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--accent-secondary), #ff6b6b);
    animation: orbit2 18s ease-in-out infinite;
    animation-delay: 3s;
}

.gradient-orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #4ecdc4, var(--accent-primary));
    animation: orbit3 22s ease-in-out infinite;
    animation-delay: 6s;
}

@keyframes orbit1 {
    0% {
        transform: translateX(0px) translateY(0px) scale(1);
    }
    25% {
        transform: translateX(150px) translateY(-100px) scale(1.2);
    }
    50% {
        transform: translateX(0px) translateY(-200px) scale(0.8);
    }
    75% {
        transform: translateX(-150px) translateY(-100px) scale(1.1);
    }
    100% {
        transform: translateX(0px) translateY(0px) scale(1);
    }
}

@keyframes orbit2 {
    0% {
        transform: translateX(0px) translateY(0px) scale(1);
    }
    25% {
        transform: translateX(-100px) translateY(-150px) scale(1.3);
    }
    50% {
        transform: translateX(0px) translateY(-300px) scale(0.7);
    }
    75% {
        transform: translateX(100px) translateY(-150px) scale(1.1);
    }
    100% {
        transform: translateX(0px) translateY(0px) scale(1);
    }
}

@keyframes orbit3 {
    0% {
        transform: translateX(0px) translateY(0px) scale(1);
    }
    25% {
        transform: translateX(200px) translateY(-100px) scale(1.4);
    }
    50% {
        transform: translateX(0px) translateY(-200px) scale(0.6);
    }
    75% {
        transform: translateX(-200px) translateY(-100px) scale(1.2);
    }
    100% {
        transform: translateX(0px) translateY(0px) scale(1);
    }
}

/* Enhanced Profile Card Animations */
.profile-card {
    animation: cardEntrance 0.8s ease forwards;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hover Effects Enhancement */
.profile-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

/* Glow Effect for Special Interactions */
.glow-effect {
    box-shadow: 0 0 20px var(--accent-primary);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px var(--accent-primary);
    }
    to {
        box-shadow: 0 0 30px var(--accent-primary), 0 0 40px var(--accent-secondary);
    }
}

/* Copyright */
.copyright {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.copyright a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.7;
    transition: all var(--transition);
    display: inline-block;
}

.copyright a:hover {
    opacity: 1;
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.brand-text {
    color: var(--text-primary);
    font-weight: 700;
}

.brand-dot {
    color: var(--accent-primary);
    font-weight: 700;
}


/* Contact Links */
.contact {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}

.contact-link:hover {
    color: var(--text-primary);
    border-color: var(--accent-primary);
    background: var(--accent-primary);
    transform: translateY(-2px) scale(1.1);
}


/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .profile-card {
        padding: 1.5rem;
    }
    
    .profile-stats {
        gap: 1rem;
    }
    
    .contact {
        gap: 0.5rem;
    }
    
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card {
    animation: fadeIn 0.6s ease forwards;
}