/* =====================================
   ウイコレ TIER表
   ===================================== */

.uiko-tier {
  width: 100%;
  margin: 30px 0;
  border: 2px solid #222;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.uiko-tier-row {
  display: flex;
  min-height: 190px;
  border-bottom: 2px solid #222;
}

.uiko-tier-row:last-child {
  border-bottom: none;
}


/* =====================================
   左側 Tier
   ===================================== */

.uiko-tier-name {
  width: 150px;
  min-width: 150px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-weight: 900;
  text-align: center;

  position: relative;
  overflow: hidden;
}

.uiko-tier-name strong {
  font-size: 55px;
  line-height: 1;
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

.uiko-tier-name span {
  margin-top: 12px;
  font-size: 14px;
  font-weight: bold;
}


/* =====================================
   SSS
   ===================================== */

.uiko-sss {
  background:
    linear-gradient(
      135deg,
      #5b4300,
      #d4af37,
      #6e5000
    );
  border-right: 2px solid #d4af37;
}

.uiko-sss strong {
  font-size: 58px;
  color: #fff4b0;
}


/* =====================================
   SS
   ===================================== */

.uiko-ss {
  background:
    linear-gradient(
      135deg,
      #32104f,
      #8e44ad,
      #32104f
    );
  border-right: 2px solid #8e44ad;
}


/* =====================================
   S
   ===================================== */

.uiko-s {
  background:
    linear-gradient(
      135deg,
      #59140f,
      #c0392b,
      #59140f
    );
  border-right: 2px solid #c0392b;
}


/* =====================================
   A
   ===================================== */

.uiko-a {
  background:
    linear-gradient(
      135deg,
      #102d63,
      #2874c6,
      #102d63
    );
  border-right: 2px solid #2874c6;
}


/* =====================================
   B
   ===================================== */

.uiko-b {
  background:
    linear-gradient(
      135deg,
      #163d16,
      #3c873c,
      #163d16
    );
  border-right: 2px solid #3c873c;
}


/* =====================================
   選手エリア
   ===================================== */

.uiko-players {
  flex: 1;

  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;

  gap: 14px;

  padding: 18px;

  background:
    linear-gradient(
      135deg,
      #171717,
      #242424
    );
}


/* =====================================
   選手カード
   ===================================== */

.uiko-player {
  width: 105px;

  text-align: center;

  color: #fff !important;

  text-decoration: none !important;

  font-size: 12px;
  font-weight: bold;

  transition: 0.2s;
}


/* カード画像 */

.uiko-player img {
  width: 100px;
  height: 100px;

  object-fit: cover;

  display: block;

  margin: 0 auto 5px;

  border-radius: 8px;

  border: 2px solid #777;

  box-shadow:
    0 4px 10px rgba(0,0,0,0.6);

  transition: 0.2s;
}


/* =====================================
   SSSカードだけ豪華に
   ===================================== */

.uiko-tier-row:first-child .uiko-player img {
  border: 3px solid #d4af37;

  box-shadow:
    0 0 8px rgba(212,175,55,0.8),
    0 5px 15px rgba(0,0,0,0.6);
}


/* =====================================
   ホバー
   ===================================== */

.uiko-player:hover {
  transform: translateY(-5px);
}

.uiko-player:hover img {
  transform: scale(1.04);
}


/* =====================================
   スマホ
   ===================================== */

@media screen and (max-width: 600px) {

  .uiko-tier-row {
    min-height: 120px;
  }

  .uiko-tier-name {
    width: 65px;
    min-width: 65px;
  }

  .uiko-tier-name strong {
    font-size: 28px;
  }

  .uiko-tier-name span {
    font-size: 9px;
    margin-top: 6px;
  }

  .uiko-players {
    gap: 7px;
    padding: 10px;
  }

  .uiko-player {
    width: 62px;
    font-size: 9px;
  }

  .uiko-player img {
    width: 58px;
    height: 58px;
    border-radius: 5px;
  }

}