/* Custom Global Variables & Styling Tokens */
:root {
  --bg-primary: #0b0c10;
  --bg-secondary: #1f2833;
  --primary: #6366f1;
  --primary-glow: rgba(99, 102, 241, 0.15);
  --accent: #4f46e5;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --glass-bg: rgba(31, 40, 51, 0.45);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: rgba(0, 0, 0, 0.35);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(79, 70, 229, 0.05) 0%, transparent 40%);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Container & Centering (Coming Soon) */
.coming-soon-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 24px;
  position: relative;
  z-index: 1;
}

/* Glassmorphism Card */
.card {
  width: 100%;
  max-width: 480px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 8px 32px var(--glass-shadow);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
}

.logo-wrapper {
  margin-bottom: 28px;
}

.logo {
  width: 100%;
  max-width: 288px; /* 3x size increase from 96px */
  height: auto;
  object-fit: contain;
  filter: invert(1) drop-shadow(0 0 24px rgba(255, 255, 255, 0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.text-gradient {
  background: linear-gradient(135deg, #a5b4fc, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.6;
}


/* Footer (Coming Soon) */
.footer {
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--text-main);
  text-decoration: underline;
}

.footer-dot {
  color: rgba(255, 255, 255, 0.15);
}

/* Navbar (For Legal Pages) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 100;
  background: rgba(11, 12, 16, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.logo-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.logo-nav-icon {
  font-size: 22px;
}

.logo-nav-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-main);
}

/* Legal Pages Content Layout */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

.legal-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 8px 32px var(--glass-shadow);
}

.legal-card h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.last-updated {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 32px;
}

.legal-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-main);
  margin: 32px 0 12px;
}

.legal-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-main);
  margin: 20px 0 8px;
}

.legal-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.legal-card ul {
  margin-left: 20px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 15px;
}

.legal-card li {
  margin-bottom: 8px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.back-btn:hover {
  color: var(--text-main);
}

/* Warnings (for Delete Account Page) */
.warning-box {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
  padding: 20px;
  border-radius: 16px;
  font-size: 14px;
  margin-bottom: 24px;
  text-align: left;
}

.warning-box strong {
  display: block;
  margin-bottom: 4px;
}

.action-container {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px var(--primary-glow);
}

.btn-primary:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.25);
}

@media (max-width: 768px) {
  .legal-card {
    padding: 32px 24px;
  }
  .legal-card h1 {
    font-size: 30px;
  }
  .legal-content {
    padding-top: 110px;
  }
}
