:root {
    --main-color: #0a46ea;
    --bg-color: #4f6286;
    --text-color: #ffffff;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 16px;
    text-align: center;
}

.name-text {
    font-variant: small-caps;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0;
}

.subtitle-text {
    font-variant: small-caps;
    font-size: 0.8rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.about {
    font-size: 0.65rem;
    font-family: "Courier New", Courier, monospace;
    background-color: rgba(255, 255, 255, 0.05);
    color: #eee;
    padding: 16px;
    border-radius: 6px;
    margin: 0 auto; /* removed top/bottom spacing */
    max-width: 700px;
    text-align: left;
    white-space: pre-wrap;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    text-indent: 0; /* ensures first line is not indented */
}

/* Extra: indent wrapped lines inside .about */
.about {
    hanging-punctuation: first; /* optional, more code-like look */
}

.profile_img {
    width: 250px;
    max-width: 60%;
    /* border-radius: 50%;
    border: none; */
    background-color: rgb(230, 230, 230);
}

hr {
    margin: 10px auto;
    width: 60%;
    height: 3px;
    border: none;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
}

.social-icons a img {
    transition: transform 0.2s ease-in-out;
}

.social-icons a img:hover {
    transform: scale(1.15);
}


/* Responsive design */
@media (max-width: 480px) {
    .name-text {
        font-size: 1.5rem;
    }

    .about {
        font-size: 0.6rem;
        padding: 12px;
    }

    .profile_img {
        width: 130px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icons a img {
        width: 40px;
        height: 40px;
    }
}