/**
 * CUE Panel - High-Tech Futuristic Design
 * Matching the unconventional main website aesthetic
 */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap");

:root {
  /* Core Colors */
  --void: #05050a;
  --abyss: #0a0a12;
  --deep: #0f0f1a;
  --surface: #151520;
  --elevated: #1a1a28;
  --border: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(0, 255, 136, 0.15);

  /* Neon Accents */
  --neon-green: #00ff88;
  --neon-blue: #00d4ff;
  --neon-purple: #a855f7;
  --neon-pink: #ff0080;
  --neon-orange: #ff6b00;

  /* Glow Effects */
  --glow-green: 0 0 30px rgba(0, 255, 136, 0.4);
  --glow-blue: 0 0 30px rgba(0, 212, 255, 0.4);
  --glow-purple: 0 0 30px rgba(168, 85, 247, 0.4);

  /* Text */
  --text-bright: #ffffff;
  --text-primary: rgba(255, 255, 255, 0.9);
  --text-secondary: rgba(255, 255, 255, 0.5);
  --text-muted: rgba(255, 255, 255, 0.3);

  /* Layout */
  --sidebar-width: 280px;
  --header-height: 70px;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--void);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: none;
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: inherit;
  cursor: none;
}

a,
label {
  cursor: none;
}

/* ========================================
   CUSTOM CURSOR
======================================== */
.cursor-dot {
  position: fixed;
  left: -100px;
  top: -100px;
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: var(--glow-green);
  transition: transform 0.1s ease, opacity 0.2s ease;
}

.cursor-ring {
  position: fixed;
  left: -100px;
  top: -100px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 255, 136, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease-out;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--neon-green);
  background: rgba(0, 255, 136, 0.05);
}

/* Touch devices and accessibility: show default cursor */
@media (pointer: coarse), (hover: none) {
  body,
  button,
  a,
  input,
  textarea,
  select {
    cursor: auto !important;
  }
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

/* ========================================
   AMBIENT BACKGROUND
======================================== */
.panel-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(0, 255, 136, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.bg-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 136, 0.15) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.bg-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 70%
  );
  bottom: -150px;
  left: -150px;
  animation-delay: -7s;
}

.bg-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.08) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(20px, 10px) scale(1.02);
  }
}

/* Scan Line Effect */
.scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 255, 136, 0.02) 50%,
    transparent 100%
  );
  height: 100px;
  animation: scan 8s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(100vh);
  }
}

/* ========================================
   LOGIN PAGE
======================================== */
.login-page {
  min-height: 100vh;
  display: flex;
  position: relative;
  z-index: 1;
}

.login-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  position: relative;
}

.login-visual {
  background: linear-gradient(135deg, var(--abyss) 0%, var(--void) 100%);
  border-right: 1px solid var(--border);
}

.login-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300ff88' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.login-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.login-logo {
  width: 160px;
  height: auto;
  margin-bottom: 48px;
}

.login-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.login-title span {
  background: linear-gradient(
    135deg,
    var(--neon-green) 0%,
    var(--neon-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.6;
}

/* Holographic Features */
.holo-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.holo-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.05) 0%,
    transparent 100%
  );
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.holo-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 136, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.holo-feature:hover::before {
  left: 100%;
}

.holo-feature:hover {
  border-color: var(--neon-green);
  transform: translateX(5px);
}

.holo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 255, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  font-size: 1.25rem;
}

.holo-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.holo-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Login Form Side */
.login-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--void);
}

.login-form-wrapper {
  width: 100%;
  max-width: 400px;
}

.login-form-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.login-form-desc {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Futuristic Form Inputs */
.form-field {
  margin-bottom: 24px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-input-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: var(--glow-green), inset 0 0 20px rgba(0, 255, 136, 0.05);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* Glowing corners on focus */
.form-input-wrapper::before,
.form-input-wrapper::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-input-wrapper::before {
  top: -2px;
  left: -2px;
  border-top-color: transparent;
  border-left-color: transparent;
}

.form-input-wrapper::after {
  bottom: -2px;
  right: -2px;
  border-bottom-color: transparent;
  border-right-color: transparent;
}

.form-input:focus ~ .form-input-wrapper::before,
.form-field:focus-within .form-input-wrapper::before {
  border-top-color: var(--neon-green);
  border-left-color: var(--neon-green);
}

.form-input:focus ~ .form-input-wrapper::after,
.form-field:focus-within .form-input-wrapper::after {
  border-bottom-color: var(--neon-green);
  border-right-color: var(--neon-green);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--neon-green);
  cursor: pointer;
}

.form-link {
  font-size: 0.875rem;
  color: var(--neon-green);
  transition: all 0.3s ease;
}

.form-link:hover {
  text-shadow: var(--glow-green);
}

/* Cyber Button */
.btn-cyber {
  position: relative;
  width: 100%;
  padding: 18px 32px;
  background: transparent;
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: none;
}

.btn-cyber::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--neon-green);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn-cyber:hover {
  color: var(--void);
  box-shadow: var(--glow-green);
}

