/* Dağıtım ve bakiye kontrolleri; oyun mantığını değiştirmez. */
.deal-button {
  /* Mevcut 279px masaüstü genişliğinden %5 daha dar. */
  min-width: 265px;
}

.balance-panel .reset-control #resetBtn {
  margin: 0;
  padding: 8px 11px;
  border: 1px solid rgba(215, 185, 111, .5);
  border-radius: 8px;
  color: #f1d491;
  background: linear-gradient(180deg, rgba(215, 185, 111, .15), rgba(215, 185, 111, .07));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}

.balance-panel .reset-control #resetBtn:hover:not(:disabled) {
  border-color: rgba(240, 209, 139, .85);
  background: rgba(215, 185, 111, .2);
  transform: translateY(-1px);
}

/* 8px olan yenileme hakkı bilgisi tam %10 büyütüldü. */
.reset-control #resetAllowance { font-size: 8.8px; }

@media (max-width: 1180px) {
  /* Mevcut 239px ara ekran genişliğinden %5 daha dar. */
  .deal-button { min-width: 227px; }
}

@media (max-width: 820px) {
  .deal-button {
    width: 95%;
    min-width: 0;
  }
  .balance-panel .reset-control #resetBtn {
    display: block;
    padding: 3px 5px;
    font-size: 7px;
    line-height: 1.15;
  }
  /* Mobildeki 5px değerin %10 büyütülmüş karşılığı. */
  .reset-control #resetAllowance { font-size: 5.5px; }
}
