/* THEME */
:root {
    --bg: #000;
    --card: #0d0d0d;
    --text: #fff;
    --accent: #fff;
}

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

/* PAGE */
body {
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    padding: 20px;
}

/* CARD */
.card {
    width: 100%;
    max-width: 480px;
    background: var(--card);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    padding-bottom: 30px;

    border: 4px solid #fff;
    box-shadow:
        0 0 25px rgba(255,255,255,0.25),
        0 0 60px rgba(255,255,255,0.15);
}

/* BANNER */
.banner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(100%);
    display: block;
}

/* PFP — small + overlapping banner */
.pfp-wrapper {
    position: absolute;
    top: 180px; /* sits near bottom of banner */
    left: 50%;
    transform: translateX(-50%);
}

.pfp {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #000;

    box-shadow:
        0 0 15px rgba(255,255,255,0.35),
        0 0 30px rgba(255,255,255,0.2);
}

/* NAME */
.name {
    margin-top: 50px;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    text-align: center;

    text-shadow:
        0 0 18px rgba(255,255,255,0.25),
        0 0 30px rgba(255,255,255,0.15);
}

/* STATUS */
.status {
    margin-top: 6px;
    font-size: 16px;
    opacity: 0.7;
}

/* BUTTONS */
.buttons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
}

.btn {
    padding: 12px;
    background: #111;
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: 0.25s;
}

.btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

/* MOBILE */
@media (max-width: 500px) {
    .pfp { width: 60px; height: 60px; }
    .pfp-wrapper { top: 170px; }
    .name { font-size: 30px; }
}
