* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', 'Helvetica', sans-serif;
    overflow: hidden;
    position: relative;
}

/* Fondo de flores coloridas */
.flower-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #a1c4fd 100%);
    z-index: -2;
}

/* Flores animadas en el fondo */
.flowers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.flower {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(10deg); 
    }
}

/* Contenedor principal */
.container {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

h1 {
    font-size: 2.5rem;
    color: #ff6b9d;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

button {
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 120px;
}

#siBtn {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

#siBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

#siBtn:active {
    transform: scale(0.95);
}

#noBtn {
    background: linear-gradient(135deg, #6c5ce7, #a8a4e6);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

#noBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.6);
}

#noBtn:active {
    transform: scale(0.95);
}

/* Pantalla de TE AMO */
.te-amo-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    z-index: 10;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.te-amo-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 12;
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.te-amo-text h2 {
    color: #ff6b9d;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.idiomas {
    font-size: 1.2rem;
    line-height: 2;
    color: #c44569;
}

.idioma-item {
    margin: 0.5rem 0;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Corazones flotantes */
.hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 11;
}

.heart {
    position: absolute;
    font-size: 2rem;
    animation: floatHeart 4s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes floatHeart {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg) scale(1.5);
        opacity: 0;
    }
}

/* Emoji triste */
.sad-emoji {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    z-index: 15;
    animation: pulse 1s ease infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Estilos responsive */
@media (max-width: 600px) {
    .container {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    button {
        width: 100%;
        font-size: 1.2rem;
    }
    
    .te-amo-text {
        padding: 1.5rem;
    }
    
    .idiomas {
        font-size: 1rem;
    }
    
    .sad-emoji {
        font-size: 6rem;
    }
}