* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffe4e1 0%, #ffc0cb 50%, #ffb6c1 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(255, 182, 193, 0.3);
    max-width: 500px;
    width: 100%;
    animation: slideIn 0.5s ease-out;
    border: 1px solid rgba(255, 182, 193, 0.2);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.heart {
    font-size: 65px;
    margin-bottom: 20px;
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.question {
    font-size: 28px;
    color: #d63384;
    margin-bottom: 30px;
    font-weight: 700;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 18px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.yes-btn {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.yes-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4), 0 0 15px rgba(255, 105, 180, 0.2);
}

.yes-btn:active {
    transform: translateY(0);
}

.no-btn {
    background: linear-gradient(135deg, #ffb6c1 0%, #ff69b4 100%);
    color: white;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.time-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.option-btn {
    padding: 18px 25px;
    font-size: 18px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5), 0 0 20px rgba(255, 105, 180, 0.3);
}

.option-btn:active {
    transform: translateY(0);
}

.final-message {
    font-size: 22px;
    color: #d63384;
    line-height: 1.8;
    margin: 25px 0;
    padding: 25px;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e1 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 182, 193, 0.5);
    font-weight: 600;
    animation: messageAppear 0.8s ease-out;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.3);
}

@keyframes messageAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 35px 25px;
        margin: 10px;
    }
    
    .question {
        font-size: 24px;
    }
    
    .btn {
        padding: 15px 35px;
        font-size: 18px;
    }
    
    .time-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .option-btn {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .heart {
        font-size: 55px;
    }
}
