.dcc-wrap { max-width: 900px; margin: 0 auto; }

.dcc-card{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.dcc-accent{
  height: 4px;
  background: linear-gradient(90deg, rgba(6,182,212,0.55), rgba(6,182,212,1));
}

.dcc-inner{ padding: 22px; }
.dcc-head{ text-align: center; margin-bottom: 18px; }
.dcc-head h2{ margin: 0; font-size: 26px; line-height: 1.2; }
.dcc-head p{ margin: 6px 0 0; color: rgba(255,255,255,0.65); font-size: 13px; }

.dcc-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 860px){
  .dcc-grid{ grid-template-columns: 1fr 1fr; }
}

.dcc-field{ margin: 0 0 16px; }
.dcc-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  margin-bottom: 8px;
}
.dcc-val{ color: #06b6d4; font-weight: 700; }

.dcc-field input[type="range"]{
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  outline: none;
  appearance: none;
}
.dcc-field input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #06b6d4;
  cursor: pointer;
}

.dcc-money{
  position: relative;
}
.dcc-money > span{
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}
.dcc-money input[type="number"]{
  width: 100%;
  padding: 10px 12px 10px 26px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: #fff;
  outline: none;
}
.dcc-money input[type="number"]:focus{
  border-color: rgba(6,182,212,0.55);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.18);
}

.dcc-foot{
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 860px){
  .dcc-foot{ flex-direction: row; }
}

.dcc-sub{ font-size: 13px; color: rgba(255,255,255,0.70); }
.dcc-micro{ font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 4px; }

.dcc-total{
  border-radius: 14px;
  padding: 14px 18px;
  background: rgba(6,182,212,0.10);
  border: 1px solid rgba(6,182,212,0.25);
}
.dcc-total-val{
  font-weight: 800;
  color: #06b6d4;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (max-width: 420px){
  .dcc-total-val{ font-size: 34px; }
}
