:root {
  --bg: #000000;
  --fg: #ffffff;
  /* Third brand color */
  --third: #72cbff;
  --muted: #b0b0b0;
  --border: rgba(255,255,255,0.18);
  --accent: #ffffff;
  --maxw: 860px;
}
html, body { height: 100%; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  font-family: "Barlow", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
  letter-spacing: 0.2px;
  /* Make header touch the very top while keeping side/bottom padding */
  padding: 0 clamp(24px, 5vw, 64px) clamp(24px, 5vw, 64px);
}
body.dashboard-page { 
  padding: 0; 
  margin: 0;
}

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { opacity: .75; transition: opacity .3s ease; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.fullbleed { max-width: none; margin: 0; padding: 0; }

header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 14px;
}

/* Header adjustments for dashboard page */
body.dashboard-page header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 20;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: center; height: 64px; }
.brand { font-weight: 700; letter-spacing: 0.5px; }
nav ul { list-style: none; display: flex; gap: 18px; padding: 0; margin: 0; }
nav a {
  text-decoration: none;
  color: var(--fg);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
nav a:hover,
nav a:focus-visible {
  transform: translateY(-1px);
  border-color: var(--third);
  color: var(--third);
  background: rgba(114,203,255,0.12);
  box-shadow: 0 0 0 3px rgba(114,203,255,0.18);
}

.hero-inner { display: grid; grid-template-columns: 1fr; gap: 24px; padding: 24px 0; }
.title { font-size: clamp(40px, 7vw, 64px); line-height: 1.05; margin: 0; letter-spacing: -0.01em; }
.tagline { font-size: clamp(16px, 2.5vw, 20px); color: var(--muted); margin-top: 10px; }

section { padding: clamp(24px, 6vw, 40px) 0; }
section h2 { font-size: 22px; text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 18px; }
.two-col { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 800px) { .two-col { grid-template-columns: 1fr 1fr; gap: 28px; } }

.list { margin: 0; padding-left: 18px; }
.list li { margin: 6px 0; }
.meta { color: var(--muted); font-size: 14px; }

.card {
  border: none;
  background: rgba(255,255,255,0.04);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform .4s ease, opacity .4s ease, background-color .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-2px); background: rgba(255,255,255,0.06); }

/* Project card expansion styles */
.project-card {
  cursor: pointer;
  transition: transform .4s ease, opacity .4s ease, background-color .3s ease, box-shadow .3s ease;
  position: relative;
  z-index: 1;
}

.project-card:hover {
  transform: translateY(-2px);
}

/* Modal overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 20px;
  box-sizing: border-box;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Expanded project card in modal */
.project-card.modal-expanded {
  position: relative;
  z-index: 1001;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.06) inset;
  transform: scale(1.02);
  margin: 0;
}

/* Enhanced stats formatting */
.project-details-expanded {
  margin-top: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.stat-item {
  background: rgba(255,255,255,0.05);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-label {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.stat-value {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
}

.project-summary,
.project-details {
  transition: opacity .2s ease;
}

.expand-hint,
.collapse-hint {
  opacity: 0.7;
  transition: opacity .2s ease;
}

.project-card:hover .expand-hint {
  opacity: 1;
}

.close-hint {
  text-align: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

/* Ensure cards grid doesn't interfere with modal */
.cards-grid.modal-active .project-card:not(.modal-expanded) {
  opacity: 0.3;
  pointer-events: none;
}

/* Skills Section */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 24px;
}

@media (min-width: 800px) {
  .skills-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.skill-category h3 {
  font-size: 18px;
  margin: 0 0 16px;
  color: var(--third);
  font-weight: 600;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: rgba(114,203,255,0.12);
  color: var(--third);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(114,203,255,0.3);
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(114,203,255,0.2);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(114,203,255,0.2);
}

/* Timeline Section */
.timeline {
  position: relative;
  margin-top: 40px;
}

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

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 60px;
}

.timeline-marker {
  position: absolute;
  left: 11px;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--third);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--third);
}

.timeline-content {
  background: rgba(255,255,255,0.04);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.timeline-date {
  color: var(--third);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.timeline-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 800px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-item {
    padding-left: 0;
    width: 45%;
  }
  
  .timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
  }
  
  .timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
  }
  
  .timeline-marker {
    left: calc(50% - 10px);
  }
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  border-color: var(--third);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (min-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }
}

