@charset "UTF-8";
/* Retro Computer Color Palette - Atari ST / Thomson TO8 inspired */
@import url("https://fonts.googleapis.com/css2?family=VT323&family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&family=Share+Tech&display=swap");
:root {
  /* Dark Computer Colors */
  --crt-black: #0A0A0A;
  --crt-dark-gray: #1A1A1A;
  --crt-gray: #2A2A2A;
  --crt-light-gray: #444444;
  /* Classic Computer Colors */
  --amber: #FFB000;
  --green-phosphor: #00FF41;
  --white-phosphor: #F0F0F0;
  --blue-screen: #0000AA;
  --cyan: #00AAAA;
  --magenta: #AA00AA;
  --red-error: #AA0000;
  --yellow-warning: #AAAA00;
  /* Atari ST Colors */
  --atari-blue: #0070F0;
  --atari-cyan: #00F0F0;
  --atari-green: #00F000;
  --atari-yellow: #F0F000;
  --atari-red: #F00000;
  --atari-magenta: #F000F0;
  --atari-white: #F0F0F0;
  /* Thomson TO8 Colors */
  --thomson-orange: #FF8800;
  --thomson-lime: #88FF00;
  --thomson-pink: #FF0088;
  --thomson-teal: #0088FF;
  /* Main Theme Colors */
  --primary-color: var(--amber);
  --secondary-color: var(--green-phosphor);
  --accent-color: var(--thomson-orange);
  --text-primary: var(--white-phosphor);
  --text-secondary: var(--amber);
  --text-muted: var(--cyan);
  --bg-primary: var(--crt-black);
  --bg-secondary: var(--crt-dark-gray);
  --bg-tertiary: var(--crt-gray);
  /* CRT Effects */
  --scanline-opacity: 0.04;
  --flicker-opacity: 0.95;
  --glow-size: 2px;
  /* Shadows */
  --shadow-retro: 0 0 10px rgba(255, 176, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(0, 255, 65, 0.2);
  --shadow-deep: inset 0 0 50px rgba(0, 0, 0, 0.8);
}

/* Import Retro Fonts */
/* Base Styles */
* {
  box-sizing: border-box;
}

/* Remove all rounded borders for retro aesthetic */
.card, .card-header, .card-body, .card-footer,
.btn, .alert, .nav-pills .nav-link,
.navbar-nav .nav-link, .dropdown-menu, .modal-content,
.form-control, .form-select, .pagination .page-link {
  border-radius: 0 !important;
}

body {
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  line-height: 1.4;
  color: var(--text-primary);
  background: var(--bg-primary);
  padding-top: 0;
  margin: 0;
  overflow-x: hidden;
  position: relative;
}

/* CRT Screen Effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 50%, rgba(0, 255, 65, var(--scanline-opacity)) 50%), linear-gradient(90deg, transparent 50%, rgba(255, 176, 0, 0.02) 50%);
  background-size: 100% 4px, 4px 100%;
  pointer-events: none;
  z-index: 1000;
  animation: flicker 0.15s infinite linear alternate;
}

@keyframes flicker {
  0% {
    opacity: var(--flicker-opacity);
  }
  100% {
    opacity: 1;
  }
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Courier New', monospace;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  text-shadow: 0 0 var(--glow-size) currentColor;
  letter-spacing: 1px;
}

.retro-text {
  font-family: 'VT323', monospace;
  font-size: 3rem !important;
  color: var(--green-phosphor);
  text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor;
  animation: textGlow 2s ease-in-out infinite alternate;
  letter-spacing: 2px;
}

.retro-subtitle {
  font-family: 'Share Tech Mono', monospace;
  color: var(--green-phosphor);
  text-shadow: 0 0 10px var(--green-phosphor);
  font-size: 1.1rem !important;
}

@keyframes textGlow {
  from {
    text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor;
  }
  to {
    text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor;
  }
}
/* Terminal Navigation */
.navbar {
  background: var(--bg-secondary) !important;
  border-bottom: 2px solid var(--primary-color);
  box-shadow: var(--shadow-retro);
  font-family: 'Share Tech Mono', monospace;
}

.navbar-brand {
  font-family: 'VT323', monospace;
  font-size: 1.5rem;
  color: var(--green-phosphor) !important;
  text-shadow: 0 0 5px currentColor;
  letter-spacing: 2px;
}

.nav-link {
  font-family: 'Share Tech Mono', monospace;
  color: var(--amber) !important;
  text-shadow: 0 0 3px currentColor;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  padding: 0.5rem 1rem !important;
  margin: 0 0.2rem;
}

.nav-link:hover {
  color: var(--green-phosphor) !important;
  background: var(--bg-tertiary);
  border: 1px solid var(--amber);
  box-shadow: inset 0 0 10px rgba(255, 176, 0, 0.2);
}

/* Sticky Retro Navigation - Hidden */
.sticky-nav {
  display: none;
}

.nav-header {
  background: var(--amber);
  color: var(--bg-primary);
  padding: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--primary-color);
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  border-bottom: 1px solid var(--crt-gray);
}

