.click-curr .sta-title-num{
       font-size: 7rem;
}
.money-curr.click-curr .sta-block {
    background-color: #0b75e3;
}
.sta-item.money-curr .sta-ft{
    display: flex;
    align-self: center;
    gap: 10px;
    width: 100%;
}


.popup-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 550px;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease;
}

.popup-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.popup-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.popup-buttons {
  display: flex;
  justify-content: space-between;
}

.popup-btn {
  padding: 10px 20px;
  border: none;
  background-color: #2d9cdb;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}

.popup-btn:hover {
  background-color: #1b7dbf;
}

.popup-close {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}

.popup-close:hover {
  color: #000;
}

@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes slideIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.btn-tk{
    background: #0b75e3;
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
    margin-top: 10px;
}
.popup-content strong{
    font-weight: bold !important;
}
#closePopupBtn{
    border: 1px solid #ffaeae;
    background: #f3f3f3;
    padding: 0;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    line-height: 1;
    color: red;
    font-size: 22px;
}
/* Overlay */
.withdraw-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Popup box */
.withdraw-popup {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: popup-fade-in 0.3s ease;
  color: #222;
}

/* Title */
.withdraw-title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

/* Input */
.withdraw-input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Button group */
.withdraw-btn-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.withdraw-submit,
.withdraw-close {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.withdraw-submit {
  background-color: #0073aa;
  color: #fff;
}

.withdraw-close {
  background-color: #ddd;
  color: #333;
}

@keyframes popup-fade-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.withdraw-history{
    padding: 10px 0;
    text-align: center;
}