/* Crash Game Plus styles */
.crashgp{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #e6e9ef;
  background: #0b0e13;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  max-width: 980px;
  margin: 0 auto;
}
.crashgp-header{
  display:flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.crashgp .title{
  margin:0;
  font-weight: 700;
  letter-spacing: .3px;
}
.crashgp .wallet{
  background: #151a22;
  padding: 8px 12px;
  border-radius: 10px;
  color: #b6c0d1;
}
.stage-wrap{
  position: relative;
  border: 1px solid #1c2230;
  border-radius: 12px;
  overflow: hidden;
}
#crashgp-canvas{
  width: 100%;
  height: 420px;
  display: block;
}
.controls{
  display:flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.controls label{
  display:flex; align-items:center; gap:8px;
  background:#131821; border:1px solid #1f2634; padding:8px 10px; border-radius:10px;
}
.controls input{
  background: transparent; color: #e6e9ef; border:none; outline:none; width:120px;
}
.controls button{
  background: #ff7a18; border:none; color:#0b0e13; font-weight:700; padding:10px 16px;
  border-radius: 10px; cursor:pointer; transition: transform .05s ease, opacity .2s ease;
}
.controls button:disabled{ opacity: .5; cursor: not-allowed; }
.controls button:hover:not(:disabled){ transform: translateY(-1px); }
.mult{ margin-left:auto; color:#9fb0c9; }
.alert{
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(20,28,40,.9);
  border:1px solid #324059;
  padding: 10px 14px; border-radius: 10px;
  color: #e6e9ef; font-weight: 600;
  z-index: 3;
}
.alert.ok{ border-color:#24c870; }
.alert.warn{ border-color:#f0c23e; }
.alert.error{ border-color:#e14d4d; }
