:root {
    --main-color: #ff8fab; /* Rosy Pink */
    --accent-color: #ffc2d1; /* Light Pink */
    --bg-color: #fff0f5; /* Lavender Blush */
    --surface-color: #ffe4e1; /* Misty Rose */
    --text-color: #6d4553; /* Dark Pink */
    --text-muted-color: #8b6b79; /* Muted Pink */
    --font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
}

body::before {
    content: '♡';
    position: fixed;
    top: -10vh;
    left: -10vw;
    width: 120vw;
    height: 120vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100vw;
    color: rgba(255, 192, 203, 0.1);
    z-index: -1;
    animation: heartbeat 5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(0.9);
        opacity: 0.1;
    }
    50% {
        transform: scale(1);
        opacity: 0.2;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.1;
    }
}