body {
    margin: 0;
    font-family: sans-serif;
    background: #0a0a0a; 
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.box {
    text-align: center;
    background: radial-gradient(800px 500px at 20% 0%, rgba(212, 175, 55, 0.8), #000000 60%), 
                radial-gradient(700px 400px at 90% 10%, rgba(255, 215, 0, 0.3), #000000 55%), 
                linear-gradient(180deg, #000000, #1a170d);
    padding: 30px;
    margin: 16px;
    color: #ffffff;
    font-weight: 800;
    border-radius: 18px;
    max-width: 300px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2); 
    border: 1px solid rgba(212, 175, 55, 0.3);
}

button {
    width: 76%;
    margin: 10px 0;
    padding: 12px;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: scale(1.05); 
}

.yes {
    background: linear-gradient(180deg, #FFDF00, #D4AF37); 
    color: #000000;
    box-shadow: 0 4px 10px rgba(255, 223, 0, 0.3);
}

.no {
    background: linear-gradient(180deg, #ef4444, #b91c1c);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}