/* * REGULAR TYPE * */

.hero-info-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.panel-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 30px;
}

.panel-layout > .left-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.panel-wrapper {
  box-sizing: border-box;
  background-color: #050510;
  background-image: radial-gradient(
    circle at 80% 50%,
    rgba(0, 242, 254, 0.15),
    transparent 40%
  );
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 30px 20px;
  border-radius: 16px;
}

.panel-wrapper *,
.panel-wrapper ::before,
.panel-wrapper ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.character-panel {
  width: 100%;
  background: rgba(10, 10, 25, 0.6);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.top-banner {
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 0, 127, 0.8),
    rgba(0, 242, 254, 0.2)
  );
  border-left: 5px solid #ff007f;
  padding: 12px 20px;
  transform: skewX(-10deg);
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
}

.banner-content {
  transform: skewX(10deg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  letter-spacing: 2px;
}

.char-name {
  font-size: 20px;
  text-shadow: 0 0 10px #fff;
}

.char-lvl {
  color: #00f2fe;
  font-size: 14px;
}

.character-display {
  position: relative;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  perspective: 1000px;
  width: 100%;
}

.char-img {
  max-height: 300px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  z-index: 2;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.3));
  transition: transform 0.3s ease;
}

.character-display:hover .char-img {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 0 25px rgba(0, 242, 254, 0.6));
}

.neon-pedestal {
  width: 200px;
  max-width: 90%;
  height: 45px;
  background: rgba(0, 242, 254, 0.08);
  border: 2px solid #00f2fe;
  border-radius: 50%;
  box-shadow:
    0 0 25px rgba(0, 242, 254, 0.7),
    inset 0 0 20px rgba(0, 242, 254, 0.5);
  position: absolute;
  bottom: 10px;
  z-index: 1;
  transform: rotateX(20deg);
  transition: box-shadow 0.3s ease;
}

.character-display:hover .neon-pedestal {
  box-shadow:
    0 0 40px rgba(0, 242, 254, 0.9),
    inset 0 0 25px rgba(0, 242, 254, 0.7);
}

@media (max-width: 768px) {
  .panel-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 35px;
  }

  .panel-layout > .left-column,
  .panel-layout > .right-column {
    width: 100%;
  }

  .badges-row {
    gap: 20px;
    margin-bottom: 15px;
  }

  .hexagon {
    --hex-h: 100px;
    --b: 4px;
  }

  .character-panel {
    padding: 20px;
  }

  .inner-content {
    padding: 15px;
    gap: 15px;
  }

  .skill-title {
    font-size: 14px;
  }

  .small-paragraph {
    font-size: 13px;
  }

  .panel-wrapper {
    padding: 0;
  }
}

/* * NEOGLOW TYPE * */