.btn-cyber:hover::before {
  transform: translateX(0);
}

.btn-cyber-icon {
  display: inline-flex;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-cyber:hover .btn-cyber-icon {
  transform: translateX(5px);
}

/* Demo Credentials */
.demo-box {
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
}

.demo-box p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.demo-box code {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  color: var(--neon-blue);
}

/* Alert */
.alert {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-error {
  background: rgba(255, 0, 80, 0.1);
  border: 1px solid rgba(255, 0, 80, 0.3);
  color: var(--neon-pink);
}

/* ========================================
   PANEL LAYOUT
======================================== */
.panel-wrapper {
  display: flex;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* Sidebar */
.sidebar {
  width: var(--sidebar-width);
  background: rgba(10, 10, 18, 0.8);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}

.sidebar-header {
  height: var(--header-height);
  padding: 0 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.sidebar-logo {
  height: 36px;
  width: auto;
}

.sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 16px;
}

.sidebar-section {
  margin-bottom: 32px;
}

.sidebar-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  padding: 0 12px;
  margin-bottom: 12px;
}

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

.nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 450;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--neon-green);
  border-radius: 0 2px 2px 0;
  transition: height 0.2s ease;
  box-shadow: var(--glow-green);
}

.nav-item:hover {
  background: rgba(0, 255, 136, 0.05);
  color: var(--text-primary);
}

.nav-item.active {
  background: rgba(0, 255, 136, 0.08);
  color: var(--neon-green);
}

.nav-item.active::before {
  height: 24px;
}

.nav-icon {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
  opacity: 1;
}

.nav-badge {
  margin-left: auto;
  padding: 2px 8px;
  background: var(--neon-green);
  color: var(--void);
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 10px;
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
}

.user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.user-card:hover {
  border-color: var(--border-glow);
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--neon-green) 0%,
    var(--neon-blue) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--void);
}

.user-info {
  flex: 1;
  min-width: 0;
}

.user-name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-role {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.user-logout {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.user-logout:hover {
  background: rgba(255, 0, 80, 0.1);
  color: var(--neon-pink);
}

/* Main Content */
.main-panel {
  flex: 1;
  margin-left: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.panel-header {
  height: var(--header-height);
  background: rgba(5, 5, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--text-secondary);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
}

.breadcrumb-sep {
  color: var(--text-muted);
}

.breadcrumb-current {
  color: var(--neon-green);
  font-weight: 500;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Cyber Search */
.cyber-search {
  position: relative;
  width: 300px;
}

.cyber-search input {
  width: 100%;
  padding: 10px 16px 10px 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.cyber-search input:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: var(--glow-green);
}

.cyber-search input::placeholder {
  color: var(--text-muted);
}

.cyber-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 18px;
  height: 18px;
}

.cyber-search-key {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 3px 8px;
  background: var(--elevated);
  border-radius: 6px;
  font-size: 0.6875rem;
  font-family: "JetBrains Mono", monospace;
  color: var(--text-muted);
}

/* Header Buttons */
.header-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.2s ease;
}

.header-btn:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow: var(--glow-green);
}

.notification-pulse {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: var(--neon-pink);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

/* Page Content */
.page-content {
  flex: 1;
  padding: 32px;
}

/* Welcome Section */
.welcome-hero {
  position: relative;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.05) 0%,
    rgba(0, 212, 255, 0.03) 100%
  );
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  margin-bottom: 32px;
  overflow: hidden;
}

.welcome-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 136, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.welcome-content {
  position: relative;
  z-index: 1;
}

