body {
    background: linear-gradient(135deg, #ffe6f1, #ffd1ec, #ffe5fa);
    animation: bgMove 8s infinite alternate;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    cursor: none;
    font-family: "Comic Sans MS", Arial;
}

@keyframes bgMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.page {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.name-top {
    font-size: 34px;
    font-weight: bold;
    color: #d63384;
    margin-bottom: 150px;
    position: relative;
    z-index: 9999;
}

.name-bottom {
    font-size: 34px;
    font-weight: bold;
    color: #d63384;
    margin-top: 150px;
    position: relative;
    z-index: 9999;
}

.heart-wrapper {
    position: relative;
    z-index: 1;
}

.heart {
    width: 160px;
    height: 160px;
    background: pink;
    position: relative;
    transform: rotate(-45deg);
    animation: beat 1.4s infinite ease-in-out;
    filter: drop-shadow(0 0 10px pink);
    z-index: 1;
}

.heart:before,
.heart:after {
    content: "";
    width: 160px;
    height: 160px;
    background: pink;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

.heart:before {
    top: -80px;
    left: 0;
}

.heart:after {
    top: 0;
    left: 80px;
}

@keyframes beat {
    0% { transform: scale(1) rotate(-45deg); }
    40% { transform: scale(1.2) rotate(-45deg); }
    100% { transform: scale(1) rotate(-45deg); }
}

.glitter {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, white, pink);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 1s forwards ease-out;
    z-index: 5000;
}

@keyframes sparkle {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(2); }
}

.cursor-heart {
    position: fixed;
    width: 20px;
    height: 20px;
    color: #ff5ca7;
    pointer-events: none;
    transform: translate(-50%, -50%);
    font-size: 20px;
    z-index: 5000;
}