.unique-skin-container {
  box-sizing: border-box;
  background-color: #020205;
  background-image:
    radial-gradient(circle at 80% 20%, #030a21 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, #050514 0%, transparent 60%);
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.bullet-echo-container *,
.bullet-echo-container ::before,
.bullet-echo-container ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cyber-panel {
  width: 100%;
  max-width: 1050px;
  background: #04040c;
  border: 2px solid #0b1436;
  border-radius: 12px;
  padding: 45px;
  position: relative;
  overflow: hidden;
}

.cyber-grid-bg {
  position: absolute;
  inset: 2px;
  background-color: #04040c;
  background-image:
    linear-gradient(rgba(11, 20, 54, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 20, 54, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 2;
  border-radius: 10px;
}

.cyber-corner-accent {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid transparent;
  z-index: 3;
  pointer-events: none;
}

.cyber-corner-accent.top-left {
  top: 0;
  left: 0;
  border-top-color: #00f0ff;
  border-left-color: #00f0ff;
  filter: drop-shadow(0 0 5px #00f0ff);
  border-top-left-radius: 10px;
}

.cyber-corner-accent.bottom-right {
  bottom: 0;
  right: 0;
  border-bottom-color: #ff007f;
  border-right-color: #ff007f;
  filter: drop-shadow(0 0 5px #ff007f);
  border-bottom-right-radius: 10px;
}

.cyber-sparkle,
.cyber-header,
.cyber-body {
  position: relative;
  z-index: 3;
}

.cyber-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 120deg,
    #00f0ff 150deg,
    transparent 180deg,
    transparent 360deg
  );
  z-index: 1;
  pointer-events: none;
  animation: leftLightMove 6s linear infinite;
}

.cyber-panel::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 180deg,
    transparent 0deg,
    transparent 120deg,
    #ff007f 150deg,
    transparent 180deg,
    transparent 360deg
  );
  z-index: 1;
  pointer-events: none;
  animation: rightLightMove 6s linear infinite;
}

@keyframes leftLightMove {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rightLightMove {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.cyber-sparkle {
  position: absolute;
  background: #ffffff;
  width: 12px;
  height: 12px;
  clip-path: polygon(
    50% 0%,
    62% 38%,
    100% 50%,
    62% 62%,
    50% 100%,
    38% 62%,
    0% 50%,
    38% 38%
  );
  filter: drop-shadow(0 0 4px #fff);
  opacity: 0.8;
  animation: cyberPulse 2s infinite ease-in-out;
  z-index: 5;
}
.sparkle-1 {
  top: 30px;
  right: 40px;
  animation-delay: 0s;
}
.sparkle-2 {
  bottom: 120px;
  left: 35px;
  width: 16px;
  height: 16px;
  animation-delay: 0.6s;
}
.sparkle-3 {
  top: 60%;
  right: 45%;
  animation-delay: 1.2s;
}
.sparkle-4 {
  top: 90%;
  right: 65%;
  animation-delay: 1.5s;
}
.sparkle-5 {
  top: 15%;
  left: 60%;
  animation-delay: 2s;
}
.sparkle-6 {
  top: 50%;
  right: 3%;
  animation-delay: 0.3s;
}

@keyframes cyberPulse {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 0 8px #fff);
  }
}

.cyber-header {
  margin-bottom: 40px;
  position: relative;
}

.cyber-title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 15px;
}

.cyber-hero-name {
  color: #ffffff;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.cyber-tag-wrapper {
  display: flex;
  gap: 10px;
}

.cyber-tag {
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0 70%);
}
.tag-cyan {
  background: #00f0ff;
  color: #020205;
}
.tag-magenta {
  background: #ff007f;
  color: #020205;
}

.cyber-deco-bar {
  height: 4px;
  background: linear-gradient(90deg, #00f0ff 0%, #ff007f 70%, #0b1436 100%);
  position: relative;
}
.cyber-deco-bar::after {
  content: "";
  position: absolute;
  right: 15%;
  top: 0;
  width: 30px;
  height: 4px;
  background: #ffffff;
}

.cyber-body {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 45px;
  align-items: center;
}

.cyber-info-lane {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cyber-card {
  background: #080a1a;
  border: 1px solid #141f4d;
  padding: 22px 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
}

.cyber-card img {
  height: 300px;
  max-width: 100%;
  object-fit: contain;
}

.cyber-card-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.cyber-card p {
  color: #a2add0;
  font-size: 13px;
  line-height: 1.5;
}

.card-cyan .cyber-card-indicator {
  background: #00f0ff;
  box-shadow: 0 0 10px #00f0ff;
}

.card-magenta .cyber-card-indicator {
  background: #ff007f;
  box-shadow: 0 0 10px #ff007f;
}

.cyber-sub-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.3s ease;
}
.card-cyan:hover .cyber-sub-bar {
  background: #00f0ff;
  width: 80px;
}
.card-magenta:hover .cyber-sub-bar {
  background: #ff007f;
  width: 80px;
}

.cyber-card:hover {
  background: #0d122c;
  border-color: #1e2f75;
  transform: translateX(5px);
}

.cyber-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.cyber-dot-active {
  width: 6px;
  height: 6px;
  background: #00f0ff;
  box-shadow: 0 0 8px #00f0ff;
}
.cyber-dot-active.pink-glow {
  background: #ff007f;
  box-shadow: 0 0 8px #ff007f;
}

.cyber-card-header h2 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.cyber-card-desc {
  color: #a2add0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

.cyber-badge-row {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.cyber-icon-frame {
  width: 56px;
  height: 56px;
  background: #060814;
  border: 1px solid #142254;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
}

.cyber-icon-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
  pointer-events: none;
}
.frame-cyan::before {
  border-color: rgba(0, 240, 255, 0.2);
}
.frame-magenta::before {
  border-color: rgba(255, 0, 127, 0.2);
}

.cyber-icon-frame:hover {
  background: #0d122c;
}
.frame-cyan:hover {
  border-color: #00f0ff;
}
.frame-magenta:hover {
  border-color: #ff007f;
}

.cyber-icon-frame img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.cyber-display-lane {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.cyber-viewshield {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.cyber-viewshield:hover .cyber-render-img {
  transform: scale(1.03) translateY(-5px);
}

.cyber-moon-aura {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  background: conic-gradient(
    from 135deg,
    #ff007f,
    #9333ea,
    #00f0ff,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.cyber-render-img {
  height: 500px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  z-index: 3;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 0, 127, 0.4))
    drop-shadow(0 0 30px rgba(0, 240, 255, 0.2));
  transition: transform 0.3s ease;
}

.cyber-tech-pedestal {
  position: absolute;
  bottom: 10px;
  width: 340px;
  max-width: 90%;
  height: 50px;
  z-index: 2;
  transform: rotateX(70deg);
}

.pedestal-core {
  position: absolute;
  inset: 2px;
  background: #04040c;
  border: 2px solid #ff007f;
  box-shadow: 0 0 20px #ff007f;
  border-radius: 50%;
}

.pedestal-ring {
  position: absolute;
  inset: -6px;
  border: 1px dashed #00f0ff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
  animation: rotatePedestal 12s linear infinite;
}

@keyframes rotatePedestal {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.unique-skin-star {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  z-index: 10;
  clip-path: polygon(
    50% 0%,
    63% 37%,
    100% 50%,
    63% 63%,
    50% 100%,
    37% 63%,
    0% 50%,
    37% 37%
  );
  background:
    radial-gradient(circle, #ffffff 10%, transparent 50%),
    linear-gradient(135deg, #00f0ff 0%, #ff007f 100%);
  animation: skinStarPulse 3s infinite ease-in-out;
}

@keyframes skinStarPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px #00f0ff) drop-shadow(0 0 10px #ff007f);
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px #00f0ff) drop-shadow(0 0 16px #ff007f);
  }
}

.skill-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}

.skill-title {
  font-size: 16px;
  font-weight: 900;
  color: #00f2fe;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

.small-paragraph {
  font-size: 1rem;
  line-height: 1.5;
  color: #ccd0e0;
}

@media (max-width: 820px) {
  .bullet-echo-container {
    padding: 15px 10px;
    min-height: auto;
  }

  .cyber-panel {
    padding: 25px 15px;
  }

  .cyber-body {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .cyber-display-lane {
    width: 100%;
  }

  .cyber-info-lane {
    width: 100%;
  }

  .cyber-viewshield {
    height: 350px;
  }
  .cyber-render-img {
    height: 360px;
    max-height: 360px;
  }

  .cyber-hero-name {
    font-size: 26px;

    text-align: center;
    width: 100%;
  }

  .cyber-title-area {
    justify-content: center;
    text-align: center;
  }
  .cyber-card img {
    height: auto;
    max-height: 190px;
    width: 100%;
  }
  .cyber-badge-row {
    justify-content: center;
  }
  .cyber-card:hover {
    transform: none;
  }

  .unique-skin-container {
    padding: 0;
  }
}
