:root {
  --bg-color: #050505;
  --text-color: #e0e0e0;
  --accent-color: #7b2cbf; /* Deep Purple */
  --accent-secondary: #3c096c;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.05);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --spacing-unit: 1rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background Gradients */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(60, 9, 108, 0.15) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
  animation: pulse 15s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* UI Elements */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
  color: white;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(123, 44, 191, 0.5);
}

/* Navigation */
nav {
  padding: 2rem 0;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  position: absolute;
  top: 0;
  right: 2rem;
  width: 100%;
  pointer-events: none; /* Let clicks pass through if layout overlaps */
  z-index: 10;
}

nav a {
  pointer-events: auto;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

nav a:hover {
  opacity: 1;
  color: #a76bf8;
}

/* Page Specific */
.hero {
  text-align: center;
  padding: 4rem 0;
}

.legal-content {
  padding: 4rem 0;
  text-align: left;
}
.legal-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}
.legal-content p {
  margin-bottom: 1rem;
  color: #ccc;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  opacity: 0.4;
}
