@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700;800&display=swap');

:root {
  --text: #40507a;
  --muted: #6b7aa8;
  --purple: #6d7be8;
  --blue: #6da7ff;
  --pink: #ff8fb0;
  --pink2: #ffc2d3;
  --cream: #fffaf5;
  --glass: rgba(255, 255, 255, .72);
  --line: rgba(255, 255, 255, .65);
  --shadow: 0 22px 60px rgba(83, 111, 214, .20);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Kanit', Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, .95) 0 6%, transparent 20%),
    linear-gradient(135deg, #dff3ff 0%, #fff4fb 45%, #eef0ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .85) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(255, 192, 214, .55) 0 2px, transparent 3px);
  background-size: 90px 90px, 130px 130px;
  opacity: .45;
}

.container {
  width: min(1240px, 94%);
  margin: auto;
  position: relative
}

.navbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  margin: 18px auto 0;
  width: min(1240px, 94%);
  border-radius: 999px;
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .86);
  box-shadow: 0 14px 36px rgba(83, 111, 214, .12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6272d9;
  text-decoration: none;
  font-weight: 800;
  font-size: 25px;
  letter-spacing: .3px;
}

.brand::before {
  content: "✦";
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: white;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff9eba, #8fb7ff);
  box-shadow: 0 10px 22px rgba(255, 143, 176, .28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap
}

.nav-links a {
  color: #52618d;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 600;
  transition: .22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: linear-gradient(135deg, #ff98b5, #85aefa);
  box-shadow: 0 10px 24px rgba(255, 143, 176, .25);
}

.page {
  padding: 26px 0 66px
}

.hero {
  position: relative;
  min-height: 720px;
  margin-top: 8px;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 70px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .78) 0%, rgba(255, 255, 255, .55) 34%, rgba(255, 255, 255, .20) 64%, rgba(255, 255, 255, .06) 100%),
    url('../img/hero-ro.png') center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}

.hero-content {
  max-width: 610px;
  position: relative;
  z-index: 2
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #6575da;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .90);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(83, 111, 214, .10);
}

.kicker::before {
  content: "🌸"
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .98;
  letter-spacing: 1px;
  color: #6675e4;
  text-shadow: 0 5px 0 rgba(255, 255, 255, .55), 0 18px 40px rgba(91, 102, 197, .25);
}

.hero .subtitle {
  margin: 14px 0 0;
  font-size: clamp(20px, 2.5vw, 34px);
  letter-spacing: 12px;
  color: #7180d8;
  font-weight: 500;
}

.hero .desc {
  margin: 24px 0 0;
  max-width: 560px;
  color: #52618d;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  background: rgba(255, 255, 255, .78);
  color: #6171d8;
  text-decoration: none;
  border-radius: 24px;
  padding: 14px 26px;
  cursor: pointer;
  font-weight: 800;
  font-family: inherit;
  box-shadow: 0 14px 30px rgba(83, 111, 214, .14);
  transition: .22s ease;
  border: 1px solid rgba(255, 255, 255, .86);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(83, 111, 214, .22)
}

.btn.primary {
  background: linear-gradient(135deg, #ff91b0, #ffb2c7);
  color: #fff
}

.btn.download {
  background: linear-gradient(135deg, #86b5ff, #6d8fff);
  color: #fff
}

.btn.big {
  font-size: 21px;
  padding: 17px 34px;
  border-radius: 26px
}

.btn.full {
  width: 100%;
  margin-top: 18px
}

.feature-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(960px, 88%);
  margin: -76px auto 34px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-radius: 25px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .86);
  box-shadow: 0 18px 50px rgba(83, 111, 214, .18);
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 25px 22px;
  border-right: 1px solid rgba(110, 123, 200, .12)
}

.feature-item:last-child {
  border-right: none
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 30px;
  background: linear-gradient(135deg, #fff, #eff4ff);
  box-shadow: inset 0 0 0 1px rgba(109, 123, 232, .08)
}

.feature-item h3 {
  margin: 0;
  color: #5261b8;
  font-size: 18px
}

.feature-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0
}