.nav-link-retro {
  display: block;
  color: var(--green-phosphor);
  text-decoration: none;
  padding: 8px 12px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  text-shadow: 0 0 3px currentColor;
}

.nav-link-retro:hover {
  background: var(--bg-tertiary);
  border-left: 3px solid var(--amber);
  color: var(--amber);
  text-shadow: 0 0 5px currentColor;
  box-shadow: inset 0 0 10px rgba(255, 176, 0, 0.1);
}

.nav-footer {
  background: var(--bg-tertiary);
  color: var(--cyan);
  padding: 5px;
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid var(--primary-color);
}

/* Hide sticky nav on mobile */
@media (max-width: 768px) {
  .sticky-nav {
    display: none;
  }
}
/* Main Content */
.main-content {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.main-container {
  margin-left: 20px;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .main-container {
    margin-left: 10px;
    margin-right: 10px;
  }
}
/* Hero Section - Terminal Style */
.hero-section {
  background: var(--bg-secondary);
  border: 3px solid var(--amber);
  margin: 20px;
  margin-top: 80px;
  position: relative;
  box-shadow: var(--shadow-deep);
  border-radius: 8px;
}

.crt-frame {
  position: relative;
  padding: 15px;
  background: #1a1a1a;
  display: inline-block;
  border-radius: 8px;
  box-shadow: inset 0 0 20px rgba(0, 255, 0, 0.1), 0 0 30px rgba(0, 0, 0, 0.8);
}

.crt-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 0, 0.03) 2px, rgba(0, 255, 0, 0.03) 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 255, 0, 0.03) 2px, rgba(0, 255, 0, 0.03) 4px);
  pointer-events: none;
  z-index: 2;
}

.crt-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 3;
}

.profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 0;
  object-fit: cover;
  border: none;
  filter: contrast(1.3) brightness(1.2) saturate(0.8) sepia(0.1);
  image-rendering: pixelated;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.terminal-header {
  background: var(--amber);
  color: var(--bg-primary);
  padding: 8px 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 2px solid var(--primary-color);
  font-family: 'Share Tech Mono', monospace;
  font-weight: bold;
}

.terminal-title {
  font-size: 1rem;
  letter-spacing: 1px;
}

.terminal-buttons {
  display: flex;
  gap: 5px;
}

.terminal-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.btn-close {
  background: var(--red-error);
}

.btn-minimize {
  background: var(--yellow-warning);
}

.btn-maximize {
  background: var(--secondary-color);
}

.terminal-content {
  background: var(--bg-primary);
  padding: 20px;
  min-height: 200px;
  position: relative;
}

.prompt-line {
  font-family: 'VT323', monospace;
  color: var(--amber);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.prompt {
  color: var(--green-phosphor);
}

.command {
  color: var(--cyan);
  margin-left: 10px;
}

.cursor {
  display: inline-block;
  width: 0.6em;
  background-color: currentColor;
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
.btn-retro {
  background: var(--bg-tertiary);
  border: 2px solid var(--amber);
  color: var(--amber);
  font-family: 'Share Tech Mono', monospace;
  padding: 8px 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-shadow: 0 0 3px currentColor;
  border-radius: 0;
}

.btn-retro:hover {
  background: var(--amber);
  color: var(--bg-primary);
  box-shadow: 0 0 10px var(--amber), inset 0 0 10px rgba(0, 0, 0, 0.3);
  text-shadow: none;
}

/* Retro Cards */
.retro-card {
  background: var(--bg-secondary);
  border: 2px solid var(--amber);
  border-radius: 0;
  box-shadow: var(--shadow-retro), inset 0 0 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  margin-bottom: 20px;
}

.retro-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.retro-card:hover {
  border-color: var(--green-phosphor);
  box-shadow: 0 0 15px var(--green-phosphor), inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.retro-header {
  background: var(--amber);
  color: var(--bg-primary);
  border: none;
  border-radius: 0;
  padding: 12px 16px;
  border-bottom: 2px solid var(--primary-color);
  font-family: 'VT323', monospace;
  position: relative;
}

.retro-header::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--green-phosphor);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--green-phosphor);
  animation: pulse 2s infinite;
}

