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

html, body {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: whitesmoke;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.wrapper {
    width: 100%;
    max-width: 420px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

.question, h2 {
    text-align: center;
    font-size: clamp(1.15rem, 4.8vw, 1.45rem);
    color: #e94d58;
    margin: 12px 0 16px 0;
    line-height: 1.4;
    word-break: normal;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
}

.gif {
    width: 80%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.btn-group {
    width: 100%;
    max-width: 300px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    position: relative;
}

button {
    width: 120px;
    height: 48px;
    font-size: 1.05rem;
    border-radius: 30px;
    outline: none;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #e94d58;
    font-family: inherit;
    transition: transform 0.15s ease, background 0.2s ease;
    touch-action: manipulation;
}

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

.yes-btn {
    position: absolute;
    right: calc(50% + 10px);
    background: #e94d58;
    color: white;
}

.no-btn {
    position: absolute;
    left: calc(50% + 10px);
    background: white;
    color: #e94d58;
}