/* Card Base Styling */
.market-card-component {
    background: linear-gradient(135deg, #fff2cf 0%, #fc9 50%, #ffb04d 100%);
    border-radius: 12px;
    margin-bottom: 0px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
    border: 1px solid #dc3545;
    overflow: hidden;
}

.market-card-component .card-header-bar {
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px;
  text-align: center;
  background: linear-gradient(135deg, #ff0016 0%, #fc9 52%, #264bff 100%);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #dc3545;
}

.market-card-component .card-body {
  min-height: 140px;
  position: relative;
  padding: 0;
}

/* Unlock State Button */
.market-card-component .unlock-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0px;
  position: absolute;
  bottom: 0px;
}

.market-card-component .unlock-btn {
  padding: 11px 20px;
  border-radius: 40px;
  color: #7a1600;
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 29, 29, 0.7);
  box-shadow: 0 8px 18px rgba(122, 22, 0, 0.18);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.market-card-component .unlock-btn:hover {
  background-color: #f8f8f8;
  color: #000000;
}

/* Scratch Wrapper & Canvas Overlay */
.market-card-component .scratch-wrapper {
  position: relative;
  width: 100%;
  min-height: 140px;
  border-radius: 8px;
  overflow: hidden;
  touch-action: none;
}

.market-card-component .scratch-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  border-radius: 8px;
}

/* Revealed Table */
.market-card-component .market-table {
  width: 100%;
  margin-bottom: 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.market-card-component .market-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.market-card-component .market-table tr:last-child {
  border-bottom: none;
}

.market-card-component .market-table td {
  background-color: transparent !important;
  padding: 12px 14px;
  font-size: 0.9rem;
}

.market-card-component .label-col {
  font-weight: 700;
  color: #444444;
  width: 120px;
  text-align: left;
}

.market-card-component .value-col {
  font-weight: 800;
  color: #000000;
  text-align: right;
  letter-spacing: 0.5px;
}