.welcome-greeting {
  font-size: 0.875rem;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.welcome-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.welcome-title span {
  background: linear-gradient(
    135deg,
    var(--neon-green) 0%,
    var(--neon-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  position: relative;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon.green {
  background: rgba(0, 255, 136, 0.1);
  color: var(--neon-green);
}

.stat-icon.blue {
  background: rgba(0, 212, 255, 0.1);
  color: var(--neon-blue);
}

.stat-icon.purple {
  background: rgba(168, 85, 247, 0.1);
  color: var(--neon-purple);
}

.stat-icon.orange {
  background: rgba(255, 107, 0, 0.1);
  color: var(--neon-orange);
}

.stat-trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.stat-trend.up {
  color: var(--neon-green);
}
.stat-trend.down {
  color: var(--neon-pink);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Data Cards */
.data-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.data-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-title-icon {
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: var(--glow-green);
}

.card-actions {
  display: flex;
  gap: 8px;
}

.card-btn {
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 8px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.card-btn:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

.card-btn-primary {
  background: var(--neon-green);
  border-color: var(--neon-green);
  color: var(--void);
}

.card-btn-primary:hover {
  box-shadow: var(--glow-green);
  color: var(--void);
}

.card-body {
  padding: 24px;
}

/* Cyber Table */
.cyber-table {
  width: 100%;
  border-collapse: collapse;
}

.cyber-table th,
.cyber-table td {
  padding: 14px 16px;
  text-align: left;
}

.cyber-table th {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--elevated);
}

.cyber-table td {
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
}

.cyber-table tr:last-child td {
  border-bottom: none;
}

.cyber-table tr:hover td {
  background: rgba(0, 255, 136, 0.02);
}

.domain-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.domain-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.domain-name {
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
}

/* Status Chip */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-chip.active {
  background: rgba(0, 255, 136, 0.1);
  color: var(--neon-green);
}

.status-chip.pending {
  background: rgba(255, 107, 0, 0.1);
  color: var(--neon-orange);
}

.status-chip.error {
  background: rgba(255, 0, 80, 0.1);
  color: var(--neon-pink);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

/* Activity Feed */
.activity-feed {
  display: flex;
  flex-direction: column;
}

.activity-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.activity-item:first-child {
  padding-top: 0;
}

.activity-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.activity-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-icon.green {
  background: rgba(0, 255, 136, 0.1);
  color: var(--neon-green);
}

.activity-icon.blue {
  background: rgba(0, 212, 255, 0.1);
  color: var(--neon-blue);
}

.activity-icon.purple {
  background: rgba(168, 85, 247, 0.1);
  color: var(--neon-purple);
}

.activity-content {
  flex: 1;
  min-width: 0;
}

.activity-title {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.activity-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-family: "JetBrains Mono", monospace;
}

.activity-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Quick Actions */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quick-action {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: none;
}

.quick-action:hover {
  border-color: var(--neon-green);
  background: rgba(0, 255, 136, 0.05);
  transform: translateY(-2px);
}

.quick-action-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.quick-action:hover .quick-action-icon {
  background: var(--neon-green);
  color: var(--void);
  box-shadow: var(--glow-green);
}

.quick-action-text h4 {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.quick-action-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Server Status */
.server-status {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.status-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: var(--glow-green);
  animation: pulse 2s infinite;
}

.status-text {
  font-size: 0.875rem;
  color: var(--neon-green);
  font-weight: 500;
}

.resource-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.resource-name {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.resource-value {
  font-size: 0.875rem;
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
}

.resource-bar {
  height: 6px;
  background: var(--elevated);
  border-radius: 3px;
  overflow: hidden;
}

.resource-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
  transition: width 0.5s ease;
}

.resource-fill.warning {
  background: linear-gradient(90deg, var(--neon-orange), var(--neon-pink));
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1400px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1200px) {
  .data-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .login-visual {
    display: none;
  }

  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  }

  .main-panel {
    margin-left: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .cyber-search {
    display: none;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .page-content {
    padding: 20px;
  }

  .welcome-hero {
    padding: 24px;
  }

  .welcome-title {
    font-size: 1.75rem;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .panel-header {
    padding: 0 16px;
  }

  .login-side {
    padding: 32px 24px;
  }
}

/* ========================================
   DASHBOARD - COMMAND CENTER
======================================== */
.command-center {
  display: flex;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* Holographic Sidebar */
.holo-sidebar {
  width: 90px;
  background: rgba(10, 10, 18, 0.6);
  backdrop-filter: blur(30px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
}

.holo-sidebar-logo {
  width: 50px;
  height: 50px;
  margin-bottom: 40px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.holo-sidebar-logo:hover {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.holo-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.holo-nav-item {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--text-muted);
  position: relative;
  transition: all 0.3s ease;
  cursor: none;
}

.holo-nav-item::before {
  content: attr(data-tooltip);
  position: absolute;
  left: 70px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.holo-nav-item:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.holo-nav-item:hover {
  color: var(--text-primary);
  background: rgba(0, 255, 136, 0.05);
}

.holo-nav-item.active {
  color: var(--neon-green);
  background: rgba(0, 255, 136, 0.1);
  box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.1);
}

.holo-nav-item.active::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  background: var(--neon-green);
  border-radius: 3px 0 0 3px;
  box-shadow: var(--glow-green);
}

.holo-nav-divider {
  width: 30px;
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.holo-user-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--void);
  margin-top: auto;
  cursor: none;
  transition: all 0.3s ease;
}

.holo-user-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-green);
}

/* Main Stage */
.main-stage {
  flex: 1;
  margin-left: 90px;
  display: flex;
  flex-direction: column;
}

/* Top Command Bar */
.command-bar {
  height: 70px;
  background: rgba(5, 5, 10, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.command-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.command-title h1 {
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-beacon {
  width: 10px;
  height: 10px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: var(--glow-green);
  animation: beacon 2s infinite;
}

@keyframes beacon {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.command-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.command-search {
  position: relative;
  width: 280px;
}

.command-search input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.command-search input:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: var(--glow-green);
}

.command-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.command-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.3s ease;
  position: relative;
}

.command-btn:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

.command-btn-alert::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: var(--neon-pink);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-pink);
}

/* Dashboard Grid */
.dashboard-stage {
  flex: 1;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Hero Stats */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.metric-card {
  position: relative;
  padding: 32px;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.03) 0%,
    rgba(0, 212, 255, 0.02) 100%
  );
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--neon-green),
    var(--neon-blue),
    var(--neon-purple)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metric-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.metric-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.metric-icon.hosting {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.15),
    rgba(0, 255, 136, 0.05)
  );
  color: var(--neon-green);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.metric-icon.email {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.15),
    rgba(0, 212, 255, 0.05)
  );
  color: var(--neon-blue);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.metric-icon.vps {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.15),
    rgba(168, 85, 247, 0.05)
  );
  color: var(--neon-purple);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

.metric-status {
  padding: 6px 12px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neon-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.metric-status-dot {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.metric-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.metric-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.metric-feature {
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.metric-action {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.metric-action:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(0, 255, 136, 0.05);
}

/* Control Panels Grid */
.control-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 24px;
}

.control-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.control-panel .panel-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
}

.panel-title {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-title-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: var(--glow-green);
}

.panel-actions {
  display: flex;
  gap: 8px;
}

.panel-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.panel-btn:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

.panel-btn-primary {
  background: var(--neon-green);
  border-color: var(--neon-green);
  color: var(--void);
}

.panel-btn-primary:hover {
  box-shadow: var(--glow-green);
  color: var(--void);
}

.panel-body {
  padding: 24px;
}

/* Quick Actions Hexagon Grid */
.hex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hex-action {
  position: relative;
  padding: 24px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: none;
}

.hex-action::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hex-action:hover {
  border-color: var(--neon-green);
  transform: translateY(-4px);
}

.hex-action:hover::before {
  opacity: 1;
}

.hex-action:hover .hex-icon {
  background: var(--neon-green);
  color: var(--void);
  box-shadow: var(--glow-green);
}

.hex-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.hex-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.hex-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Resource Monitor */
.resource-monitor {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resource-monitor .resource-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  justify-content: flex-start;
}

.resource-beacon {
  width: 12px;
  height: 12px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: var(--glow-green);
  animation: beacon 2s infinite;
}

.resource-status {
  font-size: 0.875rem;
  color: var(--neon-green);
  font-weight: 500;
}

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

/* Cloudflare Shield */
.shield-panel {
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 16px;
}

.shield-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.shield-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-orange);
}

.shield-title {
  font-size: 1rem;
  font-weight: 600;
}

.shield-badge {
  margin-left: auto;
  padding: 4px 10px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--neon-green);
}

.shield-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shield-stat {
  text-align: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.shield-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "JetBrains Mono", monospace;
  color: var(--neon-orange);
  margin-bottom: 4px;
}

.shield-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Stage Footer */
.stage-footer {
  padding: 20px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--neon-green);
}

/* Dashboard Responsive */
@media (max-width: 1400px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .control-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .holo-sidebar {
    transform: translateX(-100%);
  }
  .holo-sidebar.open {
    transform: translateX(0);
  }
  .main-stage {
    margin-left: 0;
  }
  .hex-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dashboard-stage {
    padding: 20px;
  }
  .command-bar {
    padding: 0 20px;
  }
  .command-search {
    display: none;
  }
  .hex-grid {
    grid-template-columns: 1fr;
  }
  .shield-stats {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   NEW DASHBOARD - SPLIT PANEL LAYOUT
======================================== */

/* Dashboard Page Container */
.dashboard-page {
  display: flex;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* Left Visual Panel - Similar to Login */
.dash-visual {
  width: 380px;
  min-width: 380px;
  background: linear-gradient(135deg, var(--abyss) 0%, var(--void) 100%);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  overflow-y: auto;
}

.dash-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300ff88' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.dash-visual-content {
  position: relative;
  z-index: 1;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dash-logo {
  display: block;
  margin-bottom: 48px;
}

.dash-logo img {
  height: 48px;
  width: auto;
  transition: filter 0.3s ease;
}

.dash-logo:hover img {
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

/* Welcome Section */
.dash-welcome {
  margin-bottom: 40px;
}

.dash-greeting {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.dash-user-name {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.dash-tagline {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Dashboard Terminal */
.dash-terminal {
  background: var(--void);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}

.dash-terminal .terminal-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}

.dash-terminal .chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-terminal .chrome-dot.red {
  background: #ff5f56;
}

.dash-terminal .chrome-dot.yellow {
  background: #ffbd2e;
}

.dash-terminal .chrome-dot.green {
  background: #27ca40;
}

.dash-terminal .chrome-title {
  margin-left: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dash-terminal .terminal-body {
  padding: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  line-height: 1.8;
}

.dash-terminal .t-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-terminal .prompt {
  color: var(--neon-green);
}

.dash-terminal .cmd {
  color: var(--text-primary);
}

.dash-terminal .t-line.out {
  color: var(--text-secondary);
  padding-left: 16px;
}

.dash-terminal .out-success {
  color: var(--neon-green);
}

.dash-terminal .out-value {
  color: var(--neon-orange);
  font-weight: 600;
}

.dash-terminal .blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Quick Nav */
.dash-quick-nav {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

.quick-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.quick-nav-item:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(0, 255, 136, 0.05);
}

.quick-nav-item.logout:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  background: rgba(255, 0, 128, 0.05);
}

/* Main Content Area */
.dash-main {
  flex: 1;
  margin-left: 380px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Dashboard Top Bar */
.dash-topbar {
  height: 70px;
  background: rgba(5, 5, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: none;
}

.topbar-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 600;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-search {
  position: relative;
  width: 260px;
}

.topbar-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.topbar-search input {
  width: 100%;
  padding: 10px 16px 10px 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.topbar-search input:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: var(--glow-green);
}

.topbar-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.3s ease;
  position: relative;
  cursor: none;
}

.topbar-btn:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

.topbar-btn.has-alert::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: var(--neon-pink);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-pink);
}

.topbar-user {
  display: flex;
  align-items: center;
}

.topbar-user .user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--void);
}

/* Dashboard Content */
.dash-content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Section Styling */
.dash-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 600;
}

.title-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: var(--glow-green);
}

.section-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.section-link:hover {
  color: var(--neon-green);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card .card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card.hosting .card-glow {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 255, 136, 0.1),
    transparent 70%
  );
}

.service-card.email .card-glow {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 212, 255, 0.1),
    transparent 70%
  );
}

