@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-color: #ffffff; /* white background */
  --bg-gradient: #ffffff; /* white background */
  --panel-bg: #ffffff;
  --panel-border: rgba(125, 211, 252, 0.5); /* sky-300 */
  --text-primary: #0f172a; /* slate-900 */
  --text-secondary: #475569; /* slate-600 */
  --accent-color: #0284c7; /* sky-600 */
  --accent-gradient: linear-gradient(135deg, #0284c7 0%, #0891b2 100%); /* sky-600 to cyan-600 */
  --button-hover: linear-gradient(135deg, #0369a1 0%, #0e7490 100%); /* sky-700 to cyan-700 */
  --radius: 16px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: var(--font-family);
  background: var(--bg-color) !important;
  background-image: var(--bg-gradient) !important;
  background-attachment: fixed !important;
  color: var(--text-primary) !important;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Animated Aurora Background Effect (Soft Ocean) */
body::after {
  display: none;
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 15% 50%, rgba(56, 189, 248, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(34, 211, 238, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(14, 165, 233, 0.2) 0%, transparent 40%);
  z-index: -1;
  animation: aurora-shift 25s ease-in-out infinite alternate;
}

@keyframes aurora-shift {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(2%, 2%); }
  100% { transform: scale(1) translate(-2%, -2%); }
}

/* Panels and cards (Glassmorphism Base) */
.container, .card, .modal-content, .panel, .box {
  background: var(--panel-bg) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1) !important;
  border: 1px solid var(--panel-border) !important;
  color: var(--text-primary) !important;
}

/* Base Inputs */
input, textarea, select {
  border-radius: 8px !important;
  border: 1px solid rgba(203, 213, 225, 0.8) !important;
  padding: 6px 12px !important;
  background: rgba(226, 232, 240, 0.7) !important;
  color: var(--text-primary) !important;
  transition: all 0.3s ease;
  font-family: var(--font-family);
}

input:focus, textarea:focus, select:focus {
  outline: none !important;
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1) !important;
  background: rgba(241, 245, 249, 0.9) !important;
}

/* Placeholder color */
::placeholder {
  color: var(--text-secondary) !important;
}

/* Typography tweaks */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Links */
a {
  color: var(--accent-color);
  transition: opacity 0.3s ease;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

/* Utility */
.container-fluid { padding-left: 20px; padding-right: 20px; }
.hidden { display: none !important; }
