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

:root {
  /* Font Family */
  --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Theme: Dark Mode (Default) */
  --bg-color: hsl(222, 47%, 9%);
  --bg-gradient: radial-gradient(circle at 0% 0%, hsl(220, 45%, 15%) 0%, hsl(222, 47%, 9%) 100%);
  --card-bg: hsla(222, 47%, 14%, 0.6);
  --card-border: hsla(217, 32%, 20%, 0.5);
  --text-primary: hsl(210, 40%, 98%);
  --text-secondary: hsl(215, 25%, 72%);
  --text-muted: hsl(215, 16%, 57%);
  --accent-color: hsl(226, 84%, 64%);
  --accent-color-rgb: 99, 102, 241;
  --accent-secondary: hsl(262, 83%, 62%);
  --accent-secondary-rgb: 139, 92, 246;
  --success-color: hsl(142, 71%, 45%);
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --glass-bg: hsla(222, 47%, 12%, 0.75);
  --glass-border: hsla(217, 32%, 20%, 0.6);
  --glass-blur: blur(16px);
}

/* Light Theme Variables */
body.light-theme {
  --bg-color: hsl(210, 40%, 98%);
  --bg-gradient: radial-gradient(circle at 0% 0%, hsl(210, 40%, 96%) 0%, hsl(210, 40%, 98%) 100%);
  --card-bg: rgba(255, 255, 255, 0.75);
  --card-border: hsla(214, 32%, 91%, 0.8);
  --text-primary: hsl(222, 47%, 11%);
  --text-secondary: hsl(215, 25%, 35%);
  --text-muted: hsl(215, 16%, 50%);
  --accent-color: hsl(226, 80%, 55%);
  --accent-color-rgb: 59, 130, 246;
  --accent-secondary: hsl(262, 80%, 50%);
  --accent-secondary-rgb: 124, 58, 237;
  
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(226, 232, 240, 0.8);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

/* Basic Reset & Smooth Scroll */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-color);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  padding: 2rem 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--card-border);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Typography styling */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-color) 70%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 1rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--accent-secondary);
}

/* Wrapper Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 2rem;
  position: relative;
}

/* Sidebar Styling */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-sticky {
  position: sticky;
  top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Card Styling (Glassmorphic) */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(var(--accent-color-rgb), 0.3);
}

/* Profile Card specific styles */
.profile-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
}

.avatar-container {
  width: 110px;
  height: 110px;
  margin: 0.5rem auto 1.5rem auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(var(--accent-color-rgb), 0.3);
}

.avatar-initials {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
}

.job-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  border-top: 1px solid var(--card-border);
  padding-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--accent-color);
  stroke-width: 2;
  flex-shrink: 0;
}

/* Theme Toggle button & Print button */
.action-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(var(--accent-color-rgb), 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
  color: white;
  border: none;
}

.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(var(--accent-secondary-rgb), 0.4);
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Skill tags & Categories */
.skill-category {
  margin-bottom: 1.5rem;
}

.skill-category:last-child {
  margin-bottom: 0;
}

.skill-category-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.skills-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-badge {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.skill-badge:hover, .skill-badge.active {
  background: rgba(var(--accent-color-rgb), 0.15);
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

/* Main Content Area */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Timeline Layout */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-secondary) 50%, var(--card-border) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 3px solid var(--accent-color);
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  background: var(--accent-secondary);
  border-color: var(--text-primary);
  box-shadow: 0 0 10px var(--accent-secondary);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.role-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
}

.company-name {
  color: var(--accent-color);
  font-weight: 600;
  font-family: var(--font-heading);
}

.timeline-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

