.lc-header {
  display: flex;
  flex-direction: row;
  /* <--- This puts the image on the left and text on the right! */
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 500px;
  background-color: rgba(20, 20, 30, 0.8);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  margin-bottom: 25px;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  color: rgb(216, 221, 231);
  flex: 1;

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lc-header.show {
  opacity: 1;
  transform: translateY(0);
}

.lc-header.lc-kaito {
  background-image: url(../IMG/Kaito/lc-test.png);
  background-position: right;
  background-size: auto 100%;
}

.lc-title-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-direction: column;
  /* Puts avatar above the name on tiny screens */
  text-align: center;
  background-color: rgba(20, 20, 30, 0.5);
  padding: 15px;
  border: 1px solid rgb(251, 251, 255, 0.08);
  border-radius: 5px;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.art-lc {
  width: 80%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding: 30px;
  box-sizing: border-box;
}

.art-lc img {
  height: 60%;
  /* Makes it slightly larger to give that dynamic 'breaking out of frame' game feel */
  object-fit: contain;
}

.lc-info {
  font-weight: 600;
}

.lc-details {
  font-weight: 400;
}

.lc-header-description {
    background-color: rgba(20, 20, 30, 0.5);
    padding: 15px;
    padding-top: 1px;
    padding-left: 20px;
    margin-top: 20px;
    border: 1px solid rgb(251, 251, 255, 0.08);
    border-radius: 5px;
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.lc-effects-header {
  padding-left: 20px;
}


@media (max-width: 900px) {

  .lc-header {
    flex-direction: column;
    /* Stacks the character art on top and text on bottom */
    height: auto;
    /* Lets the height stretch naturally instead of locking at 500px */
    padding: 0px;
    background-position: top center;
    /* Moves background imagery up */
    justify-content: flex-start;
  }

  .art-lc {
    width: 100%;
    height: 300px;
    padding: 10px;
    box-sizing: none;
  }

  .art-lc img {
    position: relative;
    max-height: 300px;
    width: 50%;
    object-fit: contain;
  }

  .lc-header.lc-kaito {
  background-image: url(../IMG/Kaito/test-ver.png);
  background-position: center;
  background-size: auto 100%;
}
}