.card {
  background: var(--glass);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.card.narrow {
  max-width: 590px;
  margin: auto
}

.center {
  text-align: center
}

h1,
h2,
h3 {
  letter-spacing: -.3px
}

h1,
h2 {
  color: #6272d9
}

.muted {
  color: var(--muted)
}

.stat strong {
  font-size: 34px;
  display: block;
  color: #6272d9
}

.stat span {
  color: var(--muted)
}

.guild-box {
  background: rgba(255, 255, 255, .62);
  border-radius: 24px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, .78)
}

.guild-box h3 {
  color: #6272d9;
  margin-top: 0
}

.guild-box li {
  margin: 6px 0
}

.form {
  display: grid;
  gap: 10px
}

.form label {
  font-weight: 700;
  margin-top: 8px;
  color: #475985
}

.form input,
.form select,
.search input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(109, 123, 232, .16);
  background: rgba(255, 255, 255, .76);
  color: #40507a;
  outline: none;
  font-family: inherit
}

.form input:focus,
.form select:focus,
.search input:focus {
  border-color: #91a8ff;
  box-shadow: 0 0 0 4px rgba(109, 143, 255, .16)
}

.alert {
  padding: 14px 16px;
  border-radius: 18px;
  margin: 16px 0
}

.alert.success {
  background: #dcfce7;
  color: #166534
}

.alert.danger {
  background: #fee2e2;
  color: #991b1b
}

.search {
  display: flex;
  gap: 10px;
  margin: 18px 0
}

.table-wrap {
  overflow: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: 0 10px 30px rgba(83, 111, 214, .08)
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, .66)
}

th,
td {
  padding: 14px 15px;
  border-bottom: 1px solid rgba(109, 123, 232, .12);
  text-align: left;
  white-space: nowrap
}

th {
  background: rgba(205, 218, 255, .55);
  color: #5261b8;
  font-weight: 800
}

tr:hover td {
  background: rgba(255, 255, 255, .58)
}

code {
  background: rgba(255, 255, 255, .78);
  padding: 2px 7px;
  border-radius: 8px;
  color: #6272d9
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap
}

.note {
  margin-top: 24px;
  text-align: left;
  background: rgba(255, 255, 255, .58);
  padding: 19px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .78)
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, .72);
  padding: 22px 0;
  color: #6b7aa8;
  background: rgba(255, 255, 255, .45);
  backdrop-filter: blur(14px)
}

a {
  color: #6171d8
}

.badge-mvp {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9a8d4, #c4b5fd);
  color: #fff;
  font-size: 12px;
  font-weight: 800
}

@media(max-width:960px) {
  .hero {
    min-height: 560px;
    padding: 42px;
    background-position: center
  }

  .feature-panel {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 22px
  }

  .feature-item:nth-child(2) {
    border-right: none
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .hero .subtitle {
    letter-spacing: 6px
  }
}

@media(max-width:720px) {
  .navbar {
    top: 8px;
    border-radius: 28px
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column
  }

  .nav-links {
    width: 100%;
    gap: 5px
  }

  .nav-links a {
    padding: 9px 11px
  }

  .hero {
    padding: 30px;
    min-height: 520px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .42)), url('../img/hero-ro.png') center/cover no-repeat
  }

  .hero h1 {
    font-size: 45px
  }

  .hero .desc {
    font-size: 17px
  }

  .feature-panel {
    grid-template-columns: 1fr;
    width: 94%;
    margin-top: 18px
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(110, 123, 200, .12)
  }

  .feature-item:last-child {
    border-bottom: none
  }

  .search {
    flex-direction: column
  }

  .card {
    padding: 22px
  }

  .btn {
    width: 100%
  }

  .hero-actions {
    gap: 10px
  }
}


.guild-ranking {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.guild-rank-card {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.08);
}

.guild-rank-card.rank-one {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(253, 230, 138, 0.55));
  border: 1px solid rgba(251, 191, 36, 0.45);
}

.guild-rank-no {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f9a8d4, #93c5fd);
  color: white;
  font-weight: 800;
  font-size: 18px;
}

.guild-rank-info h3 {
  margin: 0 0 6px;
  color: #6366f1;
}

.guild-rank-info p {
  margin: 0;
  color: #64748b;
}

.guild-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.guild-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(147, 197, 253, 0.22);
  color: #475569;
  font-size: 13px;
}

.guild-score {
  text-align: right;
  color: #7c3aed;
  font-size: 22px;
  font-weight: 800;
}

.guild-score small {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .guild-rank-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guild-rank-no {
    margin: auto;
  }

  .guild-meta {
    justify-content: center;
  }

  .guild-score {
    text-align: center;
  }
}

