
  .popup-overlay.svelte-aughg0 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .popup-content.svelte-aughg0 {
    background: rgba(20, 20, 20, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
  }

  h2.svelte-aughg0 {
    color: #4caf50;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
  }

  img.svelte-aughg0 {
    max-width: 100%;
    margin: 1rem auto;
    border: 2px solid #4caf50;
    border-radius: 8px;
    display: block;
  }

  .secret-string.svelte-aughg0 {
    word-break: break-all;
    padding: 10px;
    background: #1a1a1a;
    border: 2px solid #4caf50;
    border-radius: 8px;
    margin: 1rem auto;
    max-width: 200px;
    font-size: 14px;
  }

  input[type="text"].svelte-aughg0 {
    width: 100%;
    max-width: 200px;
    padding: 10px;
    font-size: 18px;
    text-align: center;
    border: 2px solid #4caf50;
    border-radius: 8px;
    background: #1a1a1a;
    color: #fff;
    outline: none;
    transition:
      border-color 0.2s,
      box-shadow 0.2s;
    margin: 1rem auto;
    display: block;
  }

  input[type="text"].svelte-aughg0:focus {
    border-color: #76c77a;
    box-shadow: 0 0 5px rgba(118, 199, 122, 0.5);
  }

  input[type="text"].svelte-aughg0:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 5px rgba(220, 53, 69, 0.5);
  }

  .enable-button.svelte-aughg0 {
    padding: 10px 20px;
    background: linear-gradient(45deg, #2a623d, #4caf50);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition:
      transform 0.2s,
      box-shadow 0.2s;
    margin: 1rem auto;
    display: block;
  }

  .enable-button.svelte-aughg0:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  }

  .close-button.svelte-aughg0 {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #4caf50;
    font-size: 20px;
    cursor: pointer;
  }

  .message.svelte-aughg0 {
    color: #fff;
    margin: 0.5rem 0;
  }

  .error-message.svelte-aughg0 {
    color: #dc3545;
    margin: 1rem 0;
  }
