

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montenegrin Gothic One', sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;
    min-height: 100dvh; /* Modern mobile browsers */

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;

    background: linear-gradient(
        135deg,
        #4a4a4a 0%,
        #2f2f2f 40%,
        #1b1b1b 100%
    );

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.container {
    width: 100%;
    max-width: 420px;
    text-align: center;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow:
        0 15px 35px rgba(0,0,0,0.25);
}

.profile-pic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

h1 {
    color: white;
    font-size: 2rem;
    margin-bottom: 8px;
}

.bio {
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    font-size: 1rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-btn {
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,0.15);
    padding: 16px 20px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.link-btn:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

.social-icons a {
    color: white;
    font-size: 1.4rem;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

@media (max-width: 500px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.7rem;
    }

    .link-btn {
        padding: 14px;
        font-size: 0.95rem;
    }
}