.retro-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--bg-primary);
  text-shadow: none;
  font-weight: bold;
  letter-spacing: 1px;
}

.card-body {
  padding: 1.5rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  border-top: 1px solid var(--crt-gray);
}

/* Retro Timeline */
.timeline {
  list-style: none;
  padding: 0;
  font-family: 'Share Tech Mono', monospace;
}

.timeline li {
  padding: 8px 0 8px 20px;
  border-left: 2px solid var(--green-phosphor);
  margin-left: 10px;
  position: relative;
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.timeline li::before {
  content: '▶';
  position: absolute;
  left: -8px;
  top: 8px;
  color: var(--amber);
  font-size: 0.8rem;
  background: var(--bg-primary);
  width: 16px;
  text-align: center;
}

.timeline li strong {
  color: var(--amber);
  text-shadow: 0 0 3px currentColor;
}

/* Interest Items */
.interest-item {
  margin-bottom: 1rem;
  padding: 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--cyan);
  border-left: 4px solid var(--thomson-orange);
  position: relative;
}

.interest-item::before {
  content: '>';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--thomson-orange);
  background: var(--bg-primary);
  padding: 2px;
  font-family: 'VT323', monospace;
}

.interest-item h5 {
  color: var(--thomson-orange);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-family: 'VT323', monospace;
  text-shadow: none;
  letter-spacing: 1px;
}

.interest-item p {
  color: var(--text-primary);
  font-size: 0.9rem;
  margin: 0;
}

/* Skill List */
.skill-list {
  list-style: none;
  padding: 0;
  font-family: 'Share Tech Mono', monospace;
}

.skill-list li {
  padding: 6px 0 6px 30px;
  border-bottom: 1px dotted var(--amber);
  position: relative;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.skill-list li::before {
  content: '[✓]';
  position: absolute;
  left: 0;
  color: var(--green-phosphor);
  font-weight: bold;
  text-shadow: 0 0 3px currentColor;
}

/* Hobby Grid */
.hobby-grid {
  display: grid;
  gap: 0.8rem;
}

.hobby-item {
  display: flex;
  align-items: center;
  padding: 10px;
  background: var(--bg-tertiary);
  border: 1px solid var(--atari-blue);
  transition: all 0.3s ease;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
}

.hobby-item:hover {
  background: var(--bg-secondary);
  border-color: var(--atari-cyan);
  box-shadow: inset 0 0 10px rgba(0, 170, 170, 0.2);
}

.hobby-item i {
  font-size: 1.1rem;
  color: var(--atari-cyan);
  margin-right: 12px;
  width: 20px;
  text-shadow: 0 0 3px currentColor;
}

.hobby-item span {
  color: var(--text-primary);
}

/* Links */
.more-links a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: normal;
  transition: color 0.3s ease;
  text-shadow: 0 0 2px currentColor;
}

.more-links a:hover {
  color: var(--amber);
  text-shadow: 0 0 5px currentColor;
}

.more-links p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Biography Section */
.biography-section {
  background: var(--bg-secondary);
  border: 3px solid var(--amber);
  margin: 30px 20px;
  position: relative;
  box-shadow: var(--shadow-deep);
  border-radius: 8px;
}

.biography-section::before {
  content: 'README.TXT';
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--bg-primary);
  color: var(--amber);
  padding: 0 10px;
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  text-shadow: 0 0 3px currentColor;
}

.biography-card {
  background: var(--bg-primary);
  border: 1px solid var(--green-phosphor);
  border-radius: 0;
  margin: 20px;
}

.biography-card .card-body {
  padding: 2rem;
  font-family: 'Share Tech Mono', monospace;
}

.biography-card .card-title {
  font-family: 'VT323', monospace;
  font-size: 2rem;
  color: var(--green-phosphor);
  text-shadow: 0 0 10px currentColor;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* README Zone */
.readme-zone {
  background: transparent;
  padding: 20px;
  border: none;
}

.readme-header {
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  color: var(--amber);
  text-shadow: 0 0 3px currentColor;
  margin-bottom: 15px;
  text-align: left;
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--bg-primary);
  padding: 0 10px;
}

.readme-content {
  font-family: 'Share Tech', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
}

.readme-content em {
  color: var(--green-phosphor);
  font-style: normal;
  text-shadow: 0 0 5px var(--green-phosphor);
  font-weight: 500;
}

