/* ==========================================================================
   Joe the Awkward Potato (theawkwardpotato.com)
   Design System & Master Stylesheet
   ========================================================================== */

:root {
  /* Color Palette - Desert Twilight & Starch Gold */
  --bg-dark: #090d14;
  --bg-card: rgba(20, 28, 42, 0.65);
  --bg-card-hover: rgba(30, 41, 61, 0.85);
  --bg-card-solid: #141c2a;
  
  --accent-terracotta: #ff6b4a;
  --accent-gold: #ffb74d;
  --accent-azure: #00c2ff;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --accent-purple: #a855f7;

  --gradient-primary: linear-gradient(135deg, #ff6b4a 0%, #ff9e43 100%);
  --gradient-azure: linear-gradient(135deg, #00c2ff 0%, #0072ff 100%);
  --gradient-glow: radial-gradient(circle, rgba(255,107,74,0.15) 0%, rgba(9,13,20,0) 70%);

  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(255, 107, 74, 0.3);

  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'Fira Code', monospace;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --shadow-glow: 0 10px 30px -10px rgba(255, 107, 74, 0.3);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

/* Background Ambient Glow Effects */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  max-width: 100vw;
  overflow: hidden;
}

.glow-1 {
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: rgba(255, 107, 74, 0.12);
}

.glow-2 {
  top: 40%;
  left: -150px;
  width: 700px;
  height: 700px;
  background: rgba(0, 194, 255, 0.08);
}

.glow-3 {
  bottom: 10%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(168, 85, 247, 0.08);
}

/* Layout Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphism Common Style */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), background-color var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 44px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px -8px rgba(255, 107, 74, 0.5);
}

.glass-btn {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  flex: 0 0 44px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Mobile Toggle & Hamburger Icon */
.mobile-toggle {
  display: none;
  cursor: pointer;
  z-index: 1002;
  position: relative;
  pointer-events: auto;
}

.hamburger-svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  display: block;
  flex-shrink: 0;
}

.hamburger-svg line {
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  transform-origin: 12px 12px;
}

.mobile-toggle.active .hamburger-svg .line-top {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.active .hamburger-svg .line-mid {
  opacity: 0;
}

.mobile-toggle.active .hamburger-svg .line-bot {
  transform: translateY(-6px) rotate(-45deg);
}

/* Navigation Bar */
.navbar-container {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.navbar {
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  flex-shrink: 0;
}

.logo-emoji {
  font-size: 1.6rem;
  transform: rotate(-10deg);
  transition: transform var(--transition-fast);
}

.logo:hover .logo-emoji {
  transform: rotate(10deg) scale(1.15);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: var(--text-main);
  white-space: nowrap;
}

.logo-text .highlight {
  color: var(--accent-terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 24px);
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.status-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-green);
}

/* Hero Section */
.hero-section {
  padding-top: 160px;
  padding-bottom: 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 74, 0.1);
  border: 1px solid var(--border-accent);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-terracotta);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-light);
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Hero Image Card */
.hero-image-wrapper {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 12px;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-card:hover .hero-img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.badge-top-right {
  top: 24px;
  right: 24px;
}

.badge-bottom-left {
  bottom: 80px;
  left: 24px;
}

.badge-dot.green {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 12px 6px 12px;
}

.potato-meta {
  display: flex;
  flex-direction: column;
}

.potato-meta .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.potato-meta .location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-poke {
  background: rgba(255, 183, 77, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(255, 183, 77, 0.3);
  padding: 10px 18px;
  min-height: 44px;
  min-width: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.btn-poke:hover {
  background: var(--accent-gold);
  color: #000;
  transform: scale(1.05);
}

.btn-poke:active {
  transform: scale(0.95);
}

.poke-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 9999px;
  font-family: var(--font-mono);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease;
}

.poke-counter.bump {
  transform: scale(1.35);
  color: var(--accent-gold);
}

/* Hero Speech Bubble for Poke Joe */
.hero-speech-bubble {
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(18, 24, 36, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--accent-gold);
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  max-width: 90%;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  z-index: 30;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55), 0 0 15px rgba(255, 183, 77, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-speech-bubble.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hero-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(18, 24, 36, 0.95);
  border-right: 1px solid var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
}

/* Floating +1 Particle */
.poke-particle {
  position: fixed;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(255, 183, 77, 0.8);
  pointer-events: none;
  user-select: none;
  z-index: 100000;
  animation: floatUpFade 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes floatUpFade {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-50px) scale(1.4);
  }
}

/* Sections Common */
section {
  padding: 90px 0;
}

.section-header {
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.margin-top-md { margin-top: 24px; }
.margin-top-lg { margin-top: 48px; }
.margin-bottom-md { margin-bottom: 24px; }

/* About Section & Specs */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-card {
  padding: 36px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.card-icon {
  font-size: 1.6rem;
}

.about-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.quote-box {
  background: rgba(255, 107, 74, 0.08);
  border-left: 4px solid var(--accent-terracotta);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 24px;
}

.quote {
  font-style: italic;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 6px !important;
}

.quote-box .author {
  font-size: 0.85rem;
  color: var(--accent-terracotta);
  font-weight: 600;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table td:last-child {
  text-align: right;
  color: var(--text-muted);
}

/* Routine Timeline */
.routine-container {
  padding: 40px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}

.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  position: relative;
}

.timeline-time {
  width: 90px;
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent-gold);
  font-size: 0.9rem;
  padding-top: 4px;
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Selfies & Gallery */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 10px 20px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 28px;
}

.gallery-card {
  overflow: hidden;
  cursor: pointer;
}

.card-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 20, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-card:hover .card-hover-overlay {
  opacity: 1;
}

.zoom-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-info {
  padding: 20px;
}

.card-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.card-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Video Section */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 32px;
}

.video-card {
  overflow: hidden;
  cursor: pointer;
}

.video-thumb-container {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumb-container img {
  transform: scale(1.06);
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 107, 74, 0.6);
  transition: transform var(--transition-fast);
}

.video-card:hover .play-icon {
  transform: scale(1.15);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-azure);
  color: #000;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
}

