/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container and layout */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

/* Typography */
.question {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 1px;
    animation: slideIn 1.5s ease-out;
}

.heart {
    font-size: 3rem;
    animation: heartbeat 2s infinite;
    margin-top: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .content {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .question {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .heart {
        font-size: 2.5rem;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .question {
        font-size: 1.6rem;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }
    
    .heart {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .question {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .heart {
        font-size: 1.8rem;
    }
}

/* Hover effects for desktop */
@media (hover: hover) {
    .content:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }
} 