@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Iansui&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body * {
    font-family: 'Inter', sans-serif;
    color: rgb(145, 28, 145);
}

body {
    background: rgb(242, 250, 195) no-repeat top center/cover;
    height: 100vh;
    overflow: hidden;
}

#container {
    width: 100%;
    max-width: 588px;
    margin: 32px auto 0;
    padding: 0 24px;
    position: relative;
    min-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Profile */
#profile {
    text-align: center;
    padding: 16px;
}

#profile h1 {
    font-family: "Iansui", cursive;
    font-size: 25px;
    margin-top: 10px;
}

#profile img {
    display: block;
    margin: auto;
    border: 3px solid rgb(117, 3, 128);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    box-shadow: 4px 6px 12px rgba(117, 3, 128, 0.6);
}

#profile p {
    font-family: "Iansui", cursive;
    font-weight: 300;
    line-height: 20px;
    margin-top: 8px;
    font-style: italic;
}

/* Links */
ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 16px 0;
}

ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: rgba(184, 7, 219, 0.1);
    border: 1px solid rgba(117, 4, 145, 0.5);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
    gap: 12px;
    box-shadow: 8px 8px 2px rgba(189, 12, 233, 0.5);
}

ul li a ion-icon {
    font-size: 24px;
}

ul li a:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgb(145, 28, 145);
    box-shadow: 8px 8px 3px rgba(109, 5, 134, 0.5);
}

/* Social Links */
#social-links {
    display: flex;
    justify-content: center;
    padding: 16px 0;
    font-size: 24px;
}

#social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 50%;
    transition: background 0.2s;
}

#social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}


/* Footer */
footer {
    text-align: center;
    padding: 16px 0;
    font-size: 10px;
}