.highlight-orange {
  color: var(--thomson-orange) !important;
  text-shadow: 0 0 5px var(--thomson-orange);
}

.biography-card p {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

.biography-card .lead {
  color: var(--amber);
  font-weight: bold;
  text-shadow: 0 0 3px currentColor;
}

.biography-card em {
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 2px currentColor;
}

/* Experience Section */
.experience-section {
  padding: 2rem 20px;
  background: var(--bg-primary);
  position: relative;
}

.experience-section::before {
  content: 'LOADING CAREER.DAT...';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--amber);
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  text-shadow: 0 0 3px currentColor;
  animation: blink 2s infinite;
}

.timeline-container {
  position: relative;
  margin-top: 60px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--crt-light-gray);
  transform: translateX(-50%);
}

.experience-item {
  margin-bottom: 2rem;
  position: relative;
  opacity: 0;
  filter: blur(8px) contrast(0);
  transform: scale(0.95);
  transition: none;
}

.experience-item.animate-in {
  animation: pixelateIn 0.4s steps(8) forwards;
}

@keyframes pixelateIn {
  0% {
    opacity: 0;
    filter: blur(8px) contrast(0);
    transform: scale(0.95);
  }
  50% {
    opacity: 0.5;
    filter: blur(4px) contrast(0.5);
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    filter: blur(0) contrast(1);
    transform: scale(1);
  }
}
.experience-item:nth-child(odd) .experience-card {
  margin-right: calc(50% + 2rem);
}

.experience-item:nth-child(even) .experience-card {
  margin-left: calc(50% + 2rem);
}

.experience-card {
  background: var(--bg-secondary);
  border: 1px solid var(--crt-light-gray);
  border-radius: 0;
  position: relative;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.experience-card .card-header {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: none;
  padding: 1.2rem;
  border-bottom: 1px solid var(--crt-light-gray);
}

.experience-card .card-header h3 {
  color: var(--amber);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  text-shadow: none;
  letter-spacing: 0;
  line-height: 1.3;
}

.experience-card .card-body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Share Tech', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 1.2rem;
}

.company-name {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin: 0.5rem 0 0 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-shadow: none;
  opacity: 0.8;
}

.badge {
  background: #0A4D0A !important;
  color: var(--green-phosphor) !important;
  border: 1px solid var(--green-phosphor) !important;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 3px;
  font-weight: 500;
  font-family: 'Share Tech', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-shadow: none;
  letter-spacing: 0;
  transition: all 0.3s ease;
}

.badge:hover {
  background: #0F6B0F !important;
  box-shadow: 0 2px 8px rgba(0, 255, 65, 0.3);
  transform: translateY(-1px);
}

/* Ensure all badges have consistent green styling regardless of Bootstrap classes */
.experience-card .badge,
.badge.bg-primary,
.badge.bg-secondary,
.badge.bg-info,
.badge.bg-warning,
.badge.bg-success,
.badge.bg-danger,
.badge.bg-dark {
  background: #0A4D0A !important;
  color: var(--green-phosphor) !important;
  border: 1px solid var(--green-phosphor) !important;
}

.experience-card ul {
  padding-left: 20px;
  margin: 1rem 0;
}

.experience-card li {
  margin-bottom: 0.6rem;
  color: var(--text-primary);
  position: relative;
  line-height: 1.5;
}

.experience-card li::marker {
  content: '• ';
  color: var(--amber);
}

.experience-card h5 {
  color: var(--cyan);
  font-family: 'Share Tech', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.2rem 0 0.6rem 0;
  text-shadow: none;
  letter-spacing: 0;
}

.experience-card strong {
  color: var(--amber);
  font-weight: 600;
  text-shadow: none;
}

.experience-card em {
  color: var(--cyan);
  font-style: italic;
  font-weight: 500;
  text-shadow: none;
}

/* Skills Section */
.skills-section {
  background: var(--bg-secondary);
  border: 2px solid var(--amber);
  margin: 30px 20px;
  padding: 2rem 0;
  position: relative;
  box-shadow: var(--shadow-retro);
  border-radius: 8px;
}

.skills-section::before {
  content: 'SKILLS.BAS - LOADING...';
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--bg-primary);
  color: var(--amber);
  padding: 0 10px;
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  text-shadow: 0 0 3px currentColor;
}

.skills-card {
  background: var(--bg-primary);
  border: 1px solid var(--crt-light-gray);
  border-radius: 0;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  filter: blur(8px) contrast(0);
  transform: scale(0.95);
  transition: none;
}