.service-card.vps .card-glow {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(168, 85, 247, 0.1),
    transparent 70%
  );
}

.service-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover .card-glow {
  opacity: 1;
}

.service-card .card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card.hosting .card-icon {
  background: rgba(0, 255, 136, 0.1);
  color: var(--neon-green);
}

.service-card.email .card-icon {
  background: rgba(0, 212, 255, 0.1);
  color: var(--neon-blue);
}

.service-card.vps .card-icon {
  background: rgba(168, 85, 247, 0.1);
  color: var(--neon-purple);
}

.service-card:hover .card-icon {
  transform: scale(1.1);
}

.service-card .card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neon-green);
}

.service-card .card-status .status-dot {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.service-card .card-body {
  flex: 1;
}

.service-card .card-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.service-card .card-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card .tag {
  padding: 4px 10px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.6875rem;
  color: var(--text-secondary);
}

.service-card .card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.service-card .card-action {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.service-card:hover .card-action {
  color: var(--neon-green);
}

/* Subscription CTA Card */
.subscribe-cta {
  background: linear-gradient(
    145deg,
    rgba(0, 255, 136, 0.08),
    rgba(99, 102, 241, 0.05)
  );
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}

.subscribe-cta .cta-content {
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-cta .cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
}

.subscribe-cta h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.subscribe-cta p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.subscribe-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Pending Subscription Card */
.pending-subscription-card {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.pending-subscription-card .pending-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warning);
  animation: pulse-warning 2s ease infinite;
}

@keyframes pulse-warning {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(251, 191, 36, 0);
  }
}

.pending-subscription-card .pending-info h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pending-subscription-card .pending-price {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.pending-subscription-card .pending-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.pending-subscription-card .pending-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pending-subscription-card .pending-status.status-warning {
  background: rgba(251, 191, 36, 0.1);
  color: var(--warning);
}

.pending-subscription-card .pending-status.status-warning .status-dot {
  background: var(--warning);
}

.pending-subscription-card .pending-status.status-info {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
}

.pending-subscription-card .pending-status.status-info .status-dot {
  background: var(--primary);
}

.pending-subscription-card .pending-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Subscription Info Card Variant */
.service-card.subscription-info {
  background: linear-gradient(145deg, var(--surface), rgba(99, 102, 241, 0.03));
}

.service-card.subscription-info .card-glow {
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15) 0%,
    transparent 70%
  );
}

.service-card.subscription-info .card-icon {
  color: var(--primary);
}

/* Two Column Layout */
.dash-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}

/* Actions Grid */
.actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.action-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.action-card:hover {
  border-color: var(--neon-green);
  transform: translateX(4px);
  background: rgba(0, 255, 136, 0.03);
}

.action-card .action-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.action-card:hover .action-icon {
  background: var(--neon-green);
  color: var(--void);
  box-shadow: var(--glow-green);
}

.action-card .action-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.action-card .action-title {
  font-size: 0.9375rem;
  font-weight: 600;
}

