@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink: #ff2d78;
  --cyan: #00f5ff;
  --purple: #bf00ff;
  --yellow: #f5e642;
  --green: #39ff14;
  --bg: #0d0015;
  --text: #f0e6ff;
}

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

body {
  font-family: "VT323", monospace;
  background: #0d0015;
  color: #f0e6ff;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.55;
  font-size: 1.1rem;
}

.wrapper {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 80px 0;
}

a {
  color: #00f5ff;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover {
  color: #ff2d78;
}

strong {
  color: #ff2d78;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #0d0015;
}

::-webkit-scrollbar-thumb {
  background: #3a1060;
}
::-webkit-scrollbar-thumb:hover {
  background: #ff2d78;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
  }
  .hero-stats {
    display: none;
  }
  .contact-inner {
    grid-template-columns: 1fr !important;
  }
  .projects-grid {
    grid-template-columns: 1fr !important;
  }
  .skills-groups {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 0.95rem;
  }
  section {
    padding: 60px 0;
  }
  .wrapper {
    padding: 0 16px;
  }
  nav {
    padding: 12px 16px !important;
  }
  nav .nav-links {
    gap: 12px !important;
  }
  nav .nav-links a {
    font-size: 0.38rem !important;
  }
}
@keyframes glitch-a {
  0%, 88%, 100% {
    transform: translate(0);
    opacity: 0;
  }
  89% {
    transform: translate(-4px, 1px);
    opacity: 1;
  }
  91% {
    transform: translate(4px, -1px);
    opacity: 1;
  }
  93% {
    transform: translate(-2px, 2px);
    opacity: 1;
  }
  95% {
    transform: translate(0);
    opacity: 0;
  }
}
@keyframes glitch-b {
  0%, 90%, 100% {
    transform: translate(0);
    opacity: 0;
  }
  91% {
    transform: translate(3px, 2px);
    opacity: 1;
  }
  93% {
    transform: translate(-3px, -1px);
    opacity: 1;
  }
  95% {
    transform: translate(1px, 1px);
    opacity: 1;
  }
  97% {
    transform: translate(0);
    opacity: 0;
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes neonFlicker {
  0%, 94%, 100% {
    opacity: 1;
  }
  95% {
    opacity: 0.55;
  }
  96% {
    opacity: 1;
  }
  97% {
    opacity: 0.35;
  }
  98% {
    opacity: 0.9;
  }
  99% {
    opacity: 1;
  }
}
@keyframes particleDrift {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) translateX(var(--drift));
    opacity: 0;
  }
}
@keyframes pixelLoad {
  to {
    width: var(--fill, 100%);
  }
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 245, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 245, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, 0.07) 3px, rgba(0, 0, 0, 0.07) 4px);
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.bg-glow-1 {
  width: 600px;
  height: 450px;
  top: -120px;
  right: -180px;
  background: rgba(191, 0, 255, 0.22);
}
.bg-glow-2 {
  width: 500px;
  height: 400px;
  bottom: 25%;
  left: -160px;
  background: rgba(255, 45, 120, 0.16);
}

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 0;
  animation: particleDrift linear infinite;
  opacity: 0;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(13, 0, 21, 0.88);
  border-bottom: 2px solid #3a1060;
  backdrop-filter: blur(4px);
}

.nav-logo {
  font-family: "Press Start 2P", monospace;
  font-size: 0.75rem;
  color: #ff2d78;
  text-shadow: 0 0 10px #ff2d78, 0 0 20px rgba(255, 45, 120, 0.5);
  animation: neonFlicker 8s ease-in-out infinite;
  letter-spacing: 0.1em;
  user-select: none;
}

