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

:root {
  /* Colors */
  --bg-dark: #060913;
  --bg-slate: #0b1125;
  --bg-card: rgba(13, 22, 47, 0.4);
  --bg-card-hover: rgba(20, 32, 69, 0.55);
  --bg-panel: rgba(8, 14, 32, 0.85);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-color-hover: rgba(255, 255, 255, 0.12);
  --border-cyan: rgba(0, 242, 254, 0.25);
  --border-purple: rgba(138, 43, 226, 0.25);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --neon-cyan: #00f2fe;
  --neon-cyan-glow: rgba(0, 242, 254, 0.35);
  --neon-purple: #9d4edd;
  --neon-purple-glow: rgba(157, 78, 221, 0.35);
  --neon-yellow: #f2c94c;
  --neon-yellow-glow: rgba(242, 201, 76, 0.35);
  --neon-emerald: #10b981;
  --neon-emerald-glow: rgba(16, 185, 129, 0.35);
  --neon-rose: #f43f5e;
  --neon-rose-glow: rgba(244, 63, 94, 0.35);
  
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Fira Code', monospace;
  
  --shadow-neon: 0 0 20px rgba(0, 242, 254, 0.15);
  --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & scrollbars */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(138, 43, 226, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 242, 254, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(157, 78, 221, 0.25);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 242, 254, 0.5);
  box-shadow: 0 0 10px var(--neon-cyan);
}

/* Glassmorphism Styles */
.glass-panel {
  background: var(--bg-panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition-normal);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.glass-card.interactive-cyan:hover {
  border-color: var(--border-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.glass-card.interactive-purple:hover {
  border-color: var(--border-purple);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.15);
}

/* Button & interactive components */
button, .btn {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
  color: var(--text-primary);
  background: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-color-hover);
  transform: translateY(-1px);
}

.btn-outline-cyan {
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 5px rgba(0, 242, 254, 0.1);
}

.btn-outline-cyan:hover {
  background: rgba(0, 242, 254, 0.1);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
  transform: translateY(-1px);
}

/* Header & Navigation Layout */
header {
  height: 70px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  background: rgba(6, 9, 19, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--neon-yellow), var(--neon-cyan));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
}

