.dl-no-scroll {
  overflow: hidden !important;
}

.dl-ero-open-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999999;
  padding: 10px 14px;
  border-radius: 8px;
  background: linear-gradient(180deg,#2b2b2b,#1b1b1b);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  user-select: none;
}

.dl-ero-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  z-index: 999998;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.dl-ero-content {
  margin: 60px auto;
  width: 90%;
  max-width: 1400px;
  background: #0f0f10;
  border-radius: 12px;
  padding: 20px;
  color: #e6e6e6;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.dl-ero-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dl-ero-header h2 {
  margin: 0;
  font-size: 20px;
}

.dl-ero-close,
.dl-load-more {
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  background: #1f1f1f;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  user-select: none;
}

.dl-ero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
  gap: 12px;
}

.dl-ero-card {
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  overflow: hidden;
  min-height: 140px;
}

.dl-ero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
