.css-16fmplq {
    --primary-color: #009ac0;
    --text-color: #333;
    --white: #fff;
    --shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  .css-16fmplq .modal.active {
    display: flex;
  }
  
  .css-16fmplq .modal-content {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    animation: fadeIn 0.5s ease;
  }
  
  .css-16fmplq .modal-content h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
  }
  
  .css-16fmplq .step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 0;
    background-color: var(--white);
    margin-left: 20%;
  }
  
  .css-16fmplq .step-icon {
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
    min-width: 30px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
  }
  
  .css-16fmplq .step-description {
    text-align: left;
  }
  
  .css-16fmplq .step-description p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
  }
  
  .css-16fmplq .key-icon {
    display: inline-block;
    color: var(--primary-color);
    padding: 5px 10px;
    margin: 0 5px;
    font-size: 0.9rem;
    border-radius: 5px;
    font-family: monospace;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    font-weight: bold;
  }
  
  .css-16fmplq .close-btn {
    font-size: 14px !important;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
  }
  
  .css-16fmplq .close-btn:hover {
    background: var(--primary-color);
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }