/* Base resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #0c0c0c;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
}

.card {
    position: relative;
    background: rgba(20, 20, 20, 0.9);
    border-radius: 24px;
    padding: 40px 30px 50px;
    text-align: center;
    overflow: hidden;
}

.bg-overlay {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Optional gradient or background image */
    /* background: url('your-bg.jpg') center/cover no-repeat; */
    /* For now: subtle dark overlay */
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    margin: 0 auto 20px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 26px;
    margin-bottom: 8px;
    position: relative; z-index: 1;
}

p {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 25px;
    position: relative; z-index: 1;
}

.links a {
    display: block;
    text-decoration: none;
    color: #fff;
    background: #1f1f1f;
    padding: 14px;
    margin: 10px 0;
    border-radius: 14px;
    transition: all 0.2s ease-in-out;
    position: relative;
    z-index: 1;
}

.links a:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}
