.profile-accordion {
  background: #141414;
  border-radius: 6px;
  margin: 20px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}

.profile-header {
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  transition: background 0.15s;
}

.profile-header:hover {
  background: #1f1f1f;
}

.profile-content {
  display: none;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.profile-content.open {
  display: block;
}

.profile-section {
  margin-bottom: 16px;
}

.profile-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #666;
  margin-bottom: 10px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 8px;
}

.profile-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  background: #1a1a1a;
  padding: 10px 12px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, border-color 0.15s;
}

.profile-option:hover {
  background: #222;
  border-color: rgba(255,255,255,0.12);
}

.profile-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.profile-btn {
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.15s;
}

.profile-btn.primary {
  background: #e8e8e8;
  color: #0a0a0a;
}

.profile-btn.primary:hover {
  background: #fff;
}

.profile-btn.danger {
  background: transparent;
  border: 1px solid rgba(229,9,20,0.4);
  color: #e50914;
}

.profile-btn.danger:hover {
  background: rgba(229,9,20,0.08);
  border-color: #e50914;
}