/* Legal Pages Styles */
.legal {
  min-height: 100vh;
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.legal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(255, 44, 223, 0.1) 0%, rgba(13, 13, 29, 0) 50%),
    linear-gradient(235deg, rgba(0, 255, 255, 0.1) 0%, rgba(13, 13, 29, 0) 70%);
  z-index: -1;
}

.page-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--white);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--fuchsia));
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.legal-content {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.legal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, transparent 100%);
  z-index: 0;
}

.legal-content > * {
  position: relative;
  z-index: 1;
}

.legal-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.legal-content h2 {
  color: var(--neon-blue);
  margin: 2.5rem 0 1.5rem;
  font-size: 1.8rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content ul li {
  margin-bottom: 0.8rem;
  position: relative;
  list-style-type: none;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background-color: var(--fuchsia);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 44, 223, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .legal-content {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .legal {
    padding: 120px 0 80px;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .legal-content {
    padding: 2rem;
  }
  
  .legal-content h2 {
    font-size: 1.5rem;
  }
}