.stats-wrapper {
  margin-top: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;

  margin-top: 25px;
}

.stat-card {
  position: relative;

  overflow: hidden;

  border-radius: 28px;

  padding: 30px 20px;

  text-align: center;

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.5);

  transition: 0.35s;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
  transform: translateY(-6px);
}

.pastel-blue {
  background: linear-gradient(135deg,
      rgba(191, 219, 254, 0.75),
      rgba(219, 234, 254, 0.65));
}

.pastel-green {
  background: linear-gradient(135deg,
      rgba(187, 247, 208, 0.75),
      rgba(220, 252, 231, 0.65));
}

.pastel-purple {
  background: linear-gradient(135deg,
      rgba(221, 214, 254, 0.75),
      rgba(243, 232, 255, 0.65));
}

.pastel-pink {
  background: linear-gradient(135deg,
      rgba(251, 207, 232, 0.75),
      rgba(252, 231, 243, 0.65));
}

.stat-icon {
  font-size: 46px;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;

  color: #4338ca;

  line-height: 1;
}

.stat-label {
  margin-top: 12px;

  font-size: 15px;

  color: #475569;

  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;

  margin-top: 18px;
}

.stat-card {
  border-radius: 20px;

  padding: 18px 14px;

  text-align: center;

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.5);

  transition: 0.25s;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;

  color: #4338ca;

  line-height: 1;
}

.stat-label {
  margin-top: 8px;

  font-size: 13px;

  color: #64748b;
}

.contact-admin-box {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
}

.qr-box {
  background: rgba(255, 255, 255, 0.75);
  padding: 12px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.qr-box img {
  width: 125px;
  height: 125px;
  object-fit: contain;
}

.contact-admin-info h3 {
  margin-bottom: 6px;
  color: #6366f1;
}

.contact-admin-info p {
  color: #64748b;
  margin-bottom: 14px;
}

@media (max-width: 600px) {
  .contact-admin-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qr-box {
    width: fit-content;
    margin: auto;
  }
}

.welcome-popup {
  position: fixed;
  inset: 0;
  z-index: 20000;

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

  padding: 20px;

  background:
    linear-gradient(rgba(15, 23, 42, 0.45),
      rgba(15, 23, 42, 0.45)),
    url('assets/img/hero-ro.png');

  background-size: cover;
  background-position: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.35s ease;
}

.welcome-popup.show {
  opacity: 1;
  visibility: visible;
}

.welcome-popup-box {
  position: relative;

  width: min(92vw, 620px);
  max-height: 90vh;

  overflow-y: auto;

  padding: 34px 32px;

  border-radius: 32px;

  text-align: center;

  background: rgba(255, 255, 255, 0.88);

  backdrop-filter: blur(16px);

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);

  border: 1px solid rgba(255, 255, 255, 0.65);
}

.welcome-close {
  position: absolute;
  top: 14px;
  right: 18px;

  border: none;
  background: none;

  font-size: 30px;
  cursor: pointer;

  color: #64748b;
}

.welcome-badge {
  display: inline-block;

  margin-bottom: 12px;

  padding: 7px 14px;

  border-radius: 999px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;

  color: #fff;

  background: linear-gradient(135deg, #93c5fd, #c084fc);
}

.welcome-popup-box h2 {
  margin: 0;

  font-size: 32px;
  color: #4f46e5;
}

.welcome-subtitle {
  margin-top: 8px;
  margin-bottom: 20px;

  color: #64748b;
  font-size: 16px;
}

.welcome-list {
  list-style: none;

  padding: 0;
  margin: 0 0 24px;

  display: grid;
  gap: 10px;

  text-align: left;
}

.welcome-list li {
  padding: 12px 14px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.65);

  color: #334155;

  font-weight: 500;

  box-shadow: 0 8px 18px rgba(99, 102, 241, 0.05);
}

@media (max-width: 600px) {
  .welcome-popup-box {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .welcome-popup-box h2 {
    font-size: 24px;
  }

  .welcome-list li {
    font-size: 14px;
  }
}

.welcome-popup-box::-webkit-scrollbar {
  width: 8px;
}

.welcome-popup-box::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.45);
  border-radius: 999px;
}

.monster-link {
  color: #4f46e5;
  text-decoration: none;
}

