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

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    background-color: #f9f7f1;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 29px,
            #a7d7f9 29px,
            #a7d7f9 30px
        );
    background-position: 0 0;
}

.container {
    position: relative;
    z-index: 10;
    padding: 20px;
}

.card {
    background: transparent;
    padding: 40px;
    text-align: center;
    max-width: 500px;
}

.image-container {
    margin-bottom: 30px;
}

.image-container img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

.question {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 30px;
    font-weight: bold;
}

.thank-you {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 30px;
    font-weight: bold;
}

.thank-you.hidden {
    display: none;
}

.success-images {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.success-images.hidden {
    display: none;
}

.success-images img {
    width: 150px;
    height: 200px;
    object-fit: contain;
}

.success-images img:nth-child(1) {
    transform: rotate(-8deg);
}

.success-images img:nth-child(2) {
    transform: rotate(0deg);
    z-index: 2;
}

.success-images img:nth-child(3) {
    transform: rotate(8deg);
}

.buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.buttons-container.hidden {
    display: none;
}

.btn {
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn:hover {
    transform: scale(1.05);
}

.btn:active {
    transform: scale(0.98);
}

.btn-yes {
    background: #ff4757;
    color: white;
    min-width: 120px;
    border-color: #ff4757;
}

.btn-yes:hover {
    background: #ff3838;
    border-color: #ff3838;
}

.btn-no {
    background: #dfe4ea;
    color: #2f3542;
    min-width: 120px;
    border-color: #ced6e0;
}

.btn-no:hover {
    background: #ced6e0;
    border-color: #a4b0be;
}

@media (max-width: 600px) {
    .card {
        padding: 20px;
    }
    
    .question {
        font-size: 1.5rem;
    }
    
    .thank-you {
        font-size: 1.5rem;
    }
    
    .image-container img {
        width: 200px;
        height: 200px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .buttons-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .success-images {
        gap: 10px;
    }
    
    .success-images img {
        width: 100px;
        height: 140px;
    }
}
