body {
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
    color: #f5f5f5;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

    overflow: auto; /* desktop normal scroll */
}

.bio-card {
    background-color: #2b2b2b;
    border-radius: 12px;
    padding: 24px;
    max-width: 500px;
    width: 90%;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */

    max-height: 90vh;
    overflow: hidden;
    box-sizing: border-box;
    color: white;
    box-shadow: 0 0 5px #cc0404, 0 0 10px #cc0404;
}

.line {
    margin: 12px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.5;

    gap: 0; /* no gap */
}

.emoji-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    object-fit: contain;

    margin-left: 2px; /* small margin to separate from text */
}

.right {
    margin-left: 0; /* keep this zero */
}

a {
    color: #7289da;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {
    align-self: flex-end;
    text-align: left;
}

/* MOBILE */
@media (max-width: 600px) {
    html, body {
        overflow: hidden;
        height: 100vh;
        margin: 0;
        padding: 0;
    }

    body {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bio-card {
        max-height: 100vh;
        max-width: 100vw;
        padding: 16px;
        font-size: 14px;
        margin: 0;
        border-radius: 12px;
        overflow: hidden;
        box-sizing: border-box;
        color: white;
        box-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
    }
}
.glow {
      color: #fff;
      text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
}