* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0BA360 0%, #3CBAB2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.view {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.view.active {
    display: flex;
    opacity: 1;
    z-index: 10;
}

.image-container {
    margin-bottom: 30px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    background: white;
    padding: 15px;
    animation: float 4s ease-in-out infinite;
    width: 70vw;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    display: block;
}

h1 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    padding: 0 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

p {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-top: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.buttons {
    display: flex;
    gap: 25px;
    width: 100%;
    max-width: 400px;
    justify-content: center;
    padding: 0 15px;
}

.btn {
    flex: 1;
    padding: 15px 20px;
    font-size: 1.3rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    color: white;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.btn:active {
    transform: scale(0.92);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.btn-yes {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    box-shadow: 0 10px 20px rgba(56, 239, 125, 0.3);
}

.btn-no {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    box-shadow: 0 10px 20px rgba(244, 92, 67, 0.3);
}

.btn-back {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    padding: 12px 35px;
    margin-top: 35px;
    flex: none;
    color: white;
}

/* Specific Views */
#yes-view {
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
}

#yes-view h1.happy-text {
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

#yes-view p {
    color: #ffebee;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

#no-view {
    background: linear-gradient(135deg, #141E30 0%, #243B55 100%);
}

#no-view h1.sad-text {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#no-view p {
    color: #b0bec5;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.bounce {
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    z-index: 100;
}

@keyframes fall {
    0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}