.video-details {
  padding: 20px;
}

.video-details h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.video-details p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.video-meta {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Console Section (Test Runner) */
.console-wrapper {
  overflow: hidden;
  background: #0b111e !important;
  border: 1px solid var(--border-accent);
}

.console-header {
  background: #151d2c;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}

.console-window-buttons {
  display: flex;
  gap: 8px;
}

.win-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.win-btn.red { background: #ff5f56; }
.win-btn.yellow { background: #ffbd2e; }
.win-btn.green { background: #27c93f; }

.console-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.console-status {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.console-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  min-height: 280px;
  max-height: 400px;
  overflow-y: auto;
  line-height: 1.7;
}

.log-line { margin-bottom: 4px; }
.log-line.system { color: #64748b; }
.log-line.info { color: #38bdf8; }
.log-line.pass { color: #4ade80; font-weight: 600; }
.log-line.fail { color: #f87171; font-weight: 600; }
.log-line.warn { color: #fbbf24; }

.log-prompt-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.prompt-user { color: var(--accent-terracotta); }

.prompt-cursor {
  width: 8px;
  height: 16px;
  background: var(--text-main);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.console-controls {
  padding: 16px 24px;
  background: #101726;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-light);
}

.btn-console {
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.btn-console-secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.btn-console-secondary:hover {
  background: rgba(255,255,255,0.12);
}

.btn-console-danger {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--accent-red);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-left: auto;
}

/* Bug Tracker Kanban */
.bug-board-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.board-meta-info {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.kanban-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kanban-column {
  padding: 20px;
  min-height: 400px;
}

.column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.col-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
}

.column-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bug-card {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.bug-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.bug-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bug-id {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-azure);
  font-weight: 600;
}

.bug-priority {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.priority-critical { background: rgba(239, 68, 68, 0.2); color: var(--accent-red); }
.priority-high { background: rgba(255, 107, 74, 0.2); color: var(--accent-terracotta); }
.priority-medium { background: rgba(255, 183, 77, 0.2); color: var(--accent-gold); }
.priority-low { background: rgba(16, 185, 129, 0.2); color: var(--accent-green); }

.bug-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  margin-bottom: 6px;
  line-height: 1.35;
}

.bug-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.bug-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.font-green { color: var(--accent-green); font-weight: 700; }

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 14, 0.85);
  backdrop-filter: blur(12px);
}

.modal-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
}

#modalImg {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.modal-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.modal-caption p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Like Button Interactive States */
.btn-like {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-like.liked {
  background: rgba(239, 68, 68, 0.22) !important;
  border-color: rgba(239, 68, 68, 0.6) !important;
  color: #ff5252 !important;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.35) !important;
}

.btn-like.liked:hover {
  background: rgba(239, 68, 68, 0.32) !important;
}

.like-btn-icon {
  display: inline-block;
  font-size: 1.1rem;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-like.liked .like-btn-icon {
  transform: scale(1.3);
  filter: drop-shadow(0 0 6px rgba(255, 82, 82, 0.8));
  animation: heartPulse 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.55); }
  100% { transform: scale(1.3); }
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: min(90vw, 380px);
  padding: 14px 20px;
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 107, 74, 0.35) !important;
  border-left: 5px solid var(--accent-terracotta) !important;
  border-radius: var(--radius-md);
  color: #ffffff !important;
  z-index: 99999 !important;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px rgba(255, 107, 74, 0.25);
  animation: slideInToast 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInToast {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Simulated Video Player */
.video-modal-content { max-width: 800px; }

.simulated-player {
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.player-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#playerPoster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-overlay-play {
  position: absolute;
  width: 72px;
  height: 72px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(255, 107, 74, 0.8);
}

.player-subtitles {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
}

.player-controls {
  padding: 12px 20px;
  background: #111827;
  display: flex;
  align-items: center;
  gap: 16px;
}

.control-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.player-progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}

.player-progress-fill {
  width: 25%;
  height: 100%;
  background: var(--accent-terracotta);
}

.time-display {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.comment-item {
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

/* Bug Form */
.bug-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.88rem;

}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-terracotta);
}

.btn-block {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

/* Footer */
.footer-section {
  padding: 60px 0 40px 0;
  border-top: 1px solid var(--border-light);
}

.footer-logo {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.footer-text {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.copyright {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* Footer Build Badge */
.build-badge-container {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.build-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 5px 16px;
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  color: var(--text-dim, #64748b);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
}

.build-badge:hover {
  border-color: rgba(255, 107, 74, 0.35);
  color: var(--text-muted, #94a3b8);
  background: rgba(15, 23, 42, 0.85);
  transform: translateY(-1px);
}

.build-badge .build-icon {
  font-size: 0.85rem;
}

.build-badge .build-version {
  color: var(--accent-azure, #00c2ff);
  font-weight: 600;
}

.build-badge .build-commit {
  color: var(--accent-gold, #ffb74d);
}

.build-badge .build-date {
  color: var(--text-muted, #94a3b8);
}

body.retro-80s-theme .build-badge {
  background: rgba(20, 0, 40, 0.85) !important;
  border-color: #00f0ff !important;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3) !important;
}

body.retro-80s-theme .build-badge .build-version {
  color: #ff007f !important;
  text-shadow: 0 0 6px rgba(255, 0, 127, 0.6) !important;
}

body.retro-80s-theme .build-badge .build-commit {
  color: #ffe600 !important;
  text-shadow: 0 0 6px rgba(255, 230, 0, 0.6) !important;
}

/* Responsive Styles */
@media (max-width: 1150px) {
  .status-indicator {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .kanban-board {
    grid-template-columns: 1fr;
  }

  .navbar-container {
    top: 10px;
    padding: 0 12px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .navbar {
    padding: 8px 14px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
  }

  .status-indicator {
    display: none !important;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .mobile-toggle {
    display: inline-flex !important;
    position: relative;
    z-index: 1002;
    pointer-events: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 8px;
    right: 8px;
    display: none;
    pointer-events: none;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    background: rgba(14, 20, 32, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 107, 74, 0.2);
    z-index: 1005;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex !important;
    pointer-events: auto !important;
    visibility: visible !important;
    animation: navSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .nav-links li {
    width: 100%;
    list-style: none;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: all var(--transition-fast);
  }

  .nav-link:hover,
  .nav-link:active,
  .nav-link.active {
    background: rgba(255, 107, 74, 0.18);
    border-color: var(--border-accent);
    color: var(--accent-gold);
    transform: translateX(4px);
  }

  /* 80's Retro Synthwave in Mobile Drawer */
  body.retro-80s-theme .nav-links {
    background: rgba(20, 0, 40, 0.98) !important;
    border: 2px solid #00f0ff !important;
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.6), 0 0 60px rgba(255, 0, 127, 0.4) !important;
  }

  body.retro-80s-theme .nav-link {
    background: rgba(35, 4, 65, 0.9) !important;
    border: 1px solid rgba(255, 0, 127, 0.5) !important;
    color: #e2bbfd !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 0.95rem !important;
    text-shadow: 0 0 8px rgba(226, 187, 253, 0.5);
  }

  body.retro-80s-theme .nav-link:hover,
  body.retro-80s-theme .nav-link:active,
  body.retro-80s-theme .nav-link.active {
    border-color: #00f0ff !important;
    color: #00f0ff !important;
    background: rgba(0, 240, 255, 0.2) !important;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5) !important;
    transform: translateX(4px);
    text-shadow: 0 0 10px #00f0ff !important;
  }

  body.retro-80s-theme .mobile-toggle .hamburger-svg {
    stroke: #00f0ff !important;
    filter: drop-shadow(0 0 6px #00f0ff);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    gap: 8px;
    padding-left: 36px;
  }

  .timeline-time {
    width: auto;
    text-align: left;
  }
}

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

@media (max-width: 640px) {
  .navbar-container {
    top: 8px;
    padding: 0 8px;
  }

  .navbar {
    padding: 8px 10px;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .logo-emoji {
    font-size: 1.35rem;
  }

  .nav-actions {
    gap: 6px;
  }

  .btn-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    flex: 0 0 44px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 18px 16px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .modal-content {
    width: 95%;
    max-width: calc(100vw - 20px);
    padding: 24px 16px;
    margin: 10px auto;
  }

  .modal-close {
    top: 10px;
    right: 10px;
  }

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

  .hero-buttons {
    flex-direction: column;
  }
}

/* ==========================================================================
   80's Retro Synthwave Theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;800;900&family=Press+Start+2P&display=swap');

body.retro-80s-theme,
html.retro-80s-theme body {
  --bg-dark: #090014;
  --bg-card: rgba(30, 4, 55, 0.85);
  --bg-card-hover: rgba(55, 8, 95, 0.95);
  --bg-card-solid: #1d0236;

  --accent-terracotta: #ff007f; /* Neon Hot Pink */
  --accent-gold: #ffe600;       /* Synthwave Neon Yellow */
  --accent-azure: #00f0ff;      /* Electric Cyber Cyan */
  --accent-green: #00ff66;      /* Laser Lime */
  --accent-red: #ff0055;
  --accent-purple: #bd00ff;     /* Laser Purple */

  --gradient-primary: linear-gradient(135deg, #ff007f 0%, #ffe600 100%);
  --gradient-azure: linear-gradient(135deg, #00f0ff 0%, #bd00ff 100%);
  --gradient-glow: radial-gradient(circle, rgba(255, 0, 127, 0.35) 0%, rgba(9, 0, 20, 0) 70%);

  --text-main: #ffffff;
  --text-muted: #e2bbfd;
  --text-dim: #c084fc;

  --border-light: rgba(255, 0, 127, 0.35);
  --border-accent: rgba(0, 240, 255, 0.8);

  --shadow-glow: 0 0 30px rgba(255, 0, 127, 0.6), 0 0 15px rgba(0, 240, 255, 0.5);
  --shadow-card: 0 15px 40px rgba(9, 0, 20, 0.95), 0 0 20px rgba(189, 0, 255, 0.35);

  background-color: #090014 !important;
  background-image: 
    linear-gradient(rgba(255, 0, 127, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, #090014 0%, #1c0036 50%, #06000e 100%) !important;
  background-size: 40px 40px, 40px 40px, 100% 100% !important;
}

/* CRT Scanline Overlay */
body.retro-80s-theme::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.22) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 99999;
  opacity: 0.65;
}

/* Ambient Glows */
body.retro-80s-theme .glow-1 {
  background: rgba(255, 0, 127, 0.35) !important;
  filter: blur(100px) !important;
}

body.retro-80s-theme .glow-2 {
  background: rgba(0, 240, 255, 0.28) !important;
  filter: blur(100px) !important;
}

body.retro-80s-theme .glow-3 {
  background: rgba(189, 0, 255, 0.3) !important;
  filter: blur(100px) !important;
}

/* Typography Overrides */
body.retro-80s-theme h1,
body.retro-80s-theme h2,
body.retro-80s-theme h3,
body.retro-80s-theme .hero-title,
body.retro-80s-theme .section-title,
body.retro-80s-theme .retire-title,
body.retro-80s-theme .section-headline {
  font-family: 'Orbitron', 'Outfit', sans-serif !important;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(255, 0, 127, 0.4), 0 0 30px rgba(0, 240, 255, 0.3);
}

body.retro-80s-theme .gradient-text {
  background: linear-gradient(90deg, #ff007f 0%, #00f0ff 50%, #ffe600 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 0 12px rgba(255, 0, 127, 0.8)) !important;
}

/* Navbar */
body.retro-80s-theme .navbar {
  background: rgba(20, 0, 40, 0.9) !important;
  border: 2px solid #00f0ff !important;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.5), 0 0 50px rgba(255, 0, 127, 0.3) !important;
}

body.retro-80s-theme .logo {
  color: #00f0ff !important;
}

body.retro-80s-theme .logo-text {
  font-family: 'Orbitron', sans-serif !important;
  color: #00f0ff !important;
  text-shadow: 0 0 10px #00f0ff, 0 0 25px #ff007f !important;
}

body.retro-80s-theme .logo-text .highlight {
  color: #ffe600 !important;
  text-shadow: 0 0 10px #ffe600 !important;
}

body.retro-80s-theme .nav-link {
  color: #e2bbfd !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.5px !important;
  white-space: nowrap !important;
}

body.retro-80s-theme .nav-link:hover,
body.retro-80s-theme .nav-link.active {
  color: #00f0ff !important;
  text-shadow: 0 0 10px #00f0ff, 0 0 20px #ff007f !important;
}

/* Buttons */
body.retro-80s-theme .btn-primary {
  background: linear-gradient(90deg, #ff007f 0%, #bd00ff 100%) !important;
  color: #ffffff !important;
  border: 2px solid #ffe600 !important;
  font-family: 'Orbitron', sans-serif !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.8), 0 0 35px rgba(0, 240, 255, 0.4) !important;
  text-shadow: 0 0 8px #ffffff !important;
}

body.retro-80s-theme .btn-primary:hover {
  background: linear-gradient(90deg, #00f0ff 0%, #ff007f 100%) !important;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.9), 0 0 60px rgba(255, 0, 127, 0.8) !important;
}

body.retro-80s-theme .btn-secondary,
body.retro-80s-theme .glass-btn {
  background: rgba(35, 4, 65, 0.85) !important;
  border: 2px solid #00f0ff !important;
  color: #00f0ff !important;
  font-family: 'Orbitron', sans-serif !important;
  text-shadow: 0 0 8px #00f0ff !important;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4) !important;
}

body.retro-80s-theme .btn-secondary:hover,
body.retro-80s-theme .glass-btn:hover {
  border-color: #ff007f !important;
  color: #ffffff !important;
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.8) !important;
}

/* Glass Cards & Containers */
body.retro-80s-theme .glass-card,
body.retro-80s-theme .about-card,
body.retro-80s-theme .hero-stats,
body.retro-80s-theme .kanban-column,
body.retro-80s-theme .calculator-card,
body.retro-80s-theme .progress-section,
body.retro-80s-theme .metric-card,
body.retro-80s-theme .video-card,
body.retro-80s-theme .selfie-card,
body.retro-80s-theme .milestone-item,
body.retro-80s-theme .calc-result-box {
  background: rgba(28, 4, 52, 0.88) !important;
  border: 2px solid #ff007f !important;
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.4), inset 0 0 20px rgba(0, 240, 255, 0.12) !important;
}

body.retro-80s-theme .glass-card:hover,
body.retro-80s-theme .metric-card:hover,
body.retro-80s-theme .milestone-item:hover {
  border-color: #00f0ff !important;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), inset 0 0 25px rgba(255, 0, 127, 0.25) !important;
}

/* Badges & Indicators */
body.retro-80s-theme .badge-pill,
body.retro-80s-theme .retire-badge {
  background: rgba(255, 0, 127, 0.2) !important;
  border: 2px solid #ffe600 !important;
  color: #ffe600 !important;
  font-family: 'Orbitron', sans-serif !important;
  text-shadow: 0 0 10px #ffe600 !important;
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.3) !important;
}

body.retro-80s-theme .pulse-dot {
  background-color: #00f0ff !important;
  box-shadow: 0 0 12px #00f0ff, 0 0 25px #ff007f !important;
}

/* Retirement Countdown Specifics */
body.retro-80s-theme .target-date-card {
  background: rgba(20, 0, 40, 0.95) !important;
  border: 2px solid #00f0ff !important;
  color: #00f0ff !important;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.5) !important;
}

body.retro-80s-theme .target-date-card strong {
  color: #ffe600 !important;
  text-shadow: 0 0 10px #ffe600 !important;
}

body.retro-80s-theme .timer-card {
  background: rgba(25, 2, 46, 0.92) !important;
  border: 2px solid #00f0ff !important;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4), inset 0 0 20px rgba(255, 0, 127, 0.2) !important;
}

body.retro-80s-theme .timer-card::before {
  background: linear-gradient(90deg, #ff007f, #00f0ff, #ffe600) !important;
  height: 4px !important;
}

body.retro-80s-theme .timer-number {
  font-family: 'Orbitron', sans-serif !important;
  color: #00f0ff !important;
  text-shadow: 0 0 15px #00f0ff, 0 0 30px #ff007f, 0 0 45px #bd00ff !important;
}

body.retro-80s-theme .timer-label {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 0.75rem !important;
  color: #ffe600 !important;
  text-shadow: 0 0 8px #ffe600 !important;
  letter-spacing: 2px !important;
}

body.retro-80s-theme .ms-ticker-container {
  background: rgba(20, 0, 40, 0.9) !important;
  border: 1px solid #ff007f !important;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.4) !important;
}

body.retro-80s-theme .ms-ticker-val {
  color: #ff007f !important;
  text-shadow: 0 0 8px #ff007f !important;
}

body.retro-80s-theme .progress-bar-fill {
  background: linear-gradient(90deg, #ff007f, #bd00ff, #00f0ff, #ffe600) !important;
  box-shadow: 0 0 20px #00f0ff, 0 0 35px #ff007f !important;
}

/* QA Console -> CRT Arcade Terminal */
body.retro-80s-theme .console-wrapper {
  background: #001205 !important;
  border: 3px solid #00ff66 !important;
  box-shadow: 0 0 35px rgba(0, 255, 102, 0.6), inset 0 0 35px rgba(0, 255, 102, 0.25) !important;
}

body.retro-80s-theme .console-header {
  background: #00220a !important;
  border-bottom: 2px solid #00ff66 !important;
}

body.retro-80s-theme .console-title {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 0.7rem !important;
  color: #00ff66 !important;
  text-shadow: 0 0 8px #00ff66 !important;
}

body.retro-80s-theme .console-body {
  font-family: 'Fira Code', monospace !important;
  color: #00ff66 !important;
  text-shadow: 0 0 6px #00ff66 !important;
}

body.retro-80s-theme .log-line.system {
  color: #00f0ff !important;
  text-shadow: 0 0 6px #00f0ff !important;
}

body.retro-80s-theme .log-line.success {
  color: #ffe600 !important;
  text-shadow: 0 0 6px #ffe600 !important;
}

body.retro-80s-theme .log-prompt-line {
  color: #ff007f !important;
  text-shadow: 0 0 6px #ff007f !important;
}

/* Kanban Bug Board */
body.retro-80s-theme .bug-card {
  background: rgba(38, 4, 68, 0.95) !important;
  border: 1px solid #00f0ff !important;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.35) !important;
}

body.retro-80s-theme .bug-card:hover {
  border-color: #ff007f !important;
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.8) !important;
}

/* Footer */
body.retro-80s-theme .footer-section {
  border-top: 2px solid #ff007f !important;
  background: rgba(10, 0, 20, 0.95) !important;
  box-shadow: 0 -10px 30px rgba(255, 0, 127, 0.3) !important;
}


