body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #880e4f;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
    max-width: 450px;
    width: 90%;
    border: 4px solid #f8bbd0;
    backdrop-filter: blur(10px);
}

h1 {
    color: #ad1457;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.compliment-box {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #c2185b;
    border: 3px dashed #f48fb1;
    border-radius: 20px;
    padding: 1.5rem;
    background-color: #fdf2f8;
    line-height: 1.4;
}

button {
    background-color: #ec407a;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(236, 64, 122, 0.4);
}

button:hover {
    background-color: #d81b60;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(236, 64, 122, 0.5);
}

button:active {
    transform: scale(0.95);
}