.location {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.experience-details {
  list-style-type: none;
}

.experience-details li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.experience-details li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Projects Showcase */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-title-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.project-card h3 {
  font-size: 1.2rem;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  background: var(--accent-color);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.project-award {
  background: var(--success-color);
}

.project-desc {
  font-size: 0.9rem;
  flex-grow: 1;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.project-tech-badge {
  font-size: 0.75rem;
  background: rgba(var(--accent-color-rgb), 0.07);
  border: 1px solid rgba(var(--accent-color-rgb), 0.15);
  color: var(--accent-color);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* List Items (Speaking, Honors) */
.list-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.list-item:hover {
  transform: translateX(4px);
}

.list-item-icon {
  font-size: 1.5rem;
  line-height: 1;
  padding-top: 0.1rem;
}

.list-item-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.list-item-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Education Layout */
.education-item {
  margin-bottom: 1.5rem;
}

.education-item:last-child {
  margin-bottom: 0;
}

.education-item h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
}

.education-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .container {
    grid-template-columns: 1fr;
  }
  
  .sidebar-sticky {
    position: static;
  }
}

@media (max-width: 576px) {
  body {
    padding: 1rem 0.5rem;
  }
  
  .timeline-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .timeline-date {
    margin-top: 0.25rem;
  }
}

/* ==========================================================================
   Print Stylesheet Optimization
   ========================================================================== */
.only-print {
  display: none !important;
}

/* ==========================================================================
   Print Stylesheet Optimization
   ========================================================================== */
@media print {
  @page {
    size: letter;
    margin: 0.3in;
  }

  :root {
    --bg-color: #ffffff;
    --text-primary: #1c1917;
    --text-secondary: #44403c;
    --text-muted: #78716c;
    --accent-color: #7c2d12;
    --card-bg: transparent;
    --card-border: transparent;
  }

  body {
    background: white !important;
    background-image: none !important;
    color: #1c1917 !important;
    font-size: 7.8pt !important;
    line-height: 1.2 !important;
    padding: 0 !important;
    min-height: auto !important;
  }

  .no-print {
    display: none !important;
  }

  .only-print {
    display: block !important;
  }

  .container {
    display: grid !important;
    grid-template-columns: 190px 1fr !important;
    gap: 1.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .sidebar {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.65rem !important;
    width: 100% !important;
  }

  .card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
  }
  
  .card:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
  }

  .profile-card {
    text-align: left !important;
    border-bottom: 1px solid #e7e5e4 !important;
    padding-bottom: 0.4rem !important;
  }

  .profile-card::before {
    display: none !important;
  }

  .avatar-container {
    display: none !important;
  }

  h1 {
    font-size: 13.5pt !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: #1c1917 !important;
    margin-bottom: 0.1rem !important;
  }

  .job-title {
    font-size: 9pt !important;
    color: #7c2d12 !important;
    margin-bottom: 0.25rem !important;
    font-weight: 700 !important;
  }

  .contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.2rem !important;
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .contact-item {
    font-size: 7.2pt !important;
    color: #44403c !important;
  }

  .contact-item svg {
    display: none !important;
  }

  h2 {
    font-size: 9.5pt !important;
    margin-top: 0 !important;
    margin-bottom: 0.3rem !important;
    border-bottom: 1px solid #e7e5e4 !important;
    padding-bottom: 0.1rem !important;
  }

  h2::after {
    display: none !important;
  }

  .skill-category {
    margin-bottom: 0.4rem !important;
  }

  .skill-category:last-child {
    margin-bottom: 0 !important;
  }

  .skill-category-title {
    font-size: 7.2pt !important;
    margin-bottom: 0.1rem !important;
  }

  .skills-wrapper {
    gap: 0.15rem !important;
  }

  .skill-badge {
    background: #f5f5f4 !important;
    border: 1px solid #e7e5e4 !important;
    color: #44403c !important;
    padding: 0.05rem 0.3rem !important;
    font-size: 7.2pt !important;
    border-radius: 4px !important;
  }

  .main-content {
    gap: 0.65rem !important;
  }

  .timeline {
    padding-left: 0 !important;
  }

  .timeline::before {
    display: none !important;
  }

  .timeline-dot {
    display: none !important;
  }

  .timeline-item {
    margin-bottom: 0.45rem !important;
    page-break-inside: avoid !important;
  }

  .timeline-header {
    margin-bottom: 0.05rem !important;
  }

  .role-title {
    font-size: 8.8pt !important;
  }

  .company-name {
    color: #1c1917 !important;
    font-size: 8.2pt !important;
  }

  .timeline-date {
    font-size: 7.2pt !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-weight: 700 !important;
    color: #78716c !important;
  }

  .location {
    font-size: 7.2pt !important;
    display: block !important;
    margin-top: 0 !important;
    color: #78716c !important;
  }

  .experience-details li {
    font-size: 7.5pt !important;
    margin-bottom: 0.05rem !important;
    padding-left: 0.65rem !important;
    line-height: 1.15 !important;
  }

  .experience-details li::before {
    content: "•" !important;
    left: 0 !important;
    color: #78716c !important;
  }

  /* Projects Section in Print (Optimized for space) */
  #projects {
    page-break-inside: avoid !important;
    margin-top: 0.35rem !important;
  }

  .projects-grid {
    display: block !important;
  }

  .project-card {
    display: block !important;
    margin-bottom: 0.25rem !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    page-break-inside: avoid !important;
  }

  .project-title-area {
    display: inline !important;
    margin-bottom: 0 !important;
  }

  .project-card h3 {
    font-size: 8.2pt !important;
    display: inline !important;
    font-weight: 700 !important;
  }

  .project-card h3::after {
    content: " — " !important;
  }

  .project-badge {
    display: none !important;
  }

  .project-desc {
    display: inline !important;
    font-size: 7.5pt !important;
    color: #44403c !important;
    line-height: 1.15 !important;
  }

  .project-tech {
    display: none !important;
  }

  /* Lists in Print */
  .list-container {
    gap: 0.2rem !important;
  }

  .list-item {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    margin-bottom: 0.15rem !important;
    page-break-inside: avoid !important;
  }

  .list-item-icon {
    display: none !important;
  }

  .list-item-content h4 {
    font-size: 7.5pt !important;
    margin-bottom: 0 !important;
  }

  .list-item-content p {
    font-size: 7.2pt !important;
    line-height: 1.15 !important;
  }

  .education-item {
    margin-bottom: 0.25rem !important;
    page-break-inside: avoid !important;
  }

  .education-item h4 {
    font-size: 8.2pt !important;
  }

  .education-meta {
    margin-top: 0.02rem !important;
    margin-bottom: 0.05rem !important;
    font-size: 7.2pt !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.02rem !important;
  }
}