/* Blog Section */
/*
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

@media (min-width: 800px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
  }
}

.blog-card {
  background: rgba(255,255,255,0.04);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.blog-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border-color: var(--third);
}

.blog-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-date {
  color: var(--muted);
  font-size: 14px;
}

.blog-category {
  color: var(--third);
  font-size: 14px;
  font-weight: 500;
}

.blog-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.blog-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.blog-link {
  color: var(--third);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--fg);
  text-decoration: underline;
}
*/

/* Resume Section */
.resume-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

@media (min-width: 800px) {
  .resume-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
  }
}

.resume-card {
  background: rgba(255,255,255,0.04);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.resume-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border-color: var(--third);
}

.resume-icon {
  color: var(--third);
  margin-bottom: 16px;
}

.resume-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.resume-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.resume-download {
  display: inline-block;
  background: var(--third);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.resume-download:hover {
  background: var(--fg);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(114,203,255,0.4);
}


footer { padding: 40px 0; text-align: center; color: var(--muted); }

.btn {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-decoration: none;
  color: var(--fg);
  transition: color .3s ease, background-color .3s ease, transform .3s ease;
}
.btn:hover { background: #ffffff; color: #000000; transform: translateY(-1px); }

h1, h2, .brand { font-family: "Barlow", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial; font-weight: 700; }

/* Monospace utility */
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 0.95em; color: var(--muted); }

/* --- Load sequence animations ---
   Step 1: Titles slide in
   Step 2: Then all text fades in
*/

/* Initial states */
body.titles-init .brand,
body.titles-init .title,
body.titles-init section h2 {
  opacity: 0;
  transform: translateY(14px);
}

body.texts-init main,
body.texts-init footer,
body.texts-init nav ul {
  opacity: 0;
}

/* Transition properties */
.brand, .title, section h2 { transition: transform .6s ease, opacity .6s ease; }
main, footer, nav ul { transition: opacity .6s ease; }

/* Active (animated) states */
body.titles-in .brand,
body.titles-in .title,
body.titles-in section h2 {
  opacity: 1;
  transform: none;
}

body.texts-in main,
body.texts-in footer,
body.texts-in nav ul {
  opacity: 1;
}

/* Subtle scroll reveal */
.reveal { opacity: 0; transform: translateY(14px); will-change: transform, opacity; transition: transform .6s ease, opacity .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Focus and selection polish */
:focus-visible { outline: 2px solid var(--third); outline-offset: 2px; border-radius: 6px; }
::selection { background: rgba(114,203,255,0.35); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.in,
  body.titles-init .brand,
  body.titles-init .title,
  body.titles-init section h2,
  body.texts-init main,
  body.texts-init footer,
  body.texts-init nav ul,
  body.titles-in .brand,
  body.titles-in .title,
  body.titles-in section h2,
  body.texts-in main,
  body.texts-in footer,
  body.texts-in nav ul {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Keep Experience list items on a single line (no wrapping) */
#experience .list li {
  white-space: nowrap;
}

/* Remove bullet markers for Experience list */
#experience .list {
  list-style: none;
  padding-left: 0;
}

/* On wide screens, place Experience content in the right column */
@media (min-width: 800px) {
  #experience .two-col > div {
    grid-column: 2;
  }
}

/* Light blue for company names in Experience */
#experience .list strong {
  color: var(--third);
}

/* Utility: apply the third brand color to inline highlights */
.third {
  color: var(--third);
}

/* Increase line spacing for the Fencing paragraph */
#fencing o {
  display: block;
  line-height: 2;
}

/* Enhanced Experience card styling */
.experience-card {
  position: relative;
}

.experience-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.experience-year {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--third);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.experience-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}

.experience-company {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--third);
  margin-bottom: 0.5rem;
}

.experience-description {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact: social links styling */
.caps { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.social-links { list-style: none; padding-left: 0; display: flex; flex-direction: column; gap: 10px; max-width: 260px; }
.social-links li { margin: 0; width: 100%; }
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  height: 44px;
  width: 100%;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--fg);
  background: rgba(255,255,255,0.03);
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  flex-direction: row;
}
.social-links a:hover {
  transform: translateY(-1px);
  border-color: var(--third);
  color: var(--third);
  box-shadow: 0 0 0 3px rgba(114,203,255,0.15);
}
.social-links svg { fill: currentColor; display: block; }

