    /* Strength meter */
    .strength-meter{
      height: 10px;
      border-radius: 999px;
      overflow: hidden;
      border: 1px solid var(--border-color, #1f2a44);
      background: rgba(255,255,255,0.04);
    }
    .strength-bar{
      height: 100%;
      width: 0%;
      background: var(--success, #10b981);
      transition: width .3s, background-color .3s;
    }
    .strength-text,.entropy-text,.length-display{ text-align:center; }

    /* Generated password input */
    #password{
      width: 100%;
      padding: 14px;
      border-radius: 12px;
      border: 1px solid var(--border-color, #1f2a44);
      background: rgba(255,255,255,0.03);
      color: var(--text-primary, #e7ecff);
      margin: 10px 0 10px;
      font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
      word-break: break-all;
    }

    /* Status banner */
    .status{
      display:none;
      margin-bottom: 12px;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid transparent;
      font-size: 0.95rem;
      color: var(--text-secondary, #94a3b8);
      background: rgba(255,255,255,0.03);
    }
    .status.ok{
      display:block;
      border-color: rgba(16,185,129,.35);
      background: rgba(16,185,129,.10);
      color: #a7f3d0;
    }
    .status.error{
      display:block;
      border-color: rgba(239,68,68,.35);
      background: rgba(239,68,68,.10);
      color: #fecaca;
    }

    /* Toast */
    .notification{
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      padding: 10px 16px;
      border-radius: 12px;
      border: 1px solid var(--border-color, #374151);
      background: rgba(0,0,0,0.65);
      color: #fff;
      opacity: 0;
      transition: opacity .25s;
      z-index: 9999;
    }
    .notification.show{ opacity: 1; }

    /* Range slider basic */
    input[type="range"]{ width:100%; }

    /* Legal disclaimer: gold outline + gold heading */
    .legal-disclaimer{
      margin-top: 16px;
      border-radius: 14px;
      border: 1px solid rgba(245, 200, 76, 0.75);
      background: rgba(245, 200, 76, 0.06);
      padding: 16px 18px;
    }
    .legal-disclaimer h2{
      margin: 0 0 6px;
      font-size: 1rem;
      color: #f5c84c;
      letter-spacing: .2px;
    }
    .legal-disclaimer p{
      margin: 0;
      color: var(--text-secondary, #94a3b8);
      line-height: 1.65;
      font-size: 0.95rem;
    }

    @media print{
      .notification{ display:none !important; }
    }
