/* Security page specific styles */
.security-content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(35, 35, 42, 0.85) 0%, rgba(22, 22, 28, 0.92) 100%);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  animation: fadeIn 0.6s ease-in-out;
}

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

@media (prefers-reduced-motion: reduce) {
  .security-content {
    animation: none;
  }
}

.page-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.7rem;
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.02em;
}

.subtitle {
  background: linear-gradient(90deg, #e6e6e6, #aaa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.6;
  font-size: 1.05rem;
}

.security-section {
  margin-bottom: 2.2rem;
}

.security-section h2 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.6rem;
}

.security-good h2 i {
  color: #4caf50;
}

.security-section:not(.security-good) h2 i {
  color: #ffb347;
}

.security-section p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.security-section a {
  color: #ffb347;
  text-decoration: none;
}

.security-section a:hover {
  text-decoration: underline;
  color: #ffcc33;
}

.security-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.security-list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.security-list li::before {
  content: '\2022';
  position: absolute;
  left: 0.3rem;
  color: #4caf50;
}

.security-list code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}

.security-footnote {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .security-content {
    padding: 1.5rem;
    margin: 1.5rem 1rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }
}