.monster-link:hover {
  text-decoration: underline;
}

.monster-detail-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

.monster-level-box {
  padding: 16px 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, #93c5fd, #c4b5fd);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.detail-box {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.detail-box h3 {
  margin-bottom: 16px;
  color: #6366f1;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 14px;
}

.info-grid span {
  color: #64748b;
}

.info-grid strong {
  color: #334155;
  text-align: right;
}

.stat-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-mini-grid div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(147, 197, 253, 0.22);
  text-align: center;
  color: #64748b;
}

.stat-mini-grid strong {
  display: block;
  margin-top: 6px;
  color: #4f46e5;
  font-size: 20px;
}

.map-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(219, 234, 254, 0.8);
  color: #334155;
  font-weight: 600;
}

.map-chip span {
  margin-left: 6px;
  color: #7c3aed;
}

.drop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.drop-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.drop-card strong {
  display: block;
  color: #334155;
}

.drop-card span {
  display: inline-block;
  margin-top: 8px;
  color: #7c3aed;
  font-weight: 700;
}

.mvp-drop {
  background: linear-gradient(135deg, rgba(253, 230, 138, 0.65), rgba(251, 207, 232, 0.65));
}

@media (max-width: 600px) {
  .monster-detail-header {
    flex-direction: column;
    text-align: center;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-grid strong {
    text-align: left;
  }
}

.item-link {
  color: #4f46e5;
  text-decoration: none;
}

.item-link:hover {
  text-decoration: underline;
}

.item-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  margin-top: 20px;
}

.item-type-box {
  padding: 14px 20px;

  border-radius: 18px;

  background: linear-gradient(135deg,
      #f9a8d4,
      #c4b5fd);

  color: white;

  font-weight: 700;
}

.drop-meta {
  margin-top: 8px;

  color: #64748b;
}

.drop-rate {
  display: inline-block;

  margin-top: 10px;

  padding: 6px 10px;

  border-radius: 999px;

  background: rgba(196, 181, 253, 0.22);

  color: #7c3aed;

  font-weight: 700;
}

.monster-img-cell {
  width: 70px;
  text-align: center;
  vertical-align: middle;
}

.monster-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  image-rendering: pixelated;
}

.monster-detail-image {
  text-align: center;
  margin-bottom: 15px;
}

.monster-gif {
  width: 120px;
  height: 120px;
  object-fit: contain;
  image-rendering: pixelated;
}

.item-detail-image {
  margin-bottom: 15px;
}

.item-detail-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  image-rendering: pixelated;
}

.monster-drop-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
  margin: 0 auto 10px;
}

.drop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.drop-card {
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 12px;

  padding: 16px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: flex-start;

  text-align: center;

  min-height: 280px;
}

.monster-drop-img {
  width: 120px;
  height: 120px;

  object-fit: contain;
  image-rendering: pixelated;

  margin-bottom: 12px;

  flex-shrink: 0;
}

.drop-card strong {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;

  margin-bottom: 10px;

  line-height: 1.4;
}

.monster-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.monster-link:hover {
  color: #ffd54f;
}

.drop-meta {
  margin-top: auto;

  font-size: 14px;
  color: #aaa;

  padding-top: 10px;
}

.drop-rate {
  display: inline-block;

  margin-top: 8px;

  background: #2d2d2d;
  color: #ffd54f;

  padding: 6px 12px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;
}

.drop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}

.drop-card {
  min-height: 270px;
  padding: 18px 16px;
  border: 1px solid #e6e0ff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(80, 60, 160, 0.08);

  display: grid;
  grid-template-rows: 110px 52px 28px 38px;
  align-items: center;
  text-align: center;
}

.drop-card>a:first-child {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.monster-drop-img {
  max-width: 110px;
  max-height: 110px;
  object-fit: contain;
  image-rendering: pixelated;
}

.drop-card strong {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.monster-link {
  color: #4f46e5;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.monster-link:hover {
  color: #7c3aed;
}

.drop-meta {
  height: 28px;
  color: #64748b;
  font-size: 16px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
}

.drop-rate {
  justify-self: center;
  min-width: 58px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f0eaff;
  color: #7c3aed;
  font-size: 16px;
  font-weight: 900;
}

.drop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(80, 60, 160, 0.15);
}

.drop-card {
  transition: 0.2s ease;
}