body {
    margin: 0;
    padding: 0;
    background: #000;
}

.valentine-message {
    font-family: 'Dancing Script', cursive;
    color: #ffb7c5; /* Sakura pink/pastel pink for a softer romantic look */
    font-size: 3.5rem; /* Large text */
    text-align: center;
    padding: 40px 20px;
    text-shadow: 
        0 0 10px rgba(255, 105, 180, 0.7),
        0 0 20px rgba(255, 105, 180, 0.5),
        0 0 30px rgba(255, 105, 180, 0.3);
    background: linear-gradient(to right, #ff9a9e, #fecfef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gentle-pulse 2s infinite ease-in-out;
    position: relative;
    z-index: 10;
}

@keyframes gentle-pulse {
    0% { transform: scale(1); text-shadow: 0 0 10px rgba(255, 105, 180, 0.7); }
    50% { transform: scale(1.02); text-shadow: 0 0 20px rgba(255, 105, 180, 0.9), 0 0 10px #fff; }
    100% { transform: scale(1); text-shadow: 0 0 10px rgba(255, 105, 180, 0.7); }
}

p {
    font-size: 12px;
    line-height: 8px;
    text-align: justify;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background: url(image.jpg) no-repeat center;
    background-attachment: fixed;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.1); /* Slight transparency fallback */
}