body {
  margin: 0;
  padding: 0;
  background: transparent;
}

#kali-ai-widget {
  box-sizing: border-box;
  padding: 8px;
  overflow: hidden;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 220px;
  min-height: auto;
  max-width: calc(100vw - 40px);
  background: transparent;
  backdrop-filter: none;
  color: white;
  border: 1px solid #c9a96e;
  border-radius: 18px;
  padding: 12px;
  z-index: 9999;
  box-shadow: 0 0 35px rgba(201,169,110,.35);
}

.kali-header {
  text-align: center;
  color: #c9a96e;
  font-size: 22px;
  margin-bottom: 10px;
}

.kali-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: radial-gradient(circle, #c9a96e, #0a0805);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 55px;
}

#kali-answer, #kali-question {
  font-size: 15px;
  line-height: 1.4;
  margin: 10px 0;
  color: #f0ebe3;
}

button {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 10px;
  margin-top: 10px;
  background: #c9a96e;
  color: #0a0805;
  font-weight: bold;
  cursor: pointer;
}

.secondary {
  background: transparent;
  border: 1px solid #c9a96e;
  color: #c9a96e;
}
#avatar3d {
  width: 100%;
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(circle at center, #2a2118, #0a0805);
  margin-bottom: 8px;
}

#avatar3d canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
@media (max-width: 768px) {

  #kali-ai-widget {
    width: 180px;
    padding: 8px;
    right: 10px;
    bottom: 10px;
  }

  #avatar3d {
    height: 90px;
  }

  .kali-header {
    font-size: 14px;
  }

  #talkBtn,
  .secondary {
    font-size: 12px;
    padding: 10px;
  }

  #kali-question,
  #kali-answer {
    font-size: 11px;
    line-height: 1.3;
  }
}
