body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: #111;
  color: #0ff;
}

.topbar {
  display: flex;
  justify-content: space-between;
  padding: 10px 40px;
  font-size: 14px;
}

.menu span {
  margin: 0 10px;
  cursor: pointer;
  opacity: 0.6;
}
.menu .active {
  border-bottom: 2px solid #0ff;
  opacity: 1;
}

.title {
  font-size: 42px;
  color: #0ff;
  margin-left: 50px;
  margin-top: 20px;
}

.main-container {
  display: flex;
  justify-content: space-between;
  padding: 40px;
}

.left-panel {
  flex: 1;
}

.hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  grid-gap: 30px;
  margin: 50px;
}

.hex {
  width: 120px;
  height: 138px;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid #0ff;
  position: relative;
  overflow: hidden;
}

.hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hex.empty {
  background: transparent;
  border: 2px dashed #0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #0ff;
}

.role-icon {
  position: absolute;
  bottom: 5px;
  left: 5px;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 5px;
  border-radius: 4px;
}

.right-panel {
  flex: 1;
  color: white;
  text-align: center;
}

.portrait img {
  width: 250px;
  filter: hue-rotate(190deg) brightness(1.2);
}

.character-info h2 {
  font-size: 36px;
  margin: 10px 0 0 0;
}
.character-info h3 {
  font-size: 20px;
  color: #00ffff;
  margin: 0 0 20px 0;
}

.progress {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}
.slot {
  width: 60px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.unlock-status {
  font-size: 24px;
  color: #0ff;
}

.controls span {
  margin: 0 10px;
  font-size: 14px;
  opacity: 0.7;
}
