/* Base Styles */
:root {
  --accent: #8b5cf6;
  --accent-hover: #7c3aed;
  --emerald: #10b981;
  --bg: #050505;
  --topbar: #080808;
  --card-bg: rgba(255, 255, 255, 0.02);
  --border: rgba(255, 255, 255, 0.08);
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --grid-line: rgba(255, 255, 255, 0.03);
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  background-image: 
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 50px 50px;
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography Utilities */
.font-mono {
  font-family: "JetBrains Mono", monospace;
}

.heading-bold {
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.tech-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

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

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

::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Bento Cards & Glassmorphism */
.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.bento-card:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.1);
  transform: translateY(-4px);
}

/* Aura Background Effects */
.aura {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
}

#aura-1 {
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}

#aura-2 {
  background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
}

/* Custom Cursor */
#cursor {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
}

/* Sticky Header Refinement */
.sticky-header {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

/* Button & CTA Styles */
.cta-primary {
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border-radius: 9999px;
  padding: 1rem 2rem;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-primary:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
}

.cta-large {
  transform: scale(1.25);
  transform-origin: center;
}

.cta-large:hover {
  transform: scale(1.3) translateY(-4px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
}

.cta-secondary {
  background: #ffffff;
  color: #000000;
  border-radius: 9999px;
  padding: 1rem 2rem;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Skill Tags / Badges */
.skill-tag {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.skill-tag:hover {
  border-color: var(--accent);
  color: #ffffff;
  background: rgba(139, 92, 246, 0.05);
}

/* Animations */
.reveal {
  opacity: 0;
  visibility: hidden;
}

@keyframes pulse-emerald {
  0%, 100% { box-shadow: 0 0 8px #10b981; }
  50% { box-shadow: 0 0 15px #10b981; }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald);
  border-radius: 50%;
  animation: pulse-emerald 2s infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .aura {
    width: 400px;
    height: 400px;
    filter: blur(60px);
    opacity: 0.1;
  }
  
  .bento-card {
    border-radius: 20px;
  }
  
  .cta-large {
    transform: scale(1.05);
    width: 100%;
    justify-content: center;
  }
  
  .cta-large:hover {
    transform: scale(1.1) translateY(-2px);
  }

  .heading-bold {
    letter-spacing: -0.02em;
  }

  body {
    background-size: 30px 30px;
  }

  .pt-40 { padding-top: 6rem !important; }
  .pb-32 { padding-bottom: 4rem !important; }
  .mb-40 { margin-bottom: 4rem !important; }
  .mb-24 { margin-bottom: 3rem !important; }
  .p-10, .p-12, .p-16, .p-20 { padding: 1.5rem !important; }
  .text-6xl { font-size: 3.5rem !important; line-height: 1 !important; }
}