.logo-icon svg {
  color: #060913;
  stroke-width: 2.5;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  background: linear-gradient(to right, #ffffff, var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.logo-badge {
  background: rgba(0, 242, 254, 0.1);
  color: var(--neon-cyan);
  border: 1px solid var(--border-cyan);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-tab {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.nav-tab:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.nav-tab.active {
  color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.06);
  border-color: var(--border-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.08);
}

/* Main Dashboard Workspace & Layout */
main {
  max-width: 1600px;
  margin: 0 auto;
  padding: 30px 40px;
  min-height: calc(100vh - 70px);
}

/* Landing Section Style */
.landing-hero {
  text-align: center;
  max-width: 850px;
  margin: 60px auto 40px;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(157, 78, 221, 0.1);
  border: 1px solid var(--border-purple);
  padding: 6px 14px;
  border-radius: 30px;
  color: #c77dff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.1);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 60%, var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 35px;
  font-weight: 400;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

/* Upload Dropzone Workspace */
.upload-zone {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
  transition: all var(--transition-normal);
  background: rgba(13, 22, 47, 0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.upload-zone:hover, .upload-zone.dragging {
  border-color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.04);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.1);
}

.upload-icon-container {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.upload-zone:hover .upload-icon-container {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
  transform: scale(1.05);
}

.upload-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Workspace view wrapper */
.workspace-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  margin-top: 10px;
}

/* Sidebar and Sub-Navigation */
.sidebar-panel {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: fit-content;
}

.sidebar-card {
  padding: 18px;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.file-info-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.file-info-icon {
  color: var(--neon-yellow);
}

.file-info-name {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.file-info-size {
  font-size: 11px;
  color: var(--text-muted);
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-menu-item {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sidebar-menu-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.sidebar-menu-item.active {
  background: rgba(157, 78, 221, 0.1);
  color: #c77dff;
  font-weight: 500;
  border-left: 2px solid var(--neon-purple);
}

/* File Parser Explorer styles */
.workspace-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
}

.stat-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon-box.cyan {
  background: rgba(0, 242, 254, 0.08);
  color: var(--neon-cyan);
}

.stat-icon-box.purple {
  background: rgba(157, 78, 221, 0.08);
  color: var(--neon-purple);
}

.stat-icon-box.yellow {
  background: rgba(242, 201, 76, 0.08);
  color: var(--neon-yellow);
}

.stat-icon-box.emerald {
  background: rgba(16, 185, 129, 0.08);
  color: var(--neon-emerald);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Wireframe Layout Map */
.canvas-viewer-panel {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  min-height: 500px;
}

.pages-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 500px;
  overflow-y: auto;
}

.page-list-item {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-list-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-color-hover);
}

.page-list-item.active {
  background: rgba(0, 242, 254, 0.06);
  border-color: var(--border-cyan);
  color: var(--neon-cyan);
  font-weight: 600;
}

.page-hidden-indicator {
  font-size: 10px;
  color: var(--text-muted);
}

.canvas-viewport-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.canvas-viewport {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.canvas-visual-element {
  position: absolute;
  border: 1px solid rgba(0, 242, 254, 0.2);
  background: rgba(0, 242, 254, 0.04);
  border-radius: 4px;
  padding: 6px;
  font-size: 9px;
  color: #a5f3fc;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.canvas-visual-element:hover {
  background: rgba(0, 242, 254, 0.12);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.3);
  z-index: 10;
}

.canvas-visual-type {
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--neon-cyan);
  font-size: 8px;
  margin-bottom: 2px;
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.canvas-visual-title {
  font-weight: 600;
  line-height: 1.1;
  font-size: 9px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Code Editor & DAX style panels */
.code-editor-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 15px;
}

.editor-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(13, 22, 47, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.editor-container {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: #050811;
  min-height: 380px;
  overflow: hidden;
  display: flex;
}

.line-numbers {
  padding: 15px 10px;
  background: #020409;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: right;
  user-select: none;
  min-width: 45px;
}

.editor-textarea-wrapper {
  flex: 1;
  position: relative;
}

.editor-textarea {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  resize: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 15px;
  line-height: 1.6;
  white-space: pre;
  overflow-x: auto;
}

/* DAX Lint Warning Items */
.diagnostic-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.diagnostic-item {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.diagnostic-item.warning {
  background: rgba(242, 201, 76, 0.05);
  border-color: rgba(242, 201, 76, 0.15);
  color: #fef08a;
}

.diagnostic-item.warning svg {
  color: var(--neon-yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.diagnostic-item.info {
  background: rgba(0, 242, 254, 0.05);
  border-color: rgba(0, 242, 254, 0.15);
  color: #e0f2fe;
}

.diagnostic-item.info svg {
  color: var(--neon-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.diagnostic-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 2px;
}

.diagnostic-desc {
  font-size: 12px;
  opacity: 0.85;
}

/* Model Scorecard styling */
.scorecard-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
}

.grade-box {
  background: radial-gradient(circle at center, rgba(138, 43, 226, 0.15) 0%, transparent 80%);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 25px rgba(157, 78, 221, 0.08);
}

.grade-letter {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.grade-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.diagnostics-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.diag-check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
}

.diag-check-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.diag-check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diag-check-icon.success {
  background: rgba(16, 185, 129, 0.08);
  color: var(--neon-emerald);
}

.diag-check-icon.warning {
  background: rgba(242, 201, 76, 0.08);
  color: var(--neon-yellow);
}

.diag-check-icon.danger {
  background: rgba(244, 63, 94, 0.08);
  color: var(--neon-rose);
}

.diag-check-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}

.diag-check-desc {
  font-size: 12px;
  color: var(--text-secondary);
}

.diag-check-status-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.status-badge-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--neon-emerald);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge-yellow {
  background: rgba(242, 201, 76, 0.1);
  color: var(--neon-yellow);
  border: 1px solid rgba(242, 201, 76, 0.2);
}

.status-badge-red {
  background: rgba(244, 63, 94, 0.1);
  color: var(--neon-rose);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

/* Service Tenant simulator classes */
.service-simulator-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
}

.tenant-tree-container {
  max-height: 600px;
  overflow-y: auto;
  padding: 15px;
}

.tree-node {
  margin-left: 15px;
}

.tree-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  margin-bottom: 2px;
}

.tree-row:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.tree-row.active {
  background: rgba(0, 242, 254, 0.05);
  color: var(--neon-cyan);
  font-weight: 500;
}

.tree-icon {
  color: var(--text-muted);
}

.tree-row.active .tree-icon {
  color: var(--neon-cyan);
}

/* Version Compare Split Grid */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.compare-dropzones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.comparison-scrollable {
  max-height: 500px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-diff-card {
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.compare-diff-card.added {
  border-left: 3px solid var(--neon-emerald);
  background: rgba(16, 185, 129, 0.02);
}

.compare-diff-card.removed {
  border-left: 3px solid var(--neon-rose);
  background: rgba(244, 63, 94, 0.02);
}

.diff-badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.diff-badge.added {
  background: rgba(16, 185, 129, 0.15);
  color: var(--neon-emerald);
}

.diff-badge.removed {
  background: rgba(244, 63, 94, 0.15);
  color: var(--neon-rose);
}

.diff-badge.changed {
  background: rgba(242, 201, 76, 0.15);
  color: var(--neon-yellow);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating-bg-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.06) 0%, rgba(0, 242, 254, 0.01) 70%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}

.blob-1 {
  top: 10%;
  left: -100px;
  animation: float 20s infinite ease-in-out;
}

.blob-2 {
  bottom: 10%;
  right: -100px;
  animation: float 25s infinite ease-in-out;
}

.glowing-badge {
  position: relative;
}

.glowing-badge::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  box-shadow: 0 0 12px var(--neon-purple-glow);
  opacity: 0.5;
  z-index: -1;
}

/* Loader Styles */
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.05);
  border-top-color: var(--neon-cyan);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 15px;
}
