/* EP18 Tooto List Styles */
.ep18-list-wrap {
  position: absolute; right: 20px; bottom: 20px; z-index: 100;
  display: flex; flex-direction: column; max-width: 250px; width: calc(100% - 40px);
  pointer-events: auto; animation: ep18FadeIn 0.3s ease;
}
@keyframes ep18FadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.ep18-panel {
  background: rgba(15, 23, 42, 0.92); backdrop-filter: blur(16px);
  border: 1px solid rgba(20, 184, 166, 0.4); border-radius: 18px; padding: 16px;
  display: flex; flex-direction: column; gap: 12px; box-shadow: 0 16px 36px rgba(0,0,0,0.5);
}
.ep18-title-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
@media (min-width: 769px) {
  .ep18-title-row { flex-direction: column; text-align: center; }
  .ep18-gems-picker { flex-direction: column; }
}
.ep18-badge { background: linear-gradient(135deg, #14b8a6, #0d9488); color: white; font-size: 13px; font-weight: 800; padding: 4px 10px; border-radius: 20px; }
.ep18-hint { font-size: 11px; color: #99f6e4; font-weight: 600; }
.ep18-backpack-row { display: flex; flex-direction: column; gap: 10px; background: rgba(30,41,59,0.7); padding: 10px 14px; border-radius: 12px; }
.ep18-backpack-visual { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 54px; }
.ep18-bag-icon { font-size: 36px; line-height: 1; }
.ep18-bag-pockets { display: flex; gap: 4px; }
.ep18-bag-pocket {
  display: grid; place-items: center; width: 37px; height: 37px; border-radius: 9px;
  border: 2px dashed rgba(153, 246, 228, .6); color: #cbd5e1;
  background: rgba(15, 23, 42, .7); font-weight: 800; font-size: 17px;
}
.ep18-bag-pocket.filled { border-style: solid; border-color: #2dd4bf; background: rgba(20, 184, 166, .23); }
.ep18-gems-picker { display: flex; gap: 6px; }
.ep18-gem-btn {
  flex: 1; padding: 8px 6px; font-size: 12px; font-weight: 700; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(15,23,42,0.8); color: #f8fafc; cursor: pointer;
  min-height: 44px; transition: all 0.2s ease;
}
.ep18-gem-btn:hover:not(:disabled) { transform: translateY(-1px); border-color: rgba(45, 212, 191, 0.5); }
.ep18-gem-btn.packed { opacity: 0.4; border-color: transparent; text-decoration: line-through; cursor: not-allowed; }
.ep18-status-tag { font-size: 12px; color: #99f6e4; text-align: center; display: block; font-weight: 600; }
.ep18-complete-wrap { width: 100%; max-width: 900px; margin: 14px auto 0; animation: ep18FadeIn 0.4s ease; }
.ep18-complete-card {
  background: rgba(15, 23, 42, 0.92); border: 1px solid rgba(20, 184, 166, 0.4);
  border-radius: 20px; padding: 20px 24px; text-align: center;
}
.ep18-complete-icon { display: inline-block; background: rgba(20, 184, 166, 0.2); color: #2dd4bf; font-weight: 800; font-size: 13px; padding: 4px 12px; border-radius: 20px; margin-bottom: 8px; }
.ep18-comp-btn.primary { background: linear-gradient(135deg, #14b8a6, #0d9488); color: white; border: none; padding: 10px 18px; border-radius: 12px; font-weight: 700; cursor: pointer; }

@media (max-width: 768px) {
  .ep18-list-wrap { position: relative; right: auto; bottom: auto; width: 100%; max-width: 100%; margin: 12px auto 0; }
}
