.pj-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8,8,26,.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.pj-overlay.active {
  opacity: 1;
  visibility: visible;
}

.pj-container {
  background: rgba(13, 13, 24, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 255, 224, 0.3);
  border-radius: 16px;
  width: 100%;
  max-width: 800px;
  height: 90vh;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 255, 224, 0.15), inset 0 0 20px rgba(255, 0, 153, 0.05);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}


.pj-header {
  background: rgba(8, 8, 26, 0.6);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 255, 224, 0.2);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pj-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #00FFE0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pj-title span {
  color: #EBEBF2;
  font-size: .9rem;
  font-family: 'Roboto Mono', monospace;
}

.pj-close {
  background: transparent;
  border: 1px solid #202040;
  color: #888;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.pj-close:hover {
  border-color: #FF0099;
  color: #FF0099;
  background: rgba(255,0,153,.1);
}

.pj-body {
  display: block;
  padding: 25px;
  overflow-y: auto;
  flex: 1;
  height: calc(100% - 150px);
}

.pj-steps {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.pj-step {
  flex: 1;
  min-width: 70px;
  padding: 15px 10px;
  background: rgba(18, 18, 26, 0.5);
  border: 1px solid rgba(32, 32, 64, 0.5);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: .8rem;
  color: #888;
  position: relative;
  overflow: hidden;
}

.pj-step::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 224, 0.1), transparent);
  transition: all 0.5s;
}

.pj-step:hover::before {
  left: 100%;
}

.pj-step:hover,
.pj-step.active {
  border-color: #00FFE0;
  color: #00FFE0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 224, 0.15);
}

.pj-step.active {
  background: rgba(0, 255, 224, 0.15);
  font-weight: bold;
}

.pj-step.pj-step-user {
  border-color: #FF0099;
  color: #FF0099;
}

.pj-step.pj-step-user.active {
  background: rgba(255, 0, 153, 0.15);
  box-shadow: 0 5px 15px rgba(255, 0, 153, 0.15);
}

.pj-step-num {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.pj-panel {
  display: none;
}

.pj-panel.active {
  display: block;
  animation: pjFade .3s;
}

@keyframes pjFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pj-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.pj-group {
  flex: 1;
  margin-bottom: 20px;
}

.pj-row .pj-group {
  margin-bottom: 0;
}

.pj-label {
  display: block;
  font-size: .8rem;
  color: #888;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: 'Roboto Mono', monospace;
}

.pj-req {
  color: #FF0099;
}

.pj-input,
.pj-select,
.pj-textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(18, 18, 26, 0.6);
  border: 1px solid rgba(32, 32, 64, 0.8);
  border-radius: 8px;
  color: #EBEBF2;
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.pj-input:focus,
.pj-select:focus,
.pj-textarea:focus {
  outline: none;
  border-color: #00FFE0;
  background: rgba(18, 18, 26, 0.9);
  box-shadow: 0 0 0 3px rgba(0, 255, 224, 0.2), inset 0 2px 4px rgba(0,0,0,0.1);
}

.pj-input::placeholder,
.pj-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.pj-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300FFE0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.pj-select option {
  background: #08081A;
  color: #EBEBF2;
}

.pj-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.pj-textarea.pj-small {
  min-height: 80px;
}

.pj-hint {
  font-size: .75rem;
  color: #555;
  margin-top: 6px;
}

.pj-divider {
  border: none;
  border-top: 1px dashed #202040;
  margin: 25px 0;
}

.pj-section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: .9rem;
  color: #00FFE0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pj-section-title.pj-accent {
  color: #FF0099;
}

.pj-upload-area {
  border: 2px dashed rgba(0, 255, 224, 0.4);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(10, 10, 18, 0.5);
  position: relative;
  overflow: hidden;
}

.pj-upload-area::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(0,255,224,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.pj-upload-area:hover::after {
  opacity: 1;
}

.pj-upload-area:hover {
  border-color: #00FFE0;
  background: rgba(0, 255, 224, 0.05);
  transform: translateY(-2px);
}

.pj-upload-area.dragover {
  border-color: #FF0099;
  background: rgba(255, 0, 153, 0.1);
  transform: scale(1.02);
}

.pj-upload-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.pj-upload-text {
  color: #888;
  font-size: .9rem;
}

.pj-upload-text strong {
  color: #00FFE0;
}

.pj-upload-hint {
  font-size: .75rem;
  color: #555;
  margin-top: 8px;
}

.pj-upload-input {
  display: none;
}

.pj-files {
  margin-top: 15px;
}

.pj-file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: #12121a;
  border: 1px solid #202040;
  border-radius: 6px;
  margin-bottom: 8px;
}

.pj-file-icon {
  font-size: 1.5rem;
}

.pj-file-info {
  flex: 1;
  overflow: hidden;
}

.pj-file-name {
  font-size: .85rem;
  color: #EBEBF2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pj-file-size {
  font-size: .75rem;
  color: #555;
}

.pj-file-remove {
  background: transparent;
  border: none;
  color: #FF0099;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 5px;
}

.pj-file-progress {
  width: 100%;
  height: 3px;
  background: #202040;
  border-radius: 3px;
  margin-top: 5px;
}