.action-card .action-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Sidebar Content */
.dash-sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Resources Panel */
.resources-panel {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resource-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resource-row .resource-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resource-row .resource-name {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.resource-row .resource-value {
  font-size: 0.875rem;
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  color: var(--text-primary);
}

/* Security Panel */
.security-panel {
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 16px;
}

.security-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.security-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-orange);
}

.security-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.security-title {
  font-size: 1rem;
  font-weight: 600;
}

.security-status {
  font-size: 0.75rem;
  color: var(--neon-green);
  font-weight: 600;
}

.security-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.security-stat {
  text-align: center;
  padding: 14px 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.security-stat .stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "JetBrains Mono", monospace;
  color: var(--neon-orange);
  margin-bottom: 4px;
}

.security-stat .stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tool-card:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  transform: translateY(-4px);
  background: rgba(0, 255, 136, 0.03);
}

.tool-card:hover svg {
  transform: scale(1.1);
}

.tool-card svg {
  transition: transform 0.3s ease;
}

/* Dashboard Footer */
.dash-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.dash-footer .footer-links {
  display: flex;
  gap: 24px;
}

.dash-footer .footer-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.dash-footer .footer-links a:hover {
  color: var(--neon-green);
}

/* New Dashboard Responsive */
@media (max-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  .dash-visual {
    width: 320px;
    min-width: 320px;
  }
  .dash-main {
    margin-left: 320px;
  }
  .dash-columns {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .dash-visual {
    position: fixed;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  .dash-visual.open {
    transform: translateX(0);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  }
  .dash-main {
    margin-left: 0;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .dash-content {
    padding: 20px;
  }
  .dash-topbar {
    padding: 0 20px;
  }
  .topbar-search {
    display: none;
  }
  .actions-grid {
    grid-template-columns: 1fr;
  }
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .security-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .dash-footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
