/* /Pages/Ai.razor.rz.scp.css */
.ai-constellation[b-48ayome8bh] {
  position: relative;
  width: min(400px, 90vw);
  height: min(250px, 90vw);
  margin: auto;
}

.ai-center[b-48ayome8bh] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 20px rgba(255,255,255,.15), 0 0 80px rgba(255,255,255,.1);
  animation: pulse-b-48ayome8bh 4s ease-in-out infinite;
}

.ai-node[b-48ayome8bh] {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 10px;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 10px rgba(255,255,255,.10);
  transition: all .3s;
}

  .ai-node:hover[b-48ayome8bh] {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(255,255,255,.25);
  }

.orbit-1[b-48ayome8bh] {
  top: 5px;
  left: 130px;
  animation: float-b-48ayome8bh 5s ease-in-out infinite;
}

.orbit-2[b-48ayome8bh] {
  top: 90px;
  right: 20px;
  animation: float-b-48ayome8bh 7s ease-in-out infinite;
}

.orbit-3[b-48ayome8bh] {
  bottom: 10px;
  right: 40px;
  animation: float-b-48ayome8bh 6s ease-in-out infinite;
}

.orbit-4[b-48ayome8bh] {
  bottom: 0px;
  left: 110px;
  animation: float-b-48ayome8bh 8s ease-in-out infinite;
}

.orbit-5[b-48ayome8bh] {
  top: 100px;
  left: 30px;
  animation: float-b-48ayome8bh 6.5s ease-in-out infinite;
}

@keyframes pulse-b-48ayome8bh {

  0%,100% {
    transform: translate(-50%,-50%) scale(1);
  }

  50% {
    transform: translate(-50%,-50%) scale(1.05);
  }
}

@keyframes float-b-48ayome8bh {

  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}
/* /Pages/Life.razor.rz.scp.css */
.world-map svg[b-hpb5f6h75h] {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block; /* removes inline SVG whitespace */
}

.world-map svg path[b-hpb5f6h75h] {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 0.5;
}

.world-map svg path.visited[b-hpb5f6h75h] {
  fill: #60a5fa; /* blue matching the travel icon */
}

.world-map svg path.visited:hover[b-hpb5f6h75h] {
  fill: #93c5fd;
  cursor: pointer;
  transition: fill 0.2s ease;
}
/* /Pages/Skill.razor.rz.scp.css */
.marquee[b-gwbbcrde1i] {
  overflow: hidden;
  width: 100%;
}

.marquee-content[b-gwbbcrde1i] {
  display: flex;
  width: max-content;
  animation: marquee-b-gwbbcrde1i 30s linear infinite;
}

