/* ===== Dev Features Showcase Card ===== */

.dev-features-section {
  margin-bottom: 40px;
}

.dev-features-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(124, 108, 255, 0.2) !important;
  background: rgba(124, 108, 255, 0.04) !important;
}

.dev-features-card::before {
  display: none;
}

.dev-features-card > * {
  position: relative;
  z-index: 1;
}

.dev-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 6px;
  background: var(--accent-2);
  color: #fff;
  margin-bottom: 14px;
}

.dev-version-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #f0f4f8;
}

.dev-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.dev-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.dev-feature-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.dev-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.dev-feature-icon.font {
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.dev-feature-icon.dos {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.dev-feature-icon.bmp {
  background: rgba(167, 139, 250, 0.12);
  color: #a78bfa;
  border: 1px solid rgba(167, 139, 250, 0.2);
}

.dev-feature-icon.time {
  background: rgba(110, 231, 183, 0.12);
  color: #6ee7b7;
  border: 1px solid rgba(110, 231, 183, 0.2);
}

.dev-feature-icon.fs {
  background: rgba(255, 107, 107, 0.12);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.2);
}

.dev-feature-icon.shell {
  background: rgba(45, 212, 191, 0.12);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.2);
}

.dev-feature-text h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #f0f4f8;
}

.dev-feature-text p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
