/* Existing Popup Styles */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Dim overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background-color: #1C1C1C; /* Match site theme */
  color: #F1F1F1; /* Light text */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.8); /* Orange glow effect */
  text-align: center;
  max-width: 400px;
  width: 80%;
}

.popup-content h3 {
  font-family: 'Impact', sans-serif; /* Bold Dragon Ball font */
  color: #FFCC00; /* Orange-yellow text */
  margin-bottom: 10px;
  text-shadow: 0 0 5px #FFCC00, 0 0 10px #FF9900;
}

.popup-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

#close-popup {
  background-color: #FFCC00; /* Orange button */
  color: #1C1C1C;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#close-popup:hover {
  background-color: #FFC107; /* Lighter orange */
}

.hidden {
  display: none;
}

/* Floating Widget Styles */
.floating-widget {
  position: absolute; /* Change to absolute for manual positioning */
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: #1C1C1C;
  color: #F1F1F1;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
  padding: 15px;
  z-index: 1000;
  cursor: grab; /* Indicate draggable */
  user-select: none; /* Prevent text selection */
  touch-action: none; /* Prevent default touch actions */
}

.floating-widget:active {
  cursor: grabbing; /* Change cursor when dragging */
}

.floating-widget h4 {
  margin: 0;
  font-family: 'Impact', sans-serif;
  color: #FFCC00;
  text-shadow: 0 0 5px #FFCC00, 0 0 10px #FF9900;
}

.floating-widget p {
  margin: 10px 0;
  font-size: 14px;
  font-style: italic;
}

.floating-widget span {
  font-size: 12px;
  font-weight: bold;
  color: #FFCC00;
  display: block;
  margin-top: 5px;
  text-align: right;
}

.floating-widget button {
  background-color: #FFCC00;
  color: #1C1C1C;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  float: right;
  font-size: 12px;
}

.floating-widget button:hover {
  background-color: #FFC107;
}