:root {
    --bg-color: #000;
    --card-bg: #212121;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent-color: #f48644;
    --card-shadow: 8px 8px 0px rgba(255, 255, 255, 0.06);
    --img-shadow: 0px 8px 0px rgba(0, 0, 0, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
}

.profile-card {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 400px;
    padding: 2.5em;
    box-shadow: var(--card-shadow);
    text-align: center;
}

#profile-picture-container {
    margin-bottom: 1.5em;
}

#profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--img-shadow);
}

#name {
    font-size: 1.8em;
    font-weight: 900;
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.verification-badge {
    color: var(--accent-color);
    font-size: 0.7em;
}

.metadata {
    font-size: 0.95em;
    color: var(--text-secondary);
    margin-bottom: 0.5em;
}

.metadata i {
    color: var(--accent-color);
    margin-right: 5px;
}

#bio {
    margin: 1.5em 0;
    font-size: 1em;
    text-align: center;
}

#bio p {
    margin-bottom: 1em;
}

#bio a {
    color: var(--text-primary);
    text-decoration: underline dotted;
    transition: color 0.3s ease;
}

#bio a:hover {
    color: var(--accent-color);
}

#profile-items {
    margin-top: 2em;
}

.social-links {
    list-style: none;
    text-align: center;
}

.social-links li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links i {
    color: var(--accent-color);
    width: 25px;
    font-size: 1.2em;
    margin-right: 15px;
    text-align: center;
}

.social-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-secondary);
    text-decoration: underline;
}

#footer {
    margin-top: 3em;
    font-size: 0.8em;
    color: #555;
}

@media (max-width: 480px) {
    .profile-card {
        padding: 1.5em;
    }
    
    #profile-picture {
        width: 120px;
        height: 120px;
    }
    
    #name {
        font-size: 1.5em;
    }
}