@keyframes marquee-b-gwbbcrde1i {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
/* /Shared/Terminal.razor.rz.scp.css */
.terminal[b-dem4u4mv45] {
  max-width: 650px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid;
  font-family: 'JetBrains Mono', 'Consolas', 'Monaco', 'Courier New', monospace;
  transition: all 0.3s ease;
}

/* Dark Mode (Default Terminal Theme) */
.terminal-dark[b-dem4u4mv45] {
  background: rgba(26, 27, 38, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
}

  .terminal-dark .terminal-header[b-dem4u4mv45] {
    background: rgba(40, 42, 54, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .terminal-dark .terminal-title[b-dem4u4mv45] {
    color: rgba(255, 255, 255, 0.6);
  }

  .terminal-dark .terminal-body[b-dem4u4mv45] {
    color: #f8f8f2;
  }

  .terminal-dark .terminal-dollar[b-dem4u4mv45] {
    color: #50fa7b;
  }

  .terminal-dark .terminal-cmd[b-dem4u4mv45] {
    color: #f8f8f2;
    border-right-color: #50fa7b;
  }

  .terminal-dark .terminal-output[b-dem4u4mv45] {
    color: rgba(248, 248, 242, 0.6);
  }

    .terminal-dark .terminal-output[b-dem4u4mv45]::before {
      color: #bd93f9;
    }

  .terminal-dark .terminal-cursor[b-dem4u4mv45] {
    background: #50fa7b;
  }

/* Light Mode */
.terminal-light[b-dem4u4mv45] {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.1);
}

  .terminal-light .terminal-header[b-dem4u4mv45] {
    background: rgba(246, 248, 250, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .terminal-light .terminal-title[b-dem4u4mv45] {
    color: rgba(0, 0, 0, 0.6);
  }

  .terminal-light .terminal-body[b-dem4u4mv45] {
    color: #24292f;
  }

  .terminal-light .terminal-dollar[b-dem4u4mv45] {
    color: #1a7f37;
  }

  .terminal-light .terminal-cmd[b-dem4u4mv45] {
    color: #24292f;
    border-right-color: #1a7f37;
  }

  .terminal-light .terminal-output[b-dem4u4mv45] {
    color: rgba(36, 41, 47, 0.6);
  }

    .terminal-light .terminal-output[b-dem4u4mv45]::before {
      color: #8250df;
    }

  .terminal-light .terminal-cursor[b-dem4u4mv45] {
    background: #1a7f37;
  }

/* Common Styles */
.terminal-header[b-dem4u4mv45] {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.terminal-buttons[b-dem4u4mv45] {
  display: flex;
  gap: 8px;
}

.terminal-button[b-dem4u4mv45] {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

  .terminal-button:hover[b-dem4u4mv45] {
    filter: brightness(1.2);
    transform: scale(1.1);
  }

  .terminal-button.red[b-dem4u4mv45] {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.4);
  }

  .terminal-button.yellow[b-dem4u4mv45] {
    background: linear-gradient(135deg, #ffd93d, #ffbe0b);
    box-shadow: 0 2px 4px rgba(255, 217, 61, 0.4);
  }

  .terminal-button.green[b-dem4u4mv45] {
    background: linear-gradient(135deg, #6bcf7f, #4caf50);
    box-shadow: 0 2px 4px rgba(107, 207, 127, 0.4);
  }

.terminal-title[b-dem4u4mv45] {
  font-size: 13px;
  font-weight: 500;
}

.terminal-body[b-dem4u4mv45] {
  padding: 24px;
  font-size: 14px;
  line-height: 1.8;
  min-height: 300px;
}

.terminal-line[b-dem4u4mv45] {
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeInLine-b-dem4u4mv45 0.3s ease forwards;
}

.terminal-command[b-dem4u4mv45] {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.terminal-dollar[b-dem4u4mv45] {
  font-weight: 600;
  font-size: 16px;
}

.terminal-cmd[b-dem4u4mv45] {
  font-weight: 400;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid;
  width: 0;
}

.terminal-output[b-dem4u4mv45] {
  padding-left: 24px;
  position: relative;
  opacity: 0;
  animation: fadeInOutput-b-dem4u4mv45 0.5s ease forwards;
}

  .terminal-output[b-dem4u4mv45]::before {
    content: '>';
    position: absolute;
    left: 8px;
  }

.terminal-cursor[b-dem4u4mv45] {
  display: inline-block;
  width: 8px;
  height: 16px;
  margin-left: 4px;
  animation: blink-b-dem4u4mv45 1s infinite;
  vertical-align: text-bottom;
}

/* Typing animations */
.terminal-line:nth-child(1) .terminal-cmd[b-dem4u4mv45] {
  max-width: 7ch;
  animation: expand-width-b-dem4u4mv45 1s steps(6) forwards, blink-cursor-b-dem4u4mv45 0.75s step-end 8, remove-cursor-b-dem4u4mv45 0s 0.6s forwards;
}

.terminal-line:nth-child(2) .terminal-cmd[b-dem4u4mv45] {
  max-width: 13ch;
  animation: expand-width-b-dem4u4mv45 1.8s steps(12) forwards, blink-cursor-b-dem4u4mv45 0.75s step-end 12, remove-cursor-b-dem4u4mv45 0s 1.2s forwards;
}

.terminal-line:nth-child(3) .terminal-cmd[b-dem4u4mv45] {
  max-width: 17ch;
  animation: expand-width-b-dem4u4mv45 2s steps(16) forwards, blink-cursor-b-dem4u4mv45 0.75s step-end 16, remove-cursor-b-dem4u4mv45 0s 1.6s forwards;
}

/* Animation delays */
.terminal-line:nth-child(1)[b-dem4u4mv45] {
  animation-delay: 0s;
}

  .terminal-line:nth-child(1) .terminal-cmd[b-dem4u4mv45] {
    animation-delay: 0.3s;
  }

  .terminal-line:nth-child(1) .terminal-output[b-dem4u4mv45] {
    animation-delay: 1.2s;
  }

.terminal-line:nth-child(2)[b-dem4u4mv45] {
  animation-delay: 1.7s;
}

  .terminal-line:nth-child(2) .terminal-cmd[b-dem4u4mv45] {
    animation-delay: 2s;
  }

  .terminal-line:nth-child(2) .terminal-output[b-dem4u4mv45] {
    animation-delay: 4.1s;
  }

.terminal-line:nth-child(3)[b-dem4u4mv45] {
  animation-delay: 4.6s;
}

  .terminal-line:nth-child(3) .terminal-cmd[b-dem4u4mv45] {
    animation-delay: 4.9s;
  }

  .terminal-line:nth-child(3) .terminal-output[b-dem4u4mv45] {
    animation-delay: 6.7s;
  }

.terminal-line:nth-child(4)[b-dem4u4mv45] {
  animation-delay: 7s;
}

@keyframes expand-width-b-dem4u4mv45 {
  to {
    width: 100%;
  }
}

@keyframes blink-cursor-b-dem4u4mv45 {
  50% {
    border-color: transparent;
  }
}

@keyframes remove-cursor-b-dem4u4mv45 {
  to {
    border-right-color: transparent;
  }
}

@keyframes blink-b-dem4u4mv45 {
  0%, 50% {
    opacity: 1;
  }

  51%, 100% {
    opacity: 0;
  }
}

@keyframes fadeInLine-b-dem4u4mv45 {
  to {
    opacity: 1;
  }
}

@keyframes fadeInOutput-b-dem4u4mv45 {
  to {
    opacity: 1;
  }
}

/* Hover effect */
.terminal-line:hover .terminal-output[b-dem4u4mv45] {
  opacity: 1 !important;
}

/* Responsive */
@media (max-width: 640px) {
  .terminal-body[b-dem4u4mv45] {
    padding: 16px;
    font-size: 12px;
  }

  .terminal-header[b-dem4u4mv45] {
    padding: 10px 14px;
  }

  .terminal-button[b-dem4u4mv45] {
    width: 11px;
    height: 11px;
  }
}
