/* Dashboard Header */
.welcome-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.user-welcome h1 {
  font-family: 'Fira Code', monospace;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 10px;
}

.username {
  color: var(--neon-blue) !important;
  position: relative;
}

.slogan {
  font-family: 'Fira Code', monospace;
  font-size: 16px;
  color: #a0a0a0;
  margin: 0;
}

.user-status {
  text-align: right;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--btn-padding);
  border-radius: var(--btn-border-radius);
  font-family: var(--x0ne-font-display);
  font-size: var(--btn-font-size);
  letter-spacing: 1px;
  background: transparent;
}

.status-badge.active {
  border: 1px solid rgba(0, 255, 157, var(--btn-border-opacity));
  color: var(--accent-color);
}

.status-badge.pending {
  border: 1px solid rgba(255, 56, 96, var(--btn-border-opacity));
  color: var(--error-color);
}

.status-icon {
  margin-right: 8px;
  font-weight: bold;
}

/* Setup Section */
.setup-section {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--btn-border-radius);
  margin-bottom: 40px;
  overflow: hidden;
}

.setup-section h2, .skill-tree-section h2, .recent-unlocked-section h2 {
  font-family: 'Fira Code', monospace;
  padding: 10px 20px;
  margin: 0;
  font-size: 20px;
  border-bottom: 1px solid var(--border, rgba(74, 144, 217, 0.15));
  font-weight: 400;
  color: var(--primary-color);
}

.setup-content {
  padding: 20px;
}

.setup-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  background: var(--x0ne-bg-50);
  border: 1px solid rgba(128, 191, 255, 0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.step-number {
  background: var(--bg-color);
  color: var(--primary-color);
  font-family: var(--x0ne-font-display);
  font-size: 24px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  border-right: 1px solid rgba(128, 191, 255, 0.2);
}

.step-content {
  padding: 15px 20px;
  flex-grow: 1;
}

.step-content h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
}

.step-content p {
  margin: 0 0 15px;
  color: #a0a0a0;
  font-size: 14px;
}

.step-link {
  display: inline-block;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.step-link:hover {
  opacity: 0.8;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.step-link:hover .arrow {
  transform: translateX(5px);
}

.skill-tree-section {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--btn-border-radius);
  margin-bottom: 40px;
  overflow: hidden;
}

.recent-unlocked-section {
  background: transparent;
  border: none;
  border-radius: 0;
  margin-bottom: 40px;
  overflow: hidden;
}

.unlocked-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}
