/* Styling using modern vibrant aesthetics */
:root {
    --bg-color: #ffdde1;
    --acc-color: #ee9ca7;
    --text-color: #333;
    --card-bg: rgba(255, 255, 255, 0.85);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--acc-color) 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: var(--text-color);
}

/* Background Floating Elements */
.background-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.floating-img {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

.kit1 { top: 10%; left: 5%; width: 120px; animation-delay: 0s; }
.kit2 { bottom: 10%; right: 5%; width: 150px; animation-delay: 2s; }

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

/* Main Card */
.card {
    position: relative;
    z-index: 10;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.5s ease;
}

.hero-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 25px rgba(238, 156, 167, 0.5);
    margin-bottom: 20px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05) rotate(-3deg);
}

h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #db2777; /* Deep pink */
    line-height: 1.2;
}

.sub-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    min-height: 25px;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    min-height: 70px;
}

.btn {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.yes-btn {
    background: #10b981; /* Green */
    color: white;
}

.yes-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.no-btn {
    background: #ef4444; /* Red */
    color: white;
    position: relative;
    transition: all 0.2s;
}

.no-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

/* Animations */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.4s ease-in-out;
}