/* Enhanced social links with descriptions */
.social-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-links a span:first-of-type {
  font-weight: 600;
  color: var(--fg);
}

.social-desc {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
}


/* Dashboard */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.card.kpi {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: space-between;
}
.kpi-label { 
  color: var(--muted); 
  font-size: 10px; 
  letter-spacing: 0.08em; 
  text-transform: uppercase; 
  margin: 0;
}
.kpi-value { 
  font-size: clamp(16px, 2vw, 18px); 
  font-weight: 700; 
  margin: 0;
  line-height: 1.1;
}
.kpi-meta { 
  color: var(--muted); 
  font-size: 11px; 
  margin: 0;
  line-height: 1.2;
}

.project-card .row { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.project-card .name { font-weight: 700; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  font-size: 12px;
  color: var(--muted);
}
.mono-small { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 12px; color: var(--muted); }

/* Dashboard specific styles */
.dashboard-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 100vh;
  padding-top: 25px;
}

.full-height-sidebar {
  background: rgba(255,255,255,0.02);
  border-right: 1px solid var(--border);
  padding: 24px;
  overflow-y: auto;
}

.sidebar-content {
  position: sticky;
  top: 24px;
}

.main-content-area {
  overflow-y: auto;
  padding-top: 10px; /* Account for fixed header height */
}

.project-controls {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.control-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.control-group select {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.control-group select:hover {
  border-color: var(--third);
}

.control-group select:focus {
  outline: none;
  border-color: var(--third);
  box-shadow: 0 0 0 2px rgba(114,203,255,0.2);
}

.kpi {
  margin-bottom: 16px;
  padding: 16px;
}

.kpi-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.kpi-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--third);
  margin-bottom: 4px;
}

.kpi-meta {
  font-size: 12px;
  color: var(--muted);
  font-family: monospace;
}

.project-card {
  margin-bottom: 16px;
  padding: 20px;
}

.project-card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.project-card .name {
  font-weight: 600;
  font-size: 16px;
}

.project-card .name a {
  color: var(--third);
  text-decoration: none;
}

.project-card .name a:hover {
  text-decoration: underline;
}

.chip {
  background: rgba(114,203,255,0.12);
  color: var(--third);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.mono-small {
  font-family: monospace;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}

@media (max-width: 800px) {
  .dashboard-container {
    grid-template-columns: 1fr;
  }
  
  .full-height-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  
  .project-controls {
    flex-direction: column;
    gap: 16px;
  }
}

/* Responsive behavior for mobile */
@media (max-width: 1000px) {
  body.dashboard-page header {
    position: sticky;
    width: auto;
  }
  
  .dashboard-container {
    flex-direction: column;
    min-height: auto;
    margin-top: 0;
  }
  
  .full-height-sidebar {
    position: relative;
    width: 100%;
    min-height: auto; /* No forced height on mobile */
    max-height: none;
    top: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  
  .main-content-area {
    min-height: auto;
    padding-top: 64px; /* Maintain header spacing on mobile */
  }

}

/* Medium screen adjustments */
@media (max-width: 1200px) and (min-width: 1001px) {
  .full-height-sidebar {
    width: 220px; /* Proportionally smaller on medium screens */
  }
}

.projects-column { min-width: 0; }

/* Reduce spacing between dashboard hero and projects section */
body.dashboard-page .hero.dashboard-hero {
  padding-top: 12px !important; /* Further reduced from 16px */
  padding-bottom: 4px; /* Much smaller bottom padding */
}

body.dashboard-page section:not(.hero) {
  padding-top: 4px; /* Further reduced top padding for sections after hero */
}



/* Dashboard-specific styles */
.loading, .error {
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-style: italic;
}

.error {
  color: #ff6b6b;
}

.refresh-btn {
  background: var(--third);
  color: var(--bg);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.refresh-btn:hover {
  opacity: 0.8;
}

.refresh-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Project controls styling */
.project-controls {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.control-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.control-group label {
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
}

.control-group select {
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 8px;
  font-family: inherit;
}

.control-group select:focus {
  outline: none;
  border-color: var(--third);
}

/* Notification Toast Styles */
.notification-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(114, 203, 255, 0.9);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.notification-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive notification positioning */
@media (max-width: 600px) {
  .notification-toast {
    top: 10px;
    right: 10px;
    left: 10px;
    text-align: center;
  }
}

