/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #00ffff;
  --secondary-color: #ff00ff;
  --bg-start: #0f0c29;
  --bg-middle: #24243e;
  --bg-end: #302b63;
  --text-primary: #e0e0e0;
  --accent-color: #00ffff;
  --primary-color-alpha: rgba(0, 255, 255, 0.5);
  --accent-color-alpha: rgba(0, 255, 255, 0.6);
  --primary-rgb: 0, 255, 255;
  --secondary-rgb: 255, 0, 255;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-middle) 50%, var(--bg-end) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: rgba(15, 12, 41, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 30px rgba(0, 255, 255, 0.3);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-brand h1 {
  color: var(--accent-color);
  font-size: 1.8rem;
  font-weight: bold;
  text-shadow: 0 0 10px var(--primary-color-alpha);
}

.bot-avatar, .footer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  box-shadow: 0 0 15px var(--primary-color-alpha);
  transition: all 0.3s ease;
}

.bot-avatar:hover, .footer-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--primary-color-alpha);
}

.footer-avatar {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 8px var(--primary-color-alpha);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger {
  width: 25px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--accent-color);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  box-shadow: 0 0 10px var(--primary-color-alpha);
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.mobile-menu-btn.active .hamburger span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(15, 12, 41, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-item {
  color: var(--text-primary);
  text-decoration: none;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.mobile-menu-item:hover {
  background: rgba(0, 255, 255, 0.2);
  border-color: rgba(0, 255, 255, 0.5);
  color: var(--accent-color);
  text-shadow: 0 0 8px var(--primary-color-alpha);
  transform: translateX(5px);
}

.mobile-menu-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

/* Color Theme Styles */
.color-toggle {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.toggle-btn {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: var(--accent-color);
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.toggle-btn:hover {
  background: rgba(0, 255, 255, 0.2);
  border-color: rgba(0, 255, 255, 0.5);
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--primary-color-alpha);
}

.color-themes {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.theme-title {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.theme-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.theme-btn {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.2);
  color: var(--text-primary);
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.theme-btn:hover {
  border-color: rgba(0, 255, 255, 0.5);
  background: rgba(0, 255, 255, 0.1);
  transform: translateY(-2px);
}

.theme-btn.active {
  border-color: var(--accent-color);
  background: rgba(0, 255, 255, 0.2);
  color: var(--accent-color);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.theme-preview {
  width: 30px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cyberpunk-preview {
  background: linear-gradient(90deg, #00ffff 0%, #ff00ff 100%);
}

.neon-preview {
  background: linear-gradient(90deg, #ff0080 0%, #00ff80 100%);
}

.dark-preview {
  background: linear-gradient(90deg, #666666 0%, #999999 100%);
}

.purple-preview {
  background: linear-gradient(90deg, #9d4edd 0%, #c77dff 100%);
}

/* Hero Section */
.hero {
  padding: 120px 20px 80px;
  text-align: center;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-start) 0%, var(--bg-middle) 50%, var(--bg-end) 100%);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, transparent 24%, rgba(0, 255, 255, 0.05) 25%, rgba(0, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, 0.05) 75%, rgba(0, 255, 255, 0.05) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
  animation: matrix 20s linear infinite;
  opacity: 0.3;
}

@keyframes matrix {
  0% { transform: translateY(0); }
  100% { transform: translateY(50px); }
}

.hero-content {
  max-width: 600px;
}

.hero-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 2rem;
  border: 5px solid rgba(0, 255, 255, 0.5);
  box-shadow: 
    0 0 30px rgba(0, 255, 255, 0.6),
    0 0 60px rgba(0, 255, 255, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
  transition: all 0.3s ease;
}

.hero-avatar:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 0 50px rgba(0, 255, 255, 0.8),
    0 0 100px rgba(0, 255, 255, 0.6),
    0 15px 40px rgba(0, 0, 0, 0.4);
}

@keyframes glow {
  from {
    box-shadow: 
      0 0 30px rgba(0, 255, 255, 0.6),
      0 0 60px rgba(0, 255, 255, 0.4),
      0 10px 30px rgba(0, 0, 0, 0.3);
  }
  to {
    box-shadow: 
      0 0 40px rgba(0, 255, 255, 0.8),
      0 0 80px rgba(0, 255, 255, 0.6),
      0 15px 40px rgba(0, 0, 0, 0.4);
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  from {
    filter: brightness(1) saturate(1);
  }
  to {
    filter: brightness(1.2) saturate(1.2);
  }
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 0 30px rgba(var(--primary-rgb), 0.8),
    0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: #ffffff;
}

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

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: 2px solid var(--secondary-color);
  box-shadow: 0 0 20px rgba(var(--secondary-rgb), 0.4);
  position: relative;
  overflow: hidden;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #ff00ff 0%, #8000ff 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 0 30px rgba(255, 0, 255, 0.8),
    0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: #ffffff;
}

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

.btn-secondary:hover::before {
  left: 100%;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Features Section */
.features {
  padding: 80px 20px;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
    #1a1a2e;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 98%, rgba(0, 255, 255, 0.03) 100%),
    linear-gradient(0deg, transparent 98%, rgba(255, 0, 255, 0.03) 100%);
  background-size: 100px 100px, 100px 100px;
  animation: gridMove 15s linear infinite;
  opacity: 0.4;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(48, 43, 99, 0.7));
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 255, 255, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.feature-card i {
  font-size: 3rem;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.feature-card:hover i {
  transform: scale(1.1) rotateY(10deg);
  filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.8));
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
  font-weight: 600;
}

.feature-card p {
  color: #b0b0b0;
  font-size: 1.1rem;
}

/* Commands Section */
.commands {
  padding: 80px 20px;
  background: 
    radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    #16213e;
  position: relative;
  overflow: hidden;
}

.commands::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(30deg, transparent 48%, rgba(0, 255, 255, 0.03) 49%, rgba(0, 255, 255, 0.03) 52%, transparent 53%);
  background-size: 80px 80px;
  animation: commandsPattern 12s linear infinite;
}

@keyframes commandsPattern {
  0% { transform: translateX(0); }
  100% { transform: translateX(80px); }
}

.commands h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.command-card {
  background: linear-gradient(145deg, rgba(22, 33, 62, 0.9), rgba(48, 43, 99, 0.7));
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-left: 4px solid #00ffff;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.command-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.command-card:hover::before {
  opacity: 1;
}

.command-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(0, 255, 255, 0.6);
  border-left-color: #ffffff;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 255, 255, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.command-syntax {
  font-family: 'Courier New', monospace;
  background: linear-gradient(135deg, rgba(15, 12, 41, 0.9), rgba(47, 49, 54, 0.9));
  color: #00ffff;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 255, 255, 0.3);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.3);
}

.command-description {
  color: #b0b0b0;
  font-size: 1rem;
  font-weight: 500;
}

/* Call to Action */
.cta {
  padding: 80px 20px;
  background: 
    radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse at center, rgba(255, 0, 255, 0.1) 0%, transparent 70%),
    linear-gradient(135deg, #0f0c29 0%, #24243e 50%, #302b63 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.02) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(255, 0, 255, 0.02) 50%, transparent 70%);
  animation: ctaShimmer 8s ease-in-out infinite;
}

@keyframes ctaShimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: 
    linear-gradient(135deg, rgba(15, 12, 41, 0.95) 0%, rgba(47, 49, 54, 0.95) 100%);
  color: white;
  padding: 40px 20px 20px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #00ffff 25%, #ff00ff 75%, transparent 100%);
  animation: footerGlow 3s ease-in-out infinite alternate;
}

@keyframes footerGlow {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #b9bbbe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00ffff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  color: #b9bbbe;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .color-toggle {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .features-grid, .commands-grid {
    grid-template-columns: 1fr;
  }
  
  .action-buttons, .cta-buttons {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Legal Pages Styling */
.legal-content {
  padding: 120px 20px 80px;
  background: 
    radial-gradient(circle at 30% 40%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #0f0c29 0%, #24243e 50%, #302b63 100%);
  min-height: 100vh;
  color: #e0e0e0;
  position: relative;
}

.legal-content::before {
  content: '';
  position: absol
