.legal-modal {
      display: none;
      position: fixed;
      z-index: 10000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
    }

    .legal-modal-content {
      background-color: #000;
      color: #fff;
      margin: 10% auto;
      padding: 20px;
      border: 1px solid #444;
      width: 80%;
      max-width: 600px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
      position: relative;
    }

    .legal-close {
      color: #fff;
      float: right;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
    }

    .legal-close:hover {
      color: #ccc;
    }

    .legal-text {
      margin-top: 20px;
      line-height: 1.6;
    }

    .legal-modal-button {
      background: black;
      color: #fff;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      border-radius: 4px;
      margin: 20px;
    }

    .legal-modal-button:hover {
      background: #555;
    }