.skills-card.animate-in {
  animation: pixelateIn 0.4s steps(8) forwards;
}

.skills-card .card-header {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: none;
  padding: 1.2rem;
  border-bottom: 1px solid var(--crt-light-gray);
}

.skills-card .card-header h3 {
  color: var(--green-phosphor);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-shadow: none;
  font-size: 1.3rem;
}

.skill-category {
  margin-bottom: 1.2rem;
  padding: 1rem;
  background: var(--bg-tertiary);
  border: none;
  border-left: 3px solid var(--green-phosphor);
  position: relative;
}

.skill-category::before {
  content: '▸';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-phosphor);
  background: var(--bg-primary);
  padding: 2px;
  font-family: 'VT323', monospace;
  font-size: 0.8rem;
}

.skill-category h5 {
  color: var(--green-phosphor);
  font-family: 'Share Tech', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  text-shadow: none;
  letter-spacing: 1px;
  font-weight: 600;
}

.skill-category h6 {
  color: var(--cyan);
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 2px currentColor;
}

.skill-details p {
  margin-bottom: 0.8rem;
  font-family: 'Share Tech', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.skill-details strong {
  color: var(--green-phosphor);
  text-shadow: 0 0 2px currentColor;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.ai-skills {
  text-align: center;
  padding: 1rem;
}

/* Footer */
.footer {
  background: var(--bg-secondary) !important;
  border-top: 2px solid var(--amber);
  font-family: 'VT323', monospace;
  color: var(--text-primary);
}

.footer::before {
  content: 'END OF PROGRAM - PRESS ANY KEY TO CONTINUE';
  display: block;
  text-align: center;
  color: var(--green-phosphor);
  font-size: 0.9rem;
  text-shadow: 0 0 3px currentColor;
  padding-top: 10px;
  animation: blink 2s infinite;
}

.footer p {
  font-size: 0.9rem;
  font-family: 'Share Tech Mono', monospace;
}

.footer a {
  color: var(--cyan);
  transition: color 0.3s ease;
  text-decoration: none;
  text-shadow: 0 0 2px currentColor;
}

.footer a:hover {
  color: var(--amber);
  text-shadow: 0 0 5px currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    margin: 10px;
    padding: 1rem 0;
  }

  .profile-photo {
    width: 100px;
    height: 100px;
  }

  .retro-text {
    font-size: 2rem !important;
  }

  .retro-subtitle {
    font-size: 1rem !important;
  }

  .section-title {
    font-size: 2rem;
  }

  .timeline-container::before {
    left: 1rem;
  }

  .experience-item:nth-child(odd) .experience-card,
  .experience-item:nth-child(even) .experience-card {
    margin-left: 3rem;
    margin-right: 0;
  }

  .experience-item::before {
    left: 0.5rem !important;
    right: auto !important;
  }

  .retro-header {
    padding: 8px 12px;
  }

  .card-body {
    padding: 1rem;
  }

  .biography-card .card-body {
    padding: 1.5rem;
  }

  .biography-section,
  .skills-section {
    margin: 15px 10px;
  }

  .hero-section {
    margin: 10px !important;
  }

  .experience-section {
    padding: 2rem 10px;
  }

  .btn-retro {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .terminal-header {
    padding: 6px 12px;
  }

  .terminal-content {
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .hero-section {
    margin: 5px !important;
  }

  .profile-photo {
    width: 80px;
    height: 80px;
  }

  .retro-text {
    font-size: 1.5rem !important;
  }

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

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

  .tech-tags {
    justify-content: center;
  }

  .biography-section,
  .skills-section {
    margin: 10px 5px;
  }

  .experience-section {
    padding: 2rem 5px;
  }
}
/* Print Optimizations */
@media print {
  body::before,
  .sticky-nav,
  .navbar,
  .footer {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .hero-section,
  .biography-section,
  .skills-section,
  .retro-card {
    background: white !important;
    border-color: black !important;
    box-shadow: none !important;
  }

  * {
    color: black !important;
    text-shadow: none !important;
  }
}
/* Print Optimizations */
@media print {
  .navbar,
  .footer {
    display: none !important;
  }

  body {
    padding-top: 0;
    background: white !important;
  }

  .hero-section,
  .biography-section,
  .skills-section {
    background: white !important;
    box-shadow: none !important;
  }

  .card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ddd;
  }

  .experience-item {
    break-inside: avoid;
  }
}
/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #4A00E0;
    --secondary-color: #8E2DE2;
    --text-primary: #000000;
    --text-secondary: #333333;
  }
}
