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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.card {
    padding: 3rem 2.5rem;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00d4ff;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.username {
    font-size: 0.95rem;
    color: #607080;
    margin-bottom: 0.4rem;
    font-family: monospace;
}

.role {
    font-size: 1.1rem;
    color: #00d4ff;
    margin-bottom: 2rem;
}

.about {
    text-align: left;
    line-height: 1.7;
}

.about p {
    margin-bottom: 1rem;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.about p:last-child {
    margin-bottom: 0;
}

.socials {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    color: #00d4ff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.socials a:hover {
    background: rgba(0, 212, 255, 0.25);
    transform: scale(1.1);
}

a {
    color: #00d4ff;
}
