/* Parent Scoped Container */
.magic-otc-generator-component {
  width: 100%;
  margin-bottom: 24px;
}

.magic-otc-generator-component .otc-card {
  background-color: #ffd4a8;
  border: 1px solid #eab382;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.magic-otc-generator-component .otc-card-header {
  background-color: #fce1be;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #f3cb9e;
}

.magic-otc-generator-component .header-icon {
  font-size: 16px;
}

.magic-otc-generator-component .header-title {
  color: chocolate;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.magic-otc-generator-component .otc-card-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.magic-otc-generator-component .description-text {
  color: #665243;
  font-size: 13px;
  margin-bottom: 20px;
  max-width: 700px;
}

.magic-otc-generator-component .otc-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
  gap: 14px;
}

.magic-otc-generator-component .otc-input {
  width: 100%;
  height: 44px;
  background-color: #ffffff;
  border: 1px solid #d4c0ab;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #111;
  outline: none;
}

.magic-otc-generator-component .otc-btn {
    width: 100%;
    height: 44px;
    background: #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .2);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.magic-otc-generator-component .otc-btn:hover {
  opacity: 0.9;
}

.magic-otc-generator-component .divider-line {
  width: 100%;
  border-bottom: 1px dashed #e6c09b;
  margin: 24px 0 16px;
}

.magic-otc-generator-component .result-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.magic-otc-generator-component .result-label {
  font-size: 10px;
  font-weight: 800;
  color: #8c7361;
  letter-spacing: 0.5px;
}

.magic-otc-generator-component .result-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.magic-otc-generator-component .result-value {
  font-size: 22px;
  font-weight: 900;
  color: #0c56d0;
  letter-spacing: 2px;
}

.magic-otc-generator-component .success-badge {
  color: #16a34a;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.magic-otc-generator-component .check-icon {
  background-color: #16a34a;
  color: #ffffff;
  font-size: 10px;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}