.cursor {
  color: #00f5ff;
  animation: blink 1s step-end infinite;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: "Press Start 2P", monospace;
  font-size: 0.5rem;
  color: #b090e0;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.15s, text-shadow 0.15s;
  padding: 4px 0;
}
.nav-links a:hover {
  color: #00f5ff;
  text-shadow: 0 0 8px #00f5ff;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  font-family: "Press Start 2P", monospace;
  font-size: 0.45rem;
  color: #39ff14;
  border: 2px solid #39ff14;
  padding: 5px 12px;
  margin-bottom: 24px;
  letter-spacing: 0.12em;
  animation: fadeSlideDown 0.8s ease both;
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.3), 2px 2px 0 0 rgba(57, 255, 20, 0.4);
}
.hero-badge::before {
  content: "● ";
  animation: blink 1.5s step-end infinite;
}
.hero-badge--partial {
  color: #ff8800;
  border-color: #ff8800;
  box-shadow: 0 0 12px rgba(255, 136, 0, 0.3), 2px 2px 0 0 rgba(255, 136, 0, 0.4);
}
.hero-badge--unavailable {
  color: #ff2020;
  border-color: #ff2020;
  box-shadow: 0 0 12px rgba(255, 32, 32, 0.3), 2px 2px 0 0 rgba(255, 32, 32, 0.4);
}
.hero-badge--unavailable::before {
  animation: none;
}
.hero-name {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(1.4rem, 4.5vw, 2.4rem);
  color: #ff2d78;
  text-shadow: 0 0 10px #ff2d78, 0 0 20px rgba(255, 45, 120, 0.5);
  line-height: 1.5;
  letter-spacing: 0.05em;
  animation: fadeSlideDown 0.9s 0.1s ease both;
  position: relative;
}
.hero-name::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #00f5ff;
  animation: glitch-a 6s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
}
.hero-name::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #bf00ff;
  animation: glitch-b 6s infinite;
  clip-path: polygon(0 62%, 100% 62%, 100% 100%, 0 100%);
}
.hero-title {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(0.5rem, 1.5vw, 0.75rem);
  color: #b090e0;
  margin-top: 20px;
  letter-spacing: 0.08em;
  animation: fadeSlideDown 0.9s 0.2s ease both;
}
.hero-title span {
  color: #00f5ff;
  text-shadow: 0 0 8px rgba(0, 245, 255, 0.5);
}
.hero-bio {
  font-family: "VT323", monospace;
  font-size: 1.15rem;
  margin-top: 24px;
  line-height: 1.65;
  color: rgba(240, 230, 255, 0.92);
  animation: fadeSlideDown 0.9s 0.3s ease both;
}
.hero-bio strong {
  color: #ff2d78;
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: fadeSlideDown 0.9s 0.4s ease both;
}

.btn {
  font-family: "Press Start 2P", monospace;
  font-size: 0.5rem;
  padding: 12px 20px;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.08s, box-shadow 0.08s, background 0.08s;
  display: inline-block;
}
.btn:hover {
  transform: translate(-2px, -2px);
}
.btn:active {
  transform: translate(2px, 2px);
}
.btn-primary {
  background: #ff2d78;
  color: #0d0015;
  border: 2px solid #ff2d78;
  box-shadow: 4px 4px 0 0 rgba(255, 45, 120, 0.6);
}
.btn-primary:hover {
  box-shadow: 6px 6px 0 0 rgba(255, 45, 120, 0.6);
  background: #ff5a96;
}
.btn-primary:active {
  box-shadow: 2px 2px 0 0 rgba(255, 45, 120, 0.6);
}
.btn-secondary {
  background: transparent;
  color: #00f5ff;
  border: 2px solid #00f5ff;
  box-shadow: 4px 4px 0 0 rgba(0, 245, 255, 0.4);
}
.btn-secondary:hover {
  box-shadow: 6px 6px 0 0 rgba(0, 245, 255, 0.4);
  background: rgba(0, 245, 255, 0.1);
}
.btn-secondary:active {
  box-shadow: 2px 2px 0 0 rgba(0, 245, 255, 0.4);
}

