:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #8a2be2;
    /* Electric Violet */
    --secondary-text: #888888;
    --font-main: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeIn 1.5s ease-out;
}

/* Profile Picture */
.profile-container {
    margin-bottom: 1rem;
}

.profile-image-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-text);
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.2);
    /* Subtle glow matching accent */
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Typography */
.artist-name {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.status {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 700;
    /* Bold as requested */
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.sub-status {
    font-size: 0.9rem;
    color: var(--secondary-text);
    font-weight: 300;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.4;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    padding-bottom: 5px;
}

.social-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--text-color);
    transition: width var(--transition-speed) ease;
}

.social-link:hover {
    color: var(--text-color);
}

.social-link:hover::after {
    width: 100%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive */
@media (max-width: 480px) {
    .artist-name {
        font-size: 2rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .profile-image-placeholder {
        width: 120px;
        height: 120px;
        font-size: 2rem;
    }
}