#super-quest-section {
    max-width: 340px; margin: 30px auto; padding: 25px;
    background: #fff; border: 3px solid #222; border-radius: 25px;
    text-align: center; font-family: -apple-system, sans-serif;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); box-sizing: border-box;
}
.quest-status-bar { display: flex; justify-content: space-between; margin-bottom: 20px; font-weight: bold; }
#quest-timer { color: #e74c3c; background: #fff1f1; padding: 5px 10px; border-radius: 8px; }
#found-counter { color: #007bff; }
.quest-inputs-row { display: flex; justify-content: space-between; gap: 8px; }
.q-input {
    width: 22% !important; height: 60px !important; text-align: center !important; font-size: 28px !important;
    border: 2px solid #ddd !important; border-radius: 12px !important; background: #f9f9f9 !important;
}
#quest-start-btn, #quest-check-btn {
    width: 100%; padding: 16px; margin-top: 20px; border-radius: 12px;
    border: none; background: #007bff; color: #fff; font-weight: bold; cursor: pointer;
}
.quest-item {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; background: #ff6600; color: #fff;
    border-radius: 50%; margin: 0 5px; cursor: pointer; border: 2px solid #fff;
}
.quest-item.found { background: #27ae60; transform: scale(1.1); }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.congrats-text { font-size: 32px; color: #27ae60; animation: bounce 1s infinite; }
