.dlc-page main {
  padding-bottom: 60px;
}

.dlc-header {
  margin-bottom: 12px;
}

.dlc-subtitle {
  color: var(--muted);
  max-width: 820px;
}

.dlc-section {
  padding: 40px 0 20px;
}

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

.dlc-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 0 18px rgba(0, 255, 200, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
}

.dlc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 22px rgba(0, 255, 200, 0.25);
}

.dlc-card img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  background: #0f1b33;
}

.dlc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.dlc-code {
  color: var(--mint);
  font-weight: 800;
}

.dlc-btn {
  width: 100%;
  background: linear-gradient(90deg, #00e5ff, #00c853);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  font-weight: 700;
  color: #031020;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 255, 200, 0.2);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.dlc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 255, 200, 0.28);
  filter: brightness(1.05);
}

.dlc-section h3 {
  margin: 0 0 6px;
}

@media (max-width: 1200px) {
  .dlc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 960px) {
  .dlc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .dlc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

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

  .dlc-card {
    min-height: 220px;
  }
}
