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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 120px;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content {
    background: white;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
}

h1 {
    font-size: 42px;
    color: #ff6b9d;
    margin-bottom: 20px;
}

.minion {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.question {
    font-size: 24px;
    color: #333;
    margin-bottom: 35px;
    font-weight: bold;
}

.button-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    padding: 14px 35px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.yes-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    flex: 1;
    min-width: 110px;
}

.yes-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.yes-btn:active {
    transform: scale(0.98);
}

.no-btn {
    background: #ffb6c1;
    color: #333;
    position: relative;
    min-width: 110px;
}

.no-btn:hover {
    background: #ff69b4;
    color: white;
}

.success-message {
    margin-top: 30px;
    animation: popIn 0.5s ease-out;
}

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

.success-message h2 {
    color: #ff6b9d;
    font-size: 28px;
    margin-bottom: 15px;
}

.success-message p {
    color: #666;
    font-size: 18px;
    margin-bottom: 20px;
}

.hearts {
    font-size: 36px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hidden {
    display: none;
}

