/* ===== ROBOT HERO ===== */
.robot-hero {
  position: relative;
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.robot-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(249, 115, 22, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.robot-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
  padding: 140px 1.5rem 3rem;
  box-sizing: border-box;
}

.robot-hero-img {
  width: 100%;
  max-width: 480px;
  max-height: 55vh;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.12)) drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
}

.robot-title-block {
  text-align: center;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 500px;
}

.robot-divider-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

.robot-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-style: italic;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1;
}

/* ===== ROBOT INFO ===== */
.robot-info {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.robot-event {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.robot-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  width: 100%;
}

.robot-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.6rem 0.5rem;
  box-sizing: border-box;
}

.robot-stat.win  { border-color: rgba(34,197,94,0.35); }
.robot-stat.loss { border-color: rgba(239,68,68,0.35); }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
}

.robot-stat.win  .stat-num { color: #4ade80; }
.robot-stat.loss .stat-num { color: #f87171; }

.stat-lbl {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .robot-hero-content {
    padding: 110px 1.25rem 2.5rem;
  }

  .robot-hero-img {
    max-width: 88vw;
    max-height: 38vh;
  }

  .robot-title-block {
    max-width: 100%;
  }

  .robot-name {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .robot-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .stat-num {
    font-size: 1.3rem;
  }
}
