  .badge-oster {
    display: inline-flex;
    align-items: center;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    padding: 5px 20px 5px 10px;
    background: linear-gradient(90deg, #F59E0B 0%, #F97316 100%);
    cursor: default;
    margin-top: 5px;
  }
 
  .badge-oster-text {
    margin-right: 6px;
  }
 
  .badge-oster-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    line-height: 1;
    transition: background 0.15s;
  }
 
  .badge-oster-info:hover {
    background: rgba(255, 255, 255, 0.25);
  }
 
  /* Overlay */
  .oster-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
 
  .oster-overlay.open {
    display: flex;
  }
 
  /* Modal */
  .oster-modal {
    background: #0d1b3e;
    border-radius: 8px;
    border: 1px solid #1e3a6e;
    padding: 1.25rem;
    max-width: 300px;
    width: 90%;
    position: relative;
    color: #fff;
    font-family: inherit;
  }
 
  .oster-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
    padding: 0;
  }
 
  .oster-modal-close:hover {
    color: #fff;
  }
 
  .oster-modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }
 
  .oster-modal-icon {
    font-size: 26px;
  }
 
  .oster-modal-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
 
  .oster-modal-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin: 2px 0 0;
  }
 
  .oster-modal hr {
    border: none;
    border-top: 1px solid #1e3a6e;
    margin: 10px 0;
  }
 
  .oster-modal-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 7px;
  }
 
  .oster-modal-key {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
  }
 
  .oster-modal-val {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-align: right;
  }
 
  .oster-modal-val.accent {
    color: #F97316;
  }
 
  .oster-modal-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 8px 10px;
    margin-top: 10px;
    line-height: 1.5;
  }
 
  .oster-modal-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 9px;
    background: #F97316;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s;
    box-sizing: border-box;
  }
 
  .oster-modal-btn:hover {
    background: #ea6c0a;
  }

