/*
Theme Name: DVXR Platform
Theme URI: https://dvxr.io
Author: DVXR Team
Author URI: https://dvxr.io
Description: A premium, dark-mode focused theme for the DVXR Universal Creative Project Management Platform.
Version: 1.0.0
License: Proprietary
Text Domain: dvxr-theme
*/

:root {
  /* Colors - Purple Neon Glass Aesthetic */
  --bg-dark: #05010a;
  /* Ultra dark violet */
  --bg-card: rgba(20, 10, 30, 0.4);
  --bg-card-hover: rgba(30, 15, 45, 0.6);
  --text-primary: #ffffff;
  --text-secondary: #b3a0c5;
  /* Pale violet text */
  --accent-primary: #a855f7;
  /* Vibrant Purple */
  --accent-secondary: #d8b4fe;
  /* Light Purple for glows */
  --accent-glow: rgba(168, 85, 247, 0.6);
  --neon-glow: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(168, 85, 247, 0.3);
  --border-color: rgba(168, 85, 247, 0.2);

  /* Spacing */
  --container-width: 1200px;
  --header-height: 80px;
  --section-padding: 120px;

  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', sans-serif;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(58, 12, 99, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(30, 5, 60, 0.4) 0%, transparent 40%);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-shadow: 0 0 8px var(--accent-glow);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphism Utility - Neon Edition */
.glass {
  background: rgba(15, 5, 25, 0.3);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(168, 85, 247, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: var(--neon-glow);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  /* More rounded for modern feel */
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 15px;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #7e22ce 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(126, 34, 206, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-ghost:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}