/* Styling-only CSS - colors, fonts, shadows, animations */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body {
    background: linear-gradient(120deg, #ff477e, #4d5bff);
    background-size: 300% 300%;
    animation: gradientMove 8s infinite;
    font-family: 'Courier New', Courier, monospace;
}

footer {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.coming-soon {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 0 3px #fff, 0 0 8px #f0f;
    animation: fadeIn 4s 4s ease-out forwards;
    opacity: 0;
}


@keyframes beat {
    from { transform: scale(0.75); }
    to { transform: scale(1.5) }
}

.heart {
    animation: beat 1s steps(5) infinite alternate;
}