.pj-file-progress-bar {
  height: 100%;
  background: linear-gradient(90deg,#00FFE0,#00ccb4);
  transition: width .3s;
}

.pj-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.pj-option {
  position: relative;
}

.pj-option input {
  position: absolute;
  opacity: 0;
}

.pj-option-label {
  display: block;
  padding: 15px;
  background: #12121a;
  border: 1px solid #202040;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: all .2s;
}

.pj-option-label:hover {
  border-color: #00FFE0;
}

.pj-option input:checked + .pj-option-label {
  background: rgba(0,255,224,.1);
  border-color: #00FFE0;
  color: #00FFE0;
}

.pj-option-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 5px;
}

.pj-option-text {
  font-size: .8rem;
}

.pj-captcha-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #12121a;
  border: 1px solid #202040;
  border-radius: 6px;
  padding: 15px;
  flex-wrap: wrap;
}

.pj-captcha-code {
  background: linear-gradient(135deg,#1a1a25,#252535);
  border-radius: 6px;
  padding: 12px 18px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: #00FFE0;
  user-select: none;
}

.pj-captcha-refresh {
  background: transparent;
  border: 1px solid #202040;
  color: #00FFE0;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all .3s;
}

.pj-captcha-refresh:hover {
  transform: rotate(180deg);
}

.pj-captcha-input {
  flex: 1;
  min-width: 120px;
}

.pj-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.pj-check-input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  appearance: none;
  background: #12121a;
  border: 2px solid #202040;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.pj-check-input:checked {
  background: #00FFE0;
  border-color: #00FFE0;
}

.pj-check-input:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #08081A;
  font-size: 14px;
  font-weight: bold;
}

.pj-check-label {
  font-size: .85rem;
  color: #888;
  line-height: 1.5;
}

.pj-check-label a {
  color: #00FFE0;
  text-decoration: none;
}

.pj-check-label a:hover {
  color: #FF0099;
}

.pj-input-group {
  display: flex;
  gap: 10px;
}

.pj-ddi {
  width: 115px;
  flex-shrink: 0;
}

.pj-user-box {
  background: rgba(0,255,224,.05);
  border: 1px solid #00FFE0;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-bottom: 25px;
}

.pj-user-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.pj-user-text {
  color: #888;
  font-size: .9rem;
  line-height: 1.6;
}

.pj-user-text strong {
  color: #00FFE0;
}

.pj-password-strength {
  height: 4px;
  background: #202040;
  border-radius: 4px;
  margin-top: 8px;
}

.pj-password-bar {
  height: 100%;
  width: 0;
  transition: all .3s;
}

.pj-password-bar.weak {
  width: 33%;
  background: #ff4757;
}

.pj-password-bar.medium {
  width: 66%;
  background: #ffa502;
}

.pj-password-bar.strong {
  width: 100%;
  background: #2ed573;
}

.pj-footer {
  padding: 20px 25px;
  background: #08081A;
  border-top: 1px solid #202040;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pj-btn {
  padding: 16px 30px;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pj-btn-secondary {
  background: rgba(32, 32, 64, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbb;
}

.pj-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(32, 32, 64, 0.6);
}

.pj-btn-primary {
  background: linear-gradient(135deg, #00FFE0, #0099ff);
  border: none;
  color: #08081A;
  box-shadow: 0 4px 15px rgba(0, 255, 224, 0.3);
}

.pj-btn-primary:hover {
  box-shadow: 0 8px 25px rgba(0, 255, 224, 0.5);
  transform: translateY(-3px) scale(1.02);
}

.pj-btn-accent {
  background: linear-gradient(135deg, #FF0099, #cc007a);
  border: none;
  color: #EBEBF2;
  box-shadow: 0 4px 15px rgba(255, 0, 153, 0.3);
}

.pj-btn-accent:hover {
  box-shadow: 0 8px 25px rgba(255, 0, 153, 0.5);
  transform: translateY(-3px) scale(1.02);
}

.pj-trigger {
    position: fixed;
    bottom: 140px;
    right: 11px;
    background: linear-gradient(135deg, var(--neon-secundario), var(--neon-secundario));
    color: #fff;
    border: none;
    padding: 5px 5px;
    border-radius: 50px;
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 5px 30px rgba(0, 255, 224, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: .5;
    font-size: 30px;
  min-width: 50px;
}
.pj-trigger:hover {opacity: 1;}
.pj-trigger span {display: none;font-size:16px;margin-right:10px;}
.pj-trigger:hover span {display: block;}
.pj-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(255, 0, 153, 0.5);
}

@media (max-width: 768px) {
  .pj-row {
    flex-direction: column;
    gap: 0;
  }
  
  .pj-row .pj-group {
    margin-bottom: 20px;
  }
  
  .pj-footer {
    flex-direction: column;
  }
  
  .pj-btn {
    width: 100%;
    justify-content: center;
  }
  
  .pj-body {
    padding: 10px 5px;
  }
  
  .pj-input-group {
    flex-direction: column;
  }
  
  .pj-ddi {
    width: 100%;
  }
  .pj-trigger {
    bottom: 5px;
    right: 5px;
    height: 32px;
    min-width: 32px;
    padding: 5px;
    font-size: 16px;
  }
  .pj-container {
    width: calc(100% - 2px);
    height: calc(100vh - 2px);
  }
  .pj-step {
    min-width: 50px;
  }
  .pj-header {
    padding: 2px 5px;
  }
  .pj-footer {
    padding: 5px;
    gap: 0;
  }
  .pj-body {
    height: calc(100% - 100px)
  }
}