@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

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

body {
    font-family: 'Nunito', sans-serif;
    min-height: 100vh;
    padding: 40px 16px 60px;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg,
        #ffd6e0 0%,
        #ffecb3 25%,
        #c8f0d8 50%,
        #c5e3f7 75%,
        #e8d5f5 100%);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 480px;
}

/* Profile photo */
.image-container {
    margin-bottom: 12px;
}

.image-container img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

h1 {
    color: #5a3e6b;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.bio {
    color: #7a6080;
    font-size: 0.88rem;
    margin-bottom: 22px;
    text-align: center;
    font-weight: 600;
}

/* Social icon row */
.social-icons {
    display: flex;
    flex-direction: row;
    gap: 28px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 20px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.social-icon span {
    color: #7a6080;
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.email-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-icon svg {
    width: 26px;
    height: 26px;
    stroke: #9b6bb5;
}

/* Divider */
.divider {
    width: 80%;
    height: 1.5px;
    background: linear-gradient(to right, transparent, rgba(180,140,210,0.4), transparent);
    margin-bottom: 20px;
}

/* Glass link tiles */
.tile {
    display: flex;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 15px 20px;
    margin-bottom: 12px;
    text-decoration: none;
    color: #5a3e6b;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(180, 140, 210, 0.15),
                inset 0 1px 0 rgba(255,255,255,0.6);
    position: relative;
    overflow: hidden;
}

.tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
}

.tile:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(180, 140, 210, 0.25),
                inset 0 1px 0 rgba(255,255,255,0.7);
}

.tile:active {
    transform: translateY(0px);
}

.icon {
    width: 32px;
    height: 32px;
    margin-right: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 26px;
    height: 26px;
    stroke: #9b6bb5;
}

.tile p {
    font-size: 0.95rem;
    font-weight: 700;
    flex: 1;
    text-align: center;
    color: #5a3e6b;
    margin-right: 32px;
}
