body {
    margin: 0;
    padding: 0;
    background: url('anime.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.phone-container {
    width: 340px;
    max-width: 100vw;
    margin: 40px auto;
    background: rgba(255,255,255,0.95);
    border-radius: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    padding: 32px 0 24px 0;
    position: relative;
}

.profile-pic {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto 16px auto;
}

.username {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.subtitle {
    text-align: center;
    font-size: 1rem;
    color: #444;
    margin-bottom: 18px;
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.link-btn {
    width: 80%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: none;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: #222;
}
.link-btn:hover {
    background: #f0f0f0;
}

.icon {
    width: 22px;
    height: 22px;
    display: inline-block;
}

.footer {
    text-align: center;
    font-size: 0.95rem;
    color: #888;
    margin-top: 18px;
}

