.armory-page {
  max-width: 1200px;
  margin: 0 auto;
}

.armory-intro {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.18));
}

.armory-intro h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.armory-intro p {
  margin: 0;
  color: #b8b8b8;
  line-height: 1.55;
}

.armory-message {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.armory-message.ok {
  color: #cbffd7;
  background: rgba(40, 120, 60, 0.18);
  border: 1px solid rgba(90, 180, 110, 0.32);
}

.armory-message.error {
  color: #ffd0d0;
  background: rgba(130, 45, 45, 0.18);
  border: 1px solid rgba(210, 90, 90, 0.32);
}

.armory-topbar {
  margin-bottom: 16px;
}

.armory-gold-box {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.18));
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 15px;
}

.armory-gold-box strong {
  color: #f3d28c;
}

.armory-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.armory-column {
  min-width: 0;
}

.armory-column-header {
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.armory-column-header h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.armory-column-header p {
  margin: 0;
  font-size: 13px;
  color: #aaa;
  line-height: 1.45;
}

.armory-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.armory-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.22));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 8px 18px rgba(0,0,0,0.16);
}

.armory-card-main {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.armory-item-icon {
  width: 92px;
  height: 92px;
  min-width: 92px;
}

.armory-card-info {
  min-width: 0;
  flex: 1;
}

.armory-card-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.25;
}

.armory-card-meta {
  color: #9e9e9e;
  font-size: 12px;
  margin-bottom: 8px;
}

.armory-card-stats {
  color: #cfcfcf;
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 8px;
}

.armory-card-price {
  font-size: 13px;
  font-weight: 700;
}

.armory-card-price.buy {
  color: #f3d28c;
}

.armory-card-price.sell {
  color: #b5e9b7;
}

.armory-card-action {
  margin: 0;
}

.armory-btn {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.armory-btn:hover {
  filter: brightness(1.05);
}

.armory-btn:active {
  transform: translateY(1px);
}

.armory-btn.buy {
  background: linear-gradient(180deg, #d6ab55 0%, #a97a26 100%);
  color: #1a1206;
  box-shadow:
    0 8px 18px rgba(120, 84, 22, 0.24),
    inset 0 1px 0 rgba(255, 232, 181, 0.18);
}

.armory-btn.sell {
  background: linear-gradient(180deg, #5b965a 0%, #3f6f41 100%);
  color: #f4fff2;
  box-shadow:
    0 8px 18px rgba(48, 92, 50, 0.24),
    inset 0 1px 0 rgba(210, 255, 210, 0.12);
}

.armory-empty {
  padding: 14px;
  border-radius: 14px;
  color: #b8b8b8;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.10);
}

@media (max-width: 900px) {
  .armory-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .armory-card-main {
    flex-direction: column;
  }

  .armory-item-icon {
    width: 100%;
    height: 140px;
  }
}
