.debug-banner {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
  
    display: flex;
    align-items: center;
    gap: 12px;
  
    max-width: 700px;
    padding: 12px 16px;
  
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 10px;
  
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  
    font-family: system-ui, sans-serif;
  }
  
  .debug-icon {
    font-size: 20px;
  }
  
  .debug-title {
    font-weight: 600;
    color: #7a5a00;
    margin-bottom: 2px;
  }
  
  .debug-text {
    font-size: 13px;
    color: #5c4a00;
    line-height: 1.4;
  }