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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
}

h1 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.button-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    min-height: 150px;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.yes-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    transform-origin: center;
}

.yes-btn:hover {
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
}

.no-btn {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.no-btn.floating {
    position: fixed;
}

.no-btn:hover {
    background: linear-gradient(135deg, #fed6e3 0%, #a8edea 100%);
}

img {
    max-width: 100%;
    border-radius: 15px;
    margin-top: 1rem;
}
