@font-face {
  font-family: "SpiderManRetro";
  src: url("fonts/04B_03__.TTF") format("truetype");
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  min-height: 100vh;
  background-color: #ffffff;
  color: #000000;
  font-family: "SpiderManRetro", monospace;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.exp-wrapper {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Header */
.header-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.back-btn {
  color: #ff5e00;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  width: fit-content;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.back-btn:hover {
  color: #890504;
  transform: translateX(-4px);
}

.arcade-title {
  font-size: 1.8rem;
  color: #39ff14;
  margin: 0;
  text-shadow: 3px 3px 0px #000000;
}

/* Stages Container */
.stages-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Stage Card */
.stage-card {
  background: #ffffff;
  color: black;
  border: 3px solid #30363d;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 5px 5px 0px #ee3434;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.stage-card.active-stage {
  border-color: black;
}

.stage-card:hover {
  border-color: #890504;
  box-shadow: 7px 7px 0px #ee3434;
}

/* Stage Header Bar */
.stage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dashed #30363d;
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.stage-num {
  color: #ffed4a;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.stage-status {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid transparent;
}

.stage-status.live {
  color: #39ff14;
  border-color: #39ff14;
  background: rgba(57, 255, 20, 0.1);
}

.stage-status.cleared {
  color: #000000;
  border-color: #8b949e;
}

/* Body Content */
.role-title {
  font-size: 1.3rem;
  color: #000000;
  margin: 0 0 4px 0;
}

.company-name {
  font-size: 1rem;
  color: #ff5e00;
  margin: 0 0 8px 0;
}

.stage-date {
  font-size: 0.75rem;
  color: #424549;
  margin: 0 0 16px 0;
}

.exp-points {
  margin: 0 0 20px 0;
  padding-left: 20px;
  font-family: sans-serif;
  font-size: 0.9rem;
  color: #161717;
  line-height: 1.6;
}

.exp-points li {
  margin-bottom: 8px;
}

/* Tech Stack Pills */
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-pills span {
  font-size: 0.7rem;
  color: #39ff14;
  background: #0d1117;
  border: 1px solid #30363d;
  padding: 4px 10px;
  border-radius: 4px;
}