.hero-stats {
  animation: fadeSlideLeft 1s 0.3s ease both;
  --pw-color: #00f5ff;
}
.hero-stats .pw-body {
  padding: 1.25rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-item {
  padding: 16px 12px;
  border: 1px solid #3a1060;
  background: rgba(19, 0, 32, 0.5);
  text-align: center;
  transition: border-color 0.15s;
}
.stat-item:hover {
  border-color: #00f5ff;
}

.stat-number {
  font-family: "Press Start 2P", monospace;
  font-size: 1.3rem;
  line-height: 1;
  color: #00f5ff;
  text-shadow: 0 0 12px rgba(0, 245, 255, 0.6);
}

.stat-label {
  font-family: "Press Start 2P", monospace;
  font-size: 0.38rem;
  color: #8866aa;
  margin-top: 8px;
  letter-spacing: 0.1em;
}

.section-tag {
  display: inline-block;
  font-family: "Press Start 2P", monospace;
  font-size: 0.45rem;
  letter-spacing: 0.12em;
  color: #00f5ff;
  border: 1px solid rgba(0, 245, 255, 0.4);
  padding: 4px 10px;
  margin-bottom: 20px;
}

.section-title {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(0.85rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  color: #f0e6ff;
  margin-bottom: 8px;
}

.accent-text {
  color: #ff2d78;
  text-shadow: 0 0 10px rgba(255, 45, 120, 0.6);
}

.pixel-window {
  border: 2px solid var(--pw-color, #ff2d78);
  box-shadow: 4px 4px 0 0 var(--pw-color, #ff2d78), 0 0 28px rgba(255, 45, 120, 0.12);
  background: #1a0030;
  overflow: hidden;
}
.pixel-window .pw-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--pw-color, #ff2d78);
  color: #0d0015;
  font-family: "Press Start 2P", monospace;
  font-size: 0.45rem;
  letter-spacing: 0.08em;
}
.pixel-window .pw-titlebar .pw-controls {
  margin-left: auto;
  display: flex;
  gap: 4px;
}
.pixel-window .pw-titlebar .pw-controls span {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(13, 0, 21, 0.6);
  display: inline-block;
}
.pixel-window .pw-body {
  padding: 1.5rem;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.tag {
  font-family: "Press Start 2P", monospace;
  font-size: 0.4rem;
  padding: 5px 10px;
  border: 2px solid;
  letter-spacing: 0.06em;
  cursor: default;
  transition: transform 0.08s, box-shadow 0.08s;
}
.tag:hover {
  transform: translate(-1px, -1px);
  box-shadow: 2px 2px 0 0 currentColor;
}

.tag-pink {
  color: #ff2d78;
  border-color: #ff2d78;
  background: rgba(255, 45, 120, 0.08);
  box-shadow: 0 0 8px rgba(255, 45, 120, 0.1);
}

.tag-cyan {
  color: #00f5ff;
  border-color: #00f5ff;
  background: rgba(0, 245, 255, 0.08);
  box-shadow: 0 0 8px rgba(0, 245, 255, 0.1);
}

.tag-purple {
  color: #bf00ff;
  border-color: #bf00ff;
  background: rgba(191, 0, 255, 0.08);
  box-shadow: 0 0 8px rgba(191, 0, 255, 0.1);
}

.tag-yellow {
  color: #f5e642;
  border-color: #f5e642;
  background: rgba(245, 230, 66, 0.08);
  box-shadow: 0 0 8px rgba(245, 230, 66, 0.1);
}

.tag-green {
  color: #39ff14;
  border-color: #39ff14;
  background: rgba(57, 255, 20, 0.08);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.1);
}

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 2px solid #3a1060;
  padding: 24px 0;
  font-family: "Press Start 2P", monospace;
  font-size: 0.4rem;
  color: #8866aa;
  letter-spacing: 0.08em;
}
.site-footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-links a {
  color: #8866aa;
  font-family: "Press Start 2P", monospace;
  font-size: 0.4rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: #00f5ff;
}
.footer-links .footer-icon {
  display: flex;
  align-items: center;
}
.footer-links .footer-icon svg {
  display: block;
}

.legal-wrap {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.legal-window {
  border: 2px solid #00f5ff;
  box-shadow: 4px 4px 0 0 #00f5ff, 0 0 24px rgba(0, 245, 255, 0.12);
  background: #1a0030;
  overflow: hidden;
}
.legal-window .legal-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #00f5ff;
  color: #0d0015;
  font-family: "Press Start 2P", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
}
.legal-window .legal-body {
  padding: 2rem 2.5rem;
}
.legal-window .legal-body h1 {
  font-family: "Press Start 2P", monospace;
  font-size: 0.8rem;
  color: #ff2d78;
  text-shadow: 0 0 10px rgba(255, 45, 120, 0.5);
  margin-bottom: 1.5rem;
}
.legal-window .legal-body h2 {
  font-family: "Press Start 2P", monospace;
  font-size: 0.55rem;
  color: #00f5ff;
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 4px;
  border-bottom: 1px solid #3a1060;
}
.legal-window .legal-body h3 {
  font-family: "Press Start 2P", monospace;
  font-size: 0.45rem;
  color: #f5e642;
  margin: 1rem 0 0.5rem;
}
.legal-window .legal-body h4 {
  font-family: "Press Start 2P", monospace;
  font-size: 0.4rem;
  color: #b090e0;
  margin: 0.75rem 0 0.4rem;
}
.legal-window .legal-body p, .legal-window .legal-body li {
  font-family: "VT323", monospace;
  font-size: 1.05rem;
  color: rgba(240, 230, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.legal-window .legal-body ul {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-window .legal-body a {
  color: #00f5ff;
  word-break: break-all;
}
.legal-window .legal-body a:hover {
  color: #ff2d78;
}

#skills {
  padding-top: 0;
}

.skills-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.skill-group {
  border: 2px solid #3a1060;
  background: #1a0030;
  padding: 20px;
}
.skill-group.sg-backend {
  --bar-color: #ff2d78;
  border-color: rgba(255, 45, 120, 0.4);
}
.skill-group.sg-devops {
  --bar-color: #00f5ff;
  border-color: rgba(0, 245, 255, 0.4);
}
.skill-group.sg-other {
  --bar-color: #bf00ff;
  border-color: rgba(191, 0, 255, 0.4);
}

.skill-group-title {
  font-family: "Press Start 2P", monospace;
  font-size: 0.45rem;
  color: var(--bar-color, #00f5ff);
  text-shadow: 0 0 8px var(--bar-color, #00f5ff);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #3a1060;
  letter-spacing: 0.08em;
}

.skill-bar-row {
  margin-bottom: 14px;
}

.skill-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.skill-name {
  font-family: "Press Start 2P", monospace;
  font-size: 0.42rem;
  color: #f0e6ff;
  letter-spacing: 0.04em;
}

.skill-level {
  font-family: "Press Start 2P", monospace;
  font-size: 0.36rem;
  color: #b090e0;
  letter-spacing: 0.06em;
}

.skill-bar-track {
  height: 16px;
  background: #0d0015;
  border: 2px solid #3a1060;
  overflow: hidden;
  position: relative;
}
.skill-bar-track::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent calc(10% - 1px), rgba(58, 16, 96, 0.9) calc(10% - 1px), rgba(58, 16, 96, 0.9) 10%);
  pointer-events: none;
  z-index: 1;
}

.skill-bar-fill {
  height: 100%;
  width: 0;
  background: var(--bar-color, #ff2d78);
  box-shadow: 0 0 8px var(--bar-color, #ff2d78);
  position: relative;
}
.skill-bar-fill.animate {
  animation: pixelLoad 0.9s steps(20) forwards;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.project-card {
  transition: transform 0.1s, box-shadow 0.1s;
  cursor: default;
}
.project-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 0 var(--pw-color, #ff2d78), 0 0 32px rgba(255, 45, 120, 0.2);
}

.card-1 {
  --pw-color: #ff2d78;
  box-shadow: 4px 4px 0 0 #ff2d78, 0 0 20px rgba(255, 45, 120, 0.1);
}
.card-1:not(:hover) {
  box-shadow: 4px 4px 0 0 #ff2d78, 0 0 16px rgba(255, 45, 120, 0.08);
}

.card-2 {
  --pw-color: #00f5ff;
  box-shadow: 4px 4px 0 0 #00f5ff, 0 0 20px rgba(0, 245, 255, 0.1);
}
.card-2:not(:hover) {
  box-shadow: 4px 4px 0 0 #00f5ff, 0 0 16px rgba(0, 245, 255, 0.08);
}

.card-3 {
  --pw-color: #bf00ff;
  box-shadow: 4px 4px 0 0 #bf00ff, 0 0 20px rgba(191, 0, 255, 0.1);
}
.card-3:not(:hover) {
  box-shadow: 4px 4px 0 0 #bf00ff, 0 0 16px rgba(191, 0, 255, 0.08);
}

.card-4 {
  --pw-color: #f5e642;
  box-shadow: 4px 4px 0 0 #f5e642, 0 0 20px rgba(245, 230, 66, 0.1);
}
.card-4:not(:hover) {
  box-shadow: 4px 4px 0 0 #f5e642, 0 0 16px rgba(245, 230, 66, 0.08);
}

.card-5 {
  --pw-color: #39ff14;
  box-shadow: 4px 4px 0 0 #39ff14, 0 0 20px rgba(57, 255, 20, 0.1);
}
.card-5:not(:hover) {
  box-shadow: 4px 4px 0 0 #39ff14, 0 0 16px rgba(57, 255, 20, 0.08);
}

.project-period {
  font-family: "Press Start 2P", monospace;
  font-size: 0.38rem;
  color: #8866aa;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.project-role {
  font-family: "Press Start 2P", monospace;
  font-size: 0.4rem;
  color: var(--pw-color, #ff2d78);
  text-shadow: 0 0 8px var(--pw-color, #ff2d78);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.project-company {
  font-family: "Press Start 2P", monospace;
  font-size: 0.6rem;
  color: #f0e6ff;
  margin-bottom: 4px;
  line-height: 1.5;
}

.project-location {
  font-family: "VT323", monospace;
  font-size: 0.95rem;
  color: #b090e0;
  margin-bottom: 14px;
}

.project-desc {
  font-family: "VT323", monospace;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(240, 230, 255, 0.92);
  margin-bottom: 18px;
}

.project-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-chip {
  font-family: "Press Start 2P", monospace;
  font-size: 0.36rem;
  padding: 4px 8px;
  border: 1px solid var(--pw-color, #ff2d78);
  color: var(--pw-color, #ff2d78);
  background: rgba(255, 45, 120, 0.06);
  letter-spacing: 0.04em;
  transition: background 0.1s;
}
.tech-chip:hover {
  background: rgba(255, 45, 120, 0.14);
}

.career-slots {
  margin-top: 48px;
  border: 2px solid #3a1060;
  background: #1a0030;
  padding: 24px 28px;
}
.career-slots .section-tag {
  display: block;
  margin-bottom: 20px;
}

.slots-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
}
.slots-scroll::-webkit-scrollbar {
  height: 4px;
}
.slots-scroll::-webkit-scrollbar-track {
  background: #0d0015;
}
.slots-scroll::-webkit-scrollbar-thumb {
  background: #3a1060;
}

.slot-card {
  min-width: 150px;
  flex-shrink: 0;
  --bar-color: var(--pw-color, #ff2d78);
}
.slot-card .pw-body {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.slot-card.slot-active .pw-titlebar {
  animation: neonFlicker 8s infinite;
}

.slot-company {
  font-family: "Press Start 2P", monospace;
  font-size: 0.48rem;
  color: #f0e6ff;
  line-height: 1.7;
  min-height: 2.4em;
}

.slot-role {
  font-family: "Press Start 2P", monospace;
  font-size: 0.3rem;
  color: var(--pw-color, #ff2d78);
  letter-spacing: 0.05em;
}

.slot-years {
  font-family: "Press Start 2P", monospace;
  font-size: 0.35rem;
  color: #b090e0;
}

.slot-bar-track {
  height: 6px;
  background: #0d0015;
  border: 1px solid #3a1060;
}
.slot-bar-track .skill-bar-fill {
  height: 100%;
}

.slot-dur {
  font-family: "Press Start 2P", monospace;
  font-size: 0.3rem;
  color: #8866aa;
}

.slot-cursor {
  color: var(--pw-color, #ff2d78);
  animation: blink 1s step-end infinite;
}

.contact-section {
  padding-bottom: 100px;
}

.contact-card {
  border: 2px solid #bf00ff;
  box-shadow: 4px 4px 0 0 #bf00ff, 0 0 32px rgba(191, 0, 255, 0.15);
  background: #1a0030;
  overflow: hidden;
}
.contact-card::before {
  content: "■  CONTACT.EXE";
  display: block;
  background: #bf00ff;
  color: #0d0015;
  font-family: "Press Start 2P", monospace;
  font-size: 0.48rem;
  padding: 7px 14px;
  letter-spacing: 0.1em;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 2rem 2.5rem;
}

.contact-heading {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(0.6rem, 2vw, 0.9rem);
  color: #f0e6ff;
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-sub {
  font-family: "VT323", monospace;
  font-size: 1.1rem;
  color: rgba(240, 230, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 2px solid #3a1060;
  background: #130020;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.12s, transform 0.08s, box-shadow 0.08s;
}
.contact-item:hover {
  border-color: #00f5ff;
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 0 rgba(0, 245, 255, 0.5);
}

.contact-icon {
  font-family: "VT323", monospace;
  font-size: 1.5rem;
  color: #00f5ff;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.6);
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.contact-item-label {
  font-family: "Press Start 2P", monospace;
  font-size: 0.38rem;
  color: #8866aa;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-item-value {
  font-family: "VT323", monospace;
  font-size: 1.1rem;
  color: #f0e6ff;
}

.login-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}
.login-wrap .wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-window {
  width: 100%;
  max-width: 420px;
  border: 2px solid #ff2d78;
  box-shadow: 4px 4px 0 0 #ff2d78, 0 0 32px rgba(255, 45, 120, 0.15);
  background: #1a0030;
  overflow: hidden;
}
.login-window .login-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #ff2d78;
  color: #0d0015;
  font-family: "Press Start 2P", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
}
.login-window .login-body {
  padding: 2rem 2rem 1.5rem;
}

.login-field {
  margin-bottom: 1.25rem;
}
.login-field label {
  display: block;
  font-family: "Press Start 2P", monospace;
  font-size: 0.4rem;
  color: #00f5ff;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.login-field input {
  width: 100%;
  background: #130020;
  border: 2px solid #3a1060;
  color: #f0e6ff;
  font-family: "VT323", monospace;
  font-size: 1.1rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  border-radius: 0;
}
.login-field input::placeholder {
  color: #8866aa;
}
.login-field input:focus {
  border-color: #00f5ff;
  box-shadow: 0 0 12px rgba(0, 245, 255, 0.2);
}

.login-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 12px;
  background: #ff2d78;
  color: #0d0015;
  border: none;
  font-family: "Press Start 2P", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 0.08s, box-shadow 0.08s, background 0.1s;
  box-shadow: 3px 3px 0 0 #d0004a;
}
.login-btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 0 #d0004a;
  background: #ff4c8c;
}
.login-btn:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 0 #d0004a;
}

.login-error {
  margin-bottom: 1.25rem;
  padding: 10px 14px;
  background: rgba(255, 45, 120, 0.12);
  border: 1px solid #ff2d78;
  font-family: "Press Start 2P", monospace;
  font-size: 0.4rem;
  color: #ff2d78;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.login-hint {
  margin-top: 1rem;
  font-family: "VT323", monospace;
  font-size: 0.85rem;
  color: #8866aa;
  text-align: center;
}

/*# sourceMappingURL=app.output.css.map */
