/* VpsRelay - High-End Premium Glassmorphism UI (Version 1 Remastered) */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #070b14;
  --glass-card: rgba(15, 23, 42, 0.7);
  --glass-border: rgba(255, 255, 255, 0.12);
  --accent-cyan: #06b6d4;
  --accent-blue: #3b82f6;
  --accent-purple: #a855f7;
  --accent-emerald: #10b981;
}

body {
  background-color: var(--bg-dark);
  color: #f8fafc;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 10% 30%, rgba(168, 85, 247, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Glassmorphism Card System */
.glass-card {
  background: var(--glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.6);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 25px 60px -12px rgba(59, 130, 246, 0.15);
}

/* Glowing Title Gradient */
.hero-glow-title {
  background: linear-gradient(135deg, #ffffff 20%, #93c5fd 60%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glass Inputs */
.glass-input {
  background: rgba(3, 7, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.875rem;
  color: #f8fafc;
  transition: all 0.2s ease;
}

.glass-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
  background: rgba(15, 23, 42, 0.9);
}

/* Step Wizard Navigation Buttons */
.wizard-btn {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.wizard-btn.active {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.5);
  color: #60a5fa;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.wizard-btn.active .step-num {
  background: #3b82f6;
  color: #ffffff;
}

/* Custom Line Card Options */
.line-card {
  background: rgba(3, 7, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.line-card.active {
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.5);
}

/* Live Terminal Output */
#terminal-log-box {
  background: #020612;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  font-family: 'Fira Code', monospace;
}

#terminal-log-box::-webkit-scrollbar {
  width: 6px;
}
#terminal-log-box::-webkit-scrollbar-track {
  background: #020612;
}
#terminal-log-box::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 3px;
}
