/* ==========================================================================
   SOYTARIDEV - MINIMALIST CYBER PURPLE STYLESHEET
   ========================================================================== */

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

:root {
  --bg-main: #09060E;
  --bg-surface: #110B1B;
  --bg-surface-hover: #191028;
  
  --border-subtle: rgba(168, 85, 247, 0.12);
  --border-hover: rgba(168, 85, 247, 0.35);
  
  --text-primary: #F3F0F8;
  --text-secondary: #A098B2;
  --text-tertiary: #6B627F;
  
  --accent-purple: #A855F7;
  --accent-purple-glow: rgba(168, 85, 247, 0.4);
  --accent-indigo: #6366F1;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 40%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #251838;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
  box-shadow: 0 0 10px var(--accent-purple-glow);
}

/* Minimal Containers */
.container-minimal {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Minimal Bordered Card with Purple Ambient Hover */
.card-minimal {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card-minimal:hover {
  border-color: var(--border-hover);
  background-color: var(--bg-surface-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.12);
}

/* Purple Glow Status Dot */
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-purple);
  display: inline-block;
  box-shadow: 0 0 12px var(--accent-purple), 0 0 20px var(--accent-purple-glow);
  animation: pulse-purple 2s infinite ease-in-out;
}

@keyframes pulse-purple {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* Gradient Text FX */
.text-purple-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #D8B4FE 50%, #A855F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Minimal Buttons */
.btn-minimal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-minimal:hover {
  background: #231638;
  border-color: var(--accent-purple);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2);
}

.btn-minimal-primary {
  background: linear-gradient(135deg, #C084FC, #9333EA);
  color: #FFFFFF;
  border: 1px solid #C084FC;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.btn-minimal-primary:hover {
  background: linear-gradient(135deg, #D8B4FE, #A855F7);
  color: #FFFFFF;
  box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
  transform: translateY(-1px);
}

/* Minimal Badge / Tag */
.tag-minimal {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #D8B4FE;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

/* Minimal Section Divider */
.divider-minimal {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.25), transparent);
  margin: 3.5rem 0;
}

/* Form Controls */
.input-minimal {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-minimal:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.25);
}

/* Toast Notification */
.toast-minimal {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #1B112A;
  border: 1px solid var(--accent-purple);
  color: var(--text-primary);
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
  z-index: 100;
  animation: fadeIn 0.2s ease;
}

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