* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffdeeb, #ffffff);
    font-family: 'Quicksand', sans-serif;
    overflow: hidden;
}

/* Card */
.card {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 360px;
    padding: 30px 22px;
    text-align: center;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.6);
    box-shadow: 0 15px 35px rgba(255,105,180,0.2);
}

.profile-pic {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
}

h1 {
    font-family: 'Dancing Script', cursive;
    color: #d81b60;
    font-size: 34px;
    margin: 12px 0 8px;
}

.bio {
    font-size: 13px;
    color: #7d4a5f;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* Buttons */
.links .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    margin: 12px 0;
    text-decoration: none;
    color: white;
    font-weight: 600;
    border-radius: 16px;
    background: linear-gradient(45deg, #ff85ba, #ff99cc);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.links .btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(255,105,180,0.35);
}

.links .btn:active {
    transform: scale(0.95);
}

/* Hearts */
.hearts-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.heart {
    position: absolute;
    top: -50px;
    animation-name: fall;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    will-change: transform, opacity;
    filter: drop-shadow(0 0 6px rgba(255,105,180,0.6));
}

@keyframes fall {
    0% { transform: translateY(0) rotate(0); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.enlarged-pic {
    max-width: 85%;
    border-radius: 16px;
}
