.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
  padding: 60px 0;
}

.page-header {
  text-align: center;
  padding: 80px 0 60px;
  background: rgba(27, 38, 59, 0.5);
  border-bottom: 1px solid rgba(108, 99, 255, 0.15);
}

.page-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-subtitle {
  color: #A0AEC0;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.breadcrumb-nav a {
  color: #6C63FF;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #FFFFFF;
}

.breadcrumb-nav span {
  color: #A0AEC0;
}

.card-wrapper {
  background: rgba(27, 38, 59, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(108, 99, 255, 0.15);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.card-wrapper:hover {
  border-color: rgba(108, 99, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.card-text {
  color: #A0AEC0;
  line-height: 1.7;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.2) 0%, rgba(78, 205, 196, 0.2) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #6C63FF;
  margin-bottom: 20px;
}

.icon-box-primary {
  background: linear-gradient(135deg, #E63946 0%, #F77F00 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.icon-box-secondary {
  background: linear-gradient(135deg, #6C63FF 0%, #4ECDC4 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.3), transparent);
  margin: 60px 0;
}

.text-primary-custom {
  color: #E63946;
}

.text-secondary-custom {
  color: #6C63FF;
}

.text-accent-custom {
  color: #F77F00;
}

.text-success-custom {
  color: #10B981;
}

.text-muted-custom {
  color: #A0AEC0;
}

.bg-dark-custom {
  background: rgba(27, 38, 59, 0.8);
}

.bg-darker-custom {
  background: rgba(5, 25, 35, 0.9);
}

.glow-effect {
  box-shadow: 0 0 30px rgba(108, 99, 255, 0.2);
}

.glow-primary {
  box-shadow: 0 0 30px rgba(230, 57, 70, 0.2);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.pulse-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.3);
  border-radius: 50%;
}

.badge-custom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(108, 99, 255, 0.15);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6C63FF;
}

.badge-primary {
  background: rgba(230, 57, 70, 0.15);
  border-color: rgba(230, 57, 70, 0.3);
  color: #E63946;
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: #10B981;
}

.input-custom {
  background: rgba(27, 38, 59, 0.8);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: 10px;
  padding: 14px 18px;
  color: #FFFFFF;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.input-custom:focus {
  outline: none;
  border-color: #6C63FF;
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}

.input-custom::placeholder {
  color: #A0AEC0;
}

.textarea-custom {
  background: rgba(27, 38, 59, 0.8);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: 10px;
  padding: 14px 18px;
  color: #FFFFFF;
  font-size: 1rem;
  width: 100%;
  min-height: 150px;
  resize: vertical;
  transition: all 0.3s ease;
}

.textarea-custom:focus {
  outline: none;
  border-color: #6C63FF;
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}

.form-label-custom {
  display: block;
  color: #FFFFFF;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.list-styled li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(108, 99, 255, 0.1);
  color: #A0AEC0;
}

.list-styled li:last-child {
  border-bottom: none;
}

.list-styled li i {
  color: #6C63FF;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 0 40px;
  }
  
  .page-title {
    font-size: 1.75rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .card-wrapper {
    padding: 20px;
  }
}
