* { font-family: 'Merriweather', serif !important; }

/* Update the top of your main.css */

* { 
    font-family: 'Merriweather', serif; 
}

body {
    margin: 0;
    padding: 0;
    font-weight: 700;
    color: #8e44ad;
    overflow: hidden;
    height: 100vh;
    background: linear-gradient(45deg, #4c1d95, #7c3aed, #a855f7, #c084fc);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.heart {
    position: absolute;
    bottom: -10px;
    width: 20px;
    height: 20px;
    background: #ff69b4;
    opacity: 0.5;
    transform: rotate(45deg);
    animation: floatUp 10s linear infinite;
}

.heart::before,
.heart::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff69b4;
    border-radius: 50%;
}

.heart::before {
    top: -10px;
    left: 0;
}

.heart::after {
    top: 0;
    left: -10px;
}

@keyframes floatUp {
    0% { transform: translateY(0) rotate(45deg); opacity: 0.5; }
    100% { transform: translateY(-100vh) rotate(45deg); opacity: 0; }
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    z-index: 10;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    color: #333;
}

.title {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #e91e63;
}

.message {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.question {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.yes-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    transform: scale(1);
}

.no-btn {
    background: linear-gradient(45deg, #a8a8a8, #6c757d);
    color: white;
}

.reasons {
    margin-top: 20px;
}

.reasons h2 {
    font-size: 1.3em;
    color: #e91e63;
}

.reasons p {
    font-size: 1.1em;
    margin: 10px 0;
}

.countdown {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1.2em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.overlay-content {
    text-align: center;
    color: white;
    font-size: 2em;
}