/* ==========================================================================
   Design Theme: Minimal Editorial
   ========================================================================== */
body.theme-editorial {
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --bg-color: #faf9f5;
  --bg-gradient: none;
  --card-bg: transparent;
  --card-border: transparent;
  --text-primary: #1c1917;
  --text-secondary: #44403c;
  --text-muted: #78716c;
  --accent-color: #7c2d12;
  --accent-color-rgb: 124, 45, 18;
  --accent-secondary: #44403c;
  --accent-secondary-rgb: 68, 64, 60;
  
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-xl: none;
  --glass-bg: transparent;
  --glass-border: transparent;
  --glass-blur: none;
}

body.theme-editorial.light-theme {
  --bg-color: #1c1917;
  --text-primary: #f5f5f4;
  --text-secondary: #d6d3d1;
  --text-muted: #a8a29e;
  --accent-color: #f97316;
  --accent-color-rgb: 249, 115, 22;
  --accent-secondary: #d6d3d1;
  --accent-secondary-rgb: 214, 211, 209;
}

body.theme-editorial .card {
  border-radius: 0 !important;
  border: none !important;
  border-bottom: 1px solid #e7e5e4 !important;
  padding: 1.5rem 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.theme-editorial.light-theme .card {
  border-bottom: 1px solid #44403c !important;
}

body.theme-editorial .card:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: #e7e5e4 !important;
}

body.theme-editorial.light-theme .card:hover {
  border-color: #44403c !important;
}

body.theme-editorial .profile-card::before {
  display: none !important;
}

body.theme-editorial .avatar-container {
  border-radius: 0 !important;
  background: var(--accent-color) !important;
  box-shadow: none !important;
}

body.theme-editorial h2::after {
  display: none !important;
}

body.theme-editorial h2 {
  font-weight: 500 !important;
  border-bottom: 1px solid var(--text-primary) !important;
  padding-bottom: 0.25rem !important;
  margin-bottom: 1.25rem !important;
}

body.theme-editorial .skill-badge {
  border-radius: 0 !important;
  background: transparent !important;
  border: 1px solid #d6d3d1 !important;
}

body.theme-editorial.light-theme .skill-badge {
  border: 1px solid #44403c !important;
}

body.theme-editorial .skill-badge:hover, 
body.theme-editorial .skill-badge.active {
  background: var(--accent-color) !important;
  color: white !important;
  border-color: var(--accent-color) !important;
}

body.theme-editorial .timeline::before {
  background: #d6d3d1 !important;
  width: 1px !important;
}

body.theme-editorial.light-theme .timeline::before {
  background: #44403c !important;
}

body.theme-editorial .timeline-dot {
  border-radius: 0 !important;
  border: 1px solid var(--text-primary) !important;
  background: var(--bg-color) !important;
  width: 10px !important;
  height: 10px !important;
  left: -1.9rem !important;
  top: 9px !important;
}

body.theme-editorial .timeline-item:hover .timeline-dot {
  background: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  box-shadow: none !important;
}

body.theme-editorial .timeline-date {
  border-radius: 0 !important;
  border: none !important;
  font-family: var(--font-heading) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  padding: 0 !important;
  background: transparent !important;
}

body.theme-editorial .project-card {
  border: 1px solid #e7e5e4 !important;
  padding: 1.25rem !important;
}

body.theme-editorial.light-theme .project-card {
  border: 1px solid #44403c !important;
}

