@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Orbitron:wght@400;600;700;900&family=Prompt:wght@300;400;500;600;700&display=swap');

:root {
  --neon-rose: #ff2d75;
  --neon-rose-glow: rgba(255, 45, 117, 0.45);
  --neon-pink: #f43f5e;
  --neon-purple: #a855f7;
  --cyber-bg: #090a10;
  --cyber-card: #101322;
  --cyber-card-border: rgba(244, 63, 94, 0.25);
  --cyber-text: #f1f5f9;
  --cyber-muted: #94a3b8;
}

/* Cyber Theme Variables */
.theme-cyber-dark {
  --bg-primary: #07080e;
  --bg-secondary: #0e111d;
  --bg-card: rgba(16, 20, 35, 0.75);
  --border-color: rgba(244, 63, 94, 0.28);
  --text-main: #f8fafc;
  --text-sub: #94a3b8;
  --sidebar-bg: rgba(10, 12, 22, 0.88);
}

.theme-cyber-light {
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-card: rgba(255, 255, 255, 0.88);
  --border-color: rgba(244, 63, 94, 0.35);
  --text-main: #0f172a;
  --text-sub: #475569;
  --sidebar-bg: rgba(255, 255, 255, 0.92);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Prompt', 'Chakra Petch', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.font-cyber {
  font-family: 'Orbitron', 'Chakra Petch', sans-serif;
}

.font-tech {
  font-family: 'Chakra Petch', sans-serif;
}

/* Neon Glow utilities */
.neon-border-rose {
  border-color: var(--neon-rose);
  box-shadow: 0 0 15px rgba(255, 45, 117, 0.25), inset 0 0 15px rgba(255, 45, 117, 0.08);
}

.neon-border-rose-hover:hover {
  border-color: #ff4387;
  box-shadow: 0 0 25px rgba(255, 45, 117, 0.45), inset 0 0 15px rgba(255, 45, 117, 0.15);
}

.neon-text-rose {
  color: #ff2d75;
  text-shadow: 0 0 8px rgba(255, 45, 117, 0.6), 0 0 20px rgba(255, 45, 117, 0.3);
}

.neon-glow-btn {
  background: linear-gradient(135deg, #ff2d75 0%, #e11d48 100%);
  box-shadow: 0 0 20px rgba(255, 45, 117, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.neon-glow-btn:hover {
  box-shadow: 0 0 30px rgba(255, 45, 117, 0.7);
  transform: translateY(-2px);
}

/* Cyber Matrix/Grid Background */
.cyber-grid-bg {
  background-image: 
    linear-gradient(to right, rgba(244, 63, 94, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244, 63, 94, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Cyber Scanline effect */
.cyber-scanlines {
  background: linear-gradient(
    rgba(18, 16, 38, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%
  ), linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.03),
    rgba(0, 255, 0, 0.01),
    rgba(0, 0, 255, 0.03)
  );
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
}

/* Glassmorphism */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-color);
}

/* Cyber corner cuts */
.cyber-cut-corner {
  clip-path: polygon(
    0 10px,
    10px 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}

.cyber-tag {
  clip-path: polygon(
    0 4px,
    4px 0,
    calc(100% - 4px) 0,
    100% 4px,
    100% calc(100% - 4px),
    calc(100% - 4px) 100%,
    4px 100%,
    0 calc(100% - 4px)
  );
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #090a10;
}

::-webkit-scrollbar-thumb {
  background: #f43f5e55;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff2d75;
}

/* Pulse Glow Animation */
@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 45, 117, 0.3), inset 0 0 10px rgba(255, 45, 117, 0.1);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 45, 117, 0.6), inset 0 0 15px rgba(255, 45, 117, 0.25);
  }
}

.animate-neon-pulse {
  animation: neonPulse 3s infinite ease-in-out;
}

/* Timeline specific styling */
.timeline-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #ff2d75;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff2d75;
}
