body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff0f3;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    color: #ff4d6d;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.button-box {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 100px;
}

button {
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
}

#yesBtn {
    background-color: #ff4d6d;
    color: white;
    position: relative;
}

#noBtn {
    background-color: #590d22;
    color: white;
}

#dialogueBox {
    display: none;
    margin-top: 30px;
    padding: 20px;
    background: white;
    border: 2px dashed #ff4d6d;
    border-radius: 15px;
    color: #590d22;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-in;
}

/* The Secret Dot - Hidden initially */
.off-element {
    position: absolute;
    bottom: 25px;
    right: 35px;
    color: #fff0f3; /* Matches background */
    cursor: pointer;
    font-size: 40px; /* Big enough to see once it turns pink */
    font-weight: bold;
    user-select: none;
    transition: color 0.4s ease;
    padding: 20px; /* Makes it easier to hover over */
}

/* Animation triggered by JS after 5 hovers */
.pulse-hint {
    animation: pulse 2s infinite;
    color: #ffd1dc; /* Very faint pink */
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.8); opacity: 1; }
    100% { transform: scale(1); opacity: 0.3; }
}

.off-element:hover {
    color: #ff4d6d !important; /* Turns bright pink when found */
    transform: scale(1.5);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}