body.theme-editorial .project-card:hover {
  border-color: var(--accent-color) !important;
}

body.theme-editorial .project-tech-badge {
  border-radius: 0 !important;
  background: transparent !important;
  border: 1px solid #e7e5e4 !important;
  color: var(--text-muted) !important;
}

body.theme-editorial.light-theme .project-tech-badge {
  border: 1px solid #44403c !important;
}

body.theme-editorial .list-item {
  border-radius: 0 !important;
  border: none !important;
  border-bottom: 1px solid #e7e5e4 !important;
  background: transparent !important;
  padding: 0.75rem 0 !important;
}

body.theme-editorial.light-theme .list-item {
  border-bottom: 1px solid #44403c !important;
}

body.theme-editorial .list-item:hover {
  transform: none !important;
}

body.theme-editorial .list-item-icon {
  font-size: 1.25rem !important;
}

/* ==========================================================================
   Design Theme: Cyber Console
   ========================================================================== */
body.theme-cyber {
  --font-heading: 'JetBrains Mono', 'Fira Code', monospace;
  --font-body: 'JetBrains Mono', 'Fira Code', monospace;
  --bg-color: #060709;
  --bg-gradient: none;
  --card-bg: #0b0c10;
  --card-border: #1f2937;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --accent-color: #00f5d4;
  --accent-color-rgb: 0, 245, 212;
  --accent-secondary: #00bbf9;
  --accent-secondary-rgb: 0, 187, 249;
  --success-color: #39ff14;
  
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-xl: none;
  --glass-bg: #0b0c10;
  --glass-border: #1f2937;
  --glass-blur: none;
}

body.theme-cyber.light-theme {
  --bg-color: #f0fdfa;
  --card-bg: #ffffff;
  --card-border: #99f6e4;
  --text-primary: #0f766e;
  --text-secondary: #115e59;
  --text-muted: #14b8a6;
  --accent-color: #0d9488;
  --accent-color-rgb: 13, 148, 136;
  --accent-secondary: #0f766e;
  --accent-secondary-rgb: 15, 118, 110;
}

body.theme-cyber .card {
  border-radius: 4px !important;
  border: 1px solid var(--card-border) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.theme-cyber .card:hover {
  transform: translateY(-2px) !important;
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 12px rgba(var(--accent-color-rgb), 0.15) !important;
}

body.theme-cyber .profile-card::before {
  height: 4px !important;
  background: var(--accent-color) !important;
}

body.theme-cyber .avatar-container {
  border-radius: 4px !important;
  background: var(--card-border) !important;
  box-shadow: none !important;
}

body.theme-cyber h2::after {
  height: 2px !important;
  border-radius: 0 !important;
  background: var(--accent-color) !important;
}

body.theme-cyber h2::before {
  content: "> " !important;
  color: var(--accent-color) !important;
}

body.theme-cyber .skill-badge {
  border-radius: 4px !important;
  background: rgba(var(--accent-color-rgb), 0.03) !important;
  border: 1px solid var(--card-border) !important;
}

body.theme-cyber .skill-badge:hover, 
body.theme-cyber .skill-badge.active {
  background: var(--accent-color) !important;
  color: #060709 !important;
  border-color: var(--accent-color) !important;
  font-weight: 700 !important;
}

body.theme-cyber .timeline::before {
  background: var(--card-border) !important;
  width: 2px !important;
}

body.theme-cyber .timeline-dot {
  border-radius: 2px !important;
  border: 2px solid var(--accent-color) !important;
  background: var(--bg-color) !important;
  width: 10px !important;
  height: 10px !important;
  left: -1.9rem !important;
  top: 9px !important;
}

body.theme-cyber .timeline-item:hover .timeline-dot {
  background: var(--accent-color) !important;
  box-shadow: 0 0 8px var(--accent-color) !important;
}

body.theme-cyber .timeline-date {
  border-radius: 4px !important;
  border: 1px solid var(--card-border) !important;
  background: rgba(var(--accent-color-rgb), 0.03) !important;
}

body.theme-cyber .project-card {
  border-radius: 4px !important;
}

body.theme-cyber .project-tech-badge {
  border-radius: 2px !important;
  background: rgba(var(--accent-color-rgb), 0.03) !important;
  border: 1px solid var(--card-border) !important;
}

body.theme-cyber .list-item {
  border-radius: 4px !important;
  border: 1px solid var(--card-border) !important;
}

body.theme-cyber .list-item:hover {
  transform: translateY(-2px) !important;
  border-color: var(--accent-